/* Desert Shas Theme */
:root {
  --sand-gold: #dda15e;
  --sand-dark: #bc6c25;
  --desert-dusk: #264653;
  --toyota-green: #39ff14;
}

body {
  font-family: 'Cairo', system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  user-select: none;
  -webkit-user-select: none;
  background-color: #12100e;
}

.font-changa {
  font-family: 'Changa', 'Cairo', sans-serif;
}

/* Green LCD HUD Numbers like classic Land Cruiser speedometer */
.hud-digit {
  font-family: 'Share Tech Mono', monospace;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

/* Equalizer bar animation */
@keyframes eq-dance {
  0%, 100% { height: 3px; }
  50% { height: 12px; }
}

/* Hamid Al-Dhabaan Poet Card & Live Speech Bubble */
.hamid-glow {
  box-shadow: 0 0 15px rgba(221, 161, 94, 0.45), inset 0 0 10px rgba(255, 183, 3, 0.2);
}

.poet-bubble {
  position: relative;
  background: rgba(27, 25, 23, 0.95);
  border: 1px solid rgba(221, 161, 94, 0.5);
  border-radius: 12px;
}
.poet-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: rgba(27, 25, 23, 0.95);
  border-right: 1px solid rgba(221, 161, 94, 0.5);
  border-bottom: 1px solid rgba(221, 161, 94, 0.5);
  transform: rotate(45deg);
}

.music-note {
  animation: bounce-slight 2s infinite ease-in-out;
}

@keyframes bounce-slight {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Controls style */
.control-btn {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* Touch controls feedback */
.touch-btn:active {
  filter: brightness(1.2);
}

/* Desert Dust Haze Vignette on Stage */
#stage::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(188, 108, 37, 0.25), inset 0 0 30px rgba(0, 0, 0, 0.4);
}