/* Reset & Base custom styling */
* {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

body {
  margin: 0;
  background-color: #03050a;
  overflow: hidden;
  touch-action: none;
}

#canvas-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Custom scrollbars */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Range input glowing track */
input[type="range"] {
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.8), 0 0 4px #00e5ff;
  cursor: pointer;
  border: 2px solid #00e5ff;
}

input[type="range"].accent-amber-400::-webkit-slider-thumb {
  border-color: #f59e0b;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.8), 0 0 4px #fbbf24;
}

/* Button pulse animations */
@keyframes solarGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.9), inset 0 0 25px rgba(255, 255, 255, 0.7);
  }
}

.solar-active-glow {
  animation: solarGlow 2s infinite ease-in-out;
}

/* Satellite targeting reticle ring */
.reticle-ring {
  position: absolute;
  border: 2px dashed #00E5FF;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: rotateReticle 12s linear infinite;
}

@keyframes rotateReticle {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}