:root {
  --bg-primary: #0a0d14;
  --bg-surface: #121722;
  --bg-glass: rgba(18, 23, 34, 0.85);
  --bg-glass-card: rgba(24, 31, 46, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 240, 255, 0.3);
  
  --neon-cyan: #00f0ff;
  --neon-pink: #ff007f;
  --neon-green: #00ff88;
  --neon-amber: #ffaa00;
  --neon-purple: #9d00ff;

  --text-primary: #ffffff;
  --text-secondary: #8e9bb0;
  --text-muted: #566378;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-neon-cyan: 0 0 15px rgba(0, 240, 255, 0.35);
  --shadow-neon-pink: 0 0 15px rgba(255, 0, 127, 0.35);
  --shadow-glass: 0 10px 30px rgba(0, 0, 0, 0.5);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow: hidden;
  overflow-x: hidden;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  max-width: 100%;
  user-select: none;
}

/* App Container */
#app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Top Navigation Bar */
.top-nav {
  height: 64px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-neon-cyan);
}

.logo-text {
  background: linear-gradient(90deg, #ffffff, var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: rgba(0, 240, 255, 0.15);
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Festival Selector */
.festival-picker-wrap {
  position: relative;
}

.festival-select {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-glow);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.festival-select:hover, .festival-select:focus {
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-neon-cyan);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-btn {
  background: var(--bg-glass-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-btn.active {
  background: rgba(0, 240, 255, 0.15);
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

.nav-btn.btn-flasher {
  border-color: rgba(255, 0, 127, 0.3);
  color: #ff99cc;
}

.nav-btn.btn-flasher:hover, .nav-btn.btn-flasher.active {
  background: rgba(255, 0, 127, 0.15);
  color: var(--neon-pink);
  border-color: var(--neon-pink);
  box-shadow: var(--shadow-neon-pink);
}

.squad-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  padding: 6px 14px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: var(--radius-full);
  color: var(--neon-green);
  cursor: pointer;
}

.squad-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* Map Container */
#map-viewport {
  flex: 1;
  width: 100%;
  height: calc(100vh - 64px);
  position: relative;
  background: #080a0f;
  z-index: 1;
}

/* Google Maps Overrides & Dark InfoWindow Styling */
.gm-style .gm-style-iw-c {
  background-color: #0d1117 !important;
  border-radius: 12px !important;
  border: 1px solid var(--neon-cyan) !important;
  box-shadow: 0 8px 32px rgba(0, 240, 255, 0.25) !important;
  padding: 0 !important;
}

.gm-style .gm-style-iw-d {
  overflow: auto !important;
  max-width: 260px !important;
  padding: 0 !important;
}

.gm-style .gm-style-iw-t::after {
  background: #0d1117 !important;
}

.gm-style .gm-style-iw-tc::after {
  background: #0d1117 !important;
}

.gm-ui-hover-effect {
  filter: invert(1);
  top: 4px !important;
  right: 4px !important;
}

/* Custom Map Marker Styling */
.stage-marker-icon {
  background: rgba(18, 23, 34, 0.9);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-full);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-neon-cyan);
  font-weight: 700;
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.stage-marker-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px var(--neon-cyan);
}

.member-marker-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--neon-cyan);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.member-marker-icon .battery-pill {
  position: absolute;
  bottom: -6px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.55rem;
  padding: 1px 4px;
  color: var(--neon-green);
  font-family: var(--font-mono);
}

.rally-marker-icon {
  animation: bounce-rally 1.5s infinite;
}

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

/* Compass HUD Overlay */
.compass-hud-overlay {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 80px;
  height: 80px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 2px solid var(--border-glow);
  border-radius: 50%;
  box-shadow: var(--shadow-glass), var(--shadow-neon-cyan);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.compass-hud-overlay:hover {
  transform: scale(1.05);
}

.compass-dial {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: transform 0.1s linear;
}

.compass-pointer-needle {
  position: absolute;
  top: 6px;
  left: calc(50% - 4px);
  width: 8px;
  height: 28px;
  background: linear-gradient(to top, transparent, var(--neon-pink));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.compass-bearing-label {
  font-size: 0.85rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  z-index: 2;
}

.compass-target-label {
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
  max-width: 60px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 2;
}

/* Quick Filter Bar (Bottom center of map) */
.quick-filter-bar {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  display: flex;
  gap: 8px;
  z-index: 900;
  box-shadow: var(--shadow-glass);
}

.filter-chip {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-chip:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.filter-chip.active {
  background: rgba(0, 240, 255, 0.15);
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

/* Emergency SOS Floating Button */
.btn-emergency-sos {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, #ff0044, #990022);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 0 20px rgba(255, 0, 68, 0.5);
  transition: transform 0.2s ease;
}

.btn-emergency-sos:hover {
  transform: scale(1.06);
}

/* Side Drawers */
.side-drawer {
  position: absolute;
  top: 64px;
  right: -420px;
  width: 420px;
  height: calc(100vh - 64px);
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--border-glass);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  z-index: 1100;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.side-drawer.open {
  right: 0;
}

.drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-title {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-close-drawer {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-close-drawer:hover {
  color: #fff;
}

.drawer-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}

/* Squad Drawer Specifics */
.squad-session-box {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.squad-input-group {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.squad-input {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
}

.squad-input:focus {
  border-color: var(--neon-cyan);
}

.btn-primary {
  background: var(--neon-cyan);
  color: #000;
  font-weight: 700;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  box-shadow: var(--shadow-neon-cyan);
}

.member-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.member-info-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.member-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.member-meta {
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Flasher Drawer Specifics */
.flasher-preset-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-select {
  width: 100%;
  background: var(--bg-primary);
  color: #fff;
  border: 1px solid var(--border-glass);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
}

.form-select:focus {
  border-color: var(--neon-pink);
}

.btn-flash {
  width: 100%;
  background: linear-gradient(135deg, var(--neon-pink), #cc0066);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: var(--shadow-neon-pink);
  margin: 16px 0;
  transition: all 0.2s ease;
}

.btn-flash:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--neon-pink);
}

.btn-flash:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* Serial Console */
.serial-console {
  background: #040608;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px;
  height: 220px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #00ffaa;
  line-height: 1.4;
  white-space: pre-wrap;
}

/* Progress bar */
.progress-bar-container {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 10px;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  transition: width 0.15s ease;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .top-nav {
    padding: 0 12px;
  }
  .brand-logo .logo-text {
    display: none;
  }
  .nav-btn span {
    display: none;
  }
  .side-drawer {
    width: 100%;
    right: -100%;
  }
  .quick-filter-bar {
    width: 90%;
    overflow-x: auto;
  }
}

/* Verification Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass), var(--shadow-neon-cyan);
  width: 90%;
  max-width: 440px;
  padding: 24px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-card {
  transform: translateY(0) scale(1);
}

.privacy-shield-box {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin: 16px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.privacy-shield-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Floating GPS Recenter Button */
.btn-gps-recenter {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--bg-surface);
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  transition: all 0.2s ease;
}

.btn-gps-recenter:hover {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: var(--shadow-neon-cyan);
  transform: scale(1.05);
}

/* Floating KMZ Map Overlay HUD */
.map-overlay-hud {
  position: absolute;
  top: 80px;
  left: 20px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  z-index: 900;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  max-width: 280px;
  width: calc(100% - 40px);
}

/* User GPS Marker & Directional Cone */
.user-gps-icon-wrapper {
  background: transparent;
  border: none;
}

.user-gps-marker {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
}

.user-gps-pulse-core {
  width: 14px;
  height: 14px;
  background: var(--neon-cyan);
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 14px var(--neon-cyan);
  z-index: 2;
  position: relative;
}

.user-gps-cone {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 24px solid rgba(0, 240, 255, 0.45);
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.6));
}

.polygon-tooltip {
  background: rgba(10, 13, 20, 0.9) !important;
  color: var(--neon-cyan) !important;
  border: 1px solid var(--neon-cyan) !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
}

/* Beacon / Totem Radar Styles */
.beacon-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes radar-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

.beacon-radar-pulse {
  animation: radar-pulse 2.5s infinite ease-in-out;
  transform-origin: center;
}

/* ==========================================================================
   MapFest Paid Account Gating & Preview Mode
   ========================================================================== */
.preview-mode-banner {
  background: linear-gradient(90deg, rgba(255, 0, 127, 0.95), rgba(157, 0, 255, 0.95));
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 998;
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  animation: bannerFadeIn 0.3s ease-out;
}

@keyframes bannerFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.preview-mode-banner .banner-content {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.preview-mode-banner .banner-badge {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.preview-mode-banner .banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-btn-signin {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}

.banner-btn-signin:hover {
  background: rgba(255, 255, 255, 0.3);
}

.banner-btn-buy {
  background: linear-gradient(135deg, #00f0ff, #00ff88);
  color: #070a12;
  font-size: 0.74rem;
  font-weight: 800;
  border: none;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
  transition: all 0.15s;
}

.banner-btn-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.7);
}

/* Locked control indicator */
.is-gated-control {
  position: relative;
}

.is-gated-control::after {
  content: '🔒';
  font-size: 0.7rem;
  margin-left: 4px;
  vertical-align: middle;
}

/* Gated interactive elements */
.gated-locked-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 0, 127, 0.15);
  border: 1px solid rgba(255, 0, 127, 0.4);
  color: var(--neon-pink);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

/* Account Modal and Festival Pass Modal Styling */
.modal-backdrop-gate {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.modal-gate-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 35px rgba(0, 240, 255, 0.2);
  width: 100%;
  max-width: 480px;
  padding: 24px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  color: #fff;
  animation: modalSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}


