/* Reset & Typography */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Rajdhani', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #030712;
  touch-action: none;
}

.font-teko {
  font-family: 'Teko', sans-serif;
}

/* Touch Control buttons */
.touch-ctrl-btn {
  touch-action: manipulation;
  cursor: pointer;
}

.touch-ctrl-btn:active {
  transform: scale(0.94);
}

/* Ball indicator rotation */
.ball-pointer {
  transform-origin: center center;
}

/* Pulsing neon stadium border accents */
@keyframes neonPulse {
  0%, 100% {
    opacity: 0.8;
    filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.6));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 24px rgba(6, 182, 212, 0.95));
  }
}

.neon-glow-blue {
  animation: neonPulse 2s infinite ease-in-out;
}