/* ==========================================================================
   PREMIER AUTO REPAIRS, LLC - STRICT GAMING & ANIMATION HUD STYLESHEET
   Arcade Garage & Mobile Vehicle Rescue Game Interface Theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,400;0,600;0,700;1,700&family=Rajdhani:wght@500;600;700&family=Teko:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #050b14;
  --bg-secondary: #0a1424;
  --bg-card: rgba(14, 26, 48, 0.85);
  --bg-card-hover: rgba(20, 36, 68, 0.95);
  --bg-card-solid: #0c182d;
  
  --gold-primary: #f59e0b;
  --gold-light: #fef08a;
  --gold-dark: #b45309;
  --gold-glow: 0 0 15px rgba(245, 158, 11, 0.5), 0 0 30px rgba(245, 158, 11, 0.2);
  
  --neon-cyan: #00f0ff;
  --neon-cyan-dark: #0284c7;
  --cyan-glow: 0 0 15px rgba(0, 240, 255, 0.5), 0 0 30px rgba(0, 240, 255, 0.2);

  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-green: #10b981;
  --accent-red: #ef4444;

  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-hud: rgba(0, 240, 255, 0.25);
  --border-gold: rgba(245, 158, 11, 0.4);
  --border-card: 1px solid rgba(56, 189, 248, 0.2);

  --font-display: 'Teko', 'Impact', sans-serif;
  --font-hud: 'Chakra Petch', 'Rajdhani', monospace, sans-serif;
  --font-body: 'Rajdhani', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-hud: 14px;
}

/* Base Reset & Smooth Scrolling */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Cyber Grid & Vignette FX */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 50% 15%, rgba(14, 165, 233, 0.15), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.08), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(59, 130, 246, 0.1), transparent 50%);
  background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%, 100% 100%;
  pointer-events: none;
  z-index: -2;
}

/* Scanline Atmosphere */
.scanline-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  ), linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.03),
    rgba(0, 255, 0, 0.01),
    rgba(0, 0, 255, 0.03)
  );
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.6;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   TOP GAMING HUD BAR & NAVIGATION
   ========================================================================== */
.hud-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 11, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-hud);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hud-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}

.hud-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: max-content;
  flex: 0 0 auto;
}

.hud-logo-img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hud-brand:hover .hud-logo-img {
  transform: scale(1.08) rotate(-3deg);
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  min-width: max-content;
  flex: 0 0 auto;
}

.brand-title {
  font-family: var(--font-hud);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-title .gold-tag {
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.brand-subtitle {
  font-family: var(--font-hud);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  text-transform: uppercase;
}

/* HUD Quick Telemetry Counters (Coins, XP, Sound, Vibration) */
.hud-telemetry {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 20, 36, 0.9);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.telemetry-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-hud);
  font-size: 0.88rem;
  font-weight: 700;
}

.telemetry-item.coins {
  color: var(--gold-light);
}

.telemetry-item.xp {
  color: var(--neon-cyan);
}

.telemetry-val {
  background: rgba(0, 0, 0, 0.5);
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
}

/* Audio & Vibration Toggles in HUD */
.hud-quick-toggles {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 0.6rem;
}

.hud-toggle-btn {
  background: rgba(15, 29, 54, 0.8);
  border: 1px solid var(--border-hud);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.hud-toggle-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--text-main);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

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

/* Navigation Links */
.hud-nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.hud-nav-link {
  font-family: var(--font-hud);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.25s ease;
  position: relative;
}

.hud-nav-link:hover, .hud-nav-link.active {
  color: var(--text-main);
  background: rgba(0, 240, 255, 0.08);
  border-color: var(--border-hud);
  box-shadow: inset 0 0 8px rgba(0, 240, 255, 0.2);
}

.hud-nav-link.privacy-highlight {
  color: var(--gold-light);
  border-color: var(--border-gold);
  background: rgba(245, 158, 11, 0.08);
}

.hud-nav-link.privacy-highlight:hover {
  background: rgba(245, 158, 11, 0.18);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: rgba(14, 26, 48, 0.8);
  border: 1px solid var(--border-hud);
  color: var(--neon-cyan);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-hud);
  font-size: 1.1rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO / ARCADE COMMAND SECTION
   ========================================================================== */
.hero-arcade-section {
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 2;
}

/* Mission System Badges */
.system-status-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.status-badge {
  font-family: var(--font-hud);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.status-badge.ready {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #34d399;
}

.status-badge.on-device {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: var(--neon-cyan);
}

.status-badge.privacy-shield {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--gold-light);
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: pulse-dot 1.8s infinite ease-in-out;
}

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

.hero-main-title {
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-main-title .gold-accent {
  color: var(--gold-primary);
  background: linear-gradient(180deg, #fef08a 0%, #f59e0b 60%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4));
}

.hero-main-title .cyan-accent {
  color: var(--neon-cyan);
  background: linear-gradient(180deg, #ffffff 0%, #38bdf8 60%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4));
}

.hero-description {
  font-size: 1.12rem;
  color: #cbd5e1;
  max-width: 580px;
  line-height: 1.6;
}

/* Button & Action Cluster */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}

.game-btn {
  font-family: var(--font-hud);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.game-btn.primary-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  color: #030712;
  border: 1px solid #fef08a;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.game-btn.primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #fef08a 0%, #fbbf24 50%, #f59e0b 100%);
}

.game-btn.cyber-cyan {
  background: rgba(14, 165, 233, 0.12);
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  box-shadow: inset 0 0 12px rgba(0, 240, 255, 0.2);
}

.game-btn.cyber-cyan:hover {
  background: rgba(0, 240, 255, 0.25);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5), inset 0 0 15px rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

.game-btn.dark-outline {
  background: rgba(15, 23, 42, 0.75);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-btn.dark-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(30, 41, 59, 0.9);
}

/* Hero Right Visual: 3D Hologram Badge Display */
.hero-visual-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hologram-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: radial-gradient(circle at 50% 50%, rgba(14, 30, 58, 0.9) 0%, rgba(5, 11, 20, 0.95) 100%);
  border: 1px solid var(--border-hud);
  border-radius: var(--radius-hud);
  padding: 2.2rem 1.8rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 240, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  overflow: hidden;
}

/* Animated Corner Brackets */
.hologram-frame::before, .hologram-frame::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--neon-cyan);
  pointer-events: none;
}

.hologram-frame::before {
  top: 10px;
  left: 10px;
  border-top: 2px solid var(--neon-cyan);
  border-left: 2px solid var(--neon-cyan);
}

.hologram-frame::after {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid var(--neon-cyan);
  border-right: 2px solid var(--neon-cyan);
}

.hero-logo-large {
  width: 240px;
  height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.5));
  animation: float-badge 4s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.8deg); }
}

.hologram-footer-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.holo-stat-box {
  background: rgba(5, 11, 20, 0.6);
  padding: 0.5rem 0.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 240, 255, 0.15);
}

.holo-stat-label {
  font-family: var(--font-hud);
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.holo-stat-number {
  font-family: var(--font-hud);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.holo-stat-number.gold { color: var(--gold-light); }
.holo-stat-number.cyan { color: var(--neon-cyan); }
.holo-stat-number.green { color: #34d399; }

/* ==========================================================================
   SECTION HEADERS & HUD DIVIDERS
   ========================================================================== */
.section-wrapper {
  padding: 4.5rem 0;
  position: relative;
}

.section-wrapper.alt-bg {
  background: linear-gradient(180deg, rgba(8, 16, 30, 0.4) 0%, rgba(5, 11, 20, 0.8) 100%);
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.section-header-hud {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.section-subtitle-tag {
  font-family: var(--font-hud);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--neon-cyan);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-subtitle-tag::before, .section-subtitle-tag::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--neon-cyan);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

.section-desc {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.35rem;
}

/* ==========================================================================
   INTERACTIVE GAMEPLAY & STORAGE PROGRESSION HUD MATRIX
   (Visualizes the 6 exact data points from Section 2 of Policy)
   ========================================================================== */
.progression-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hud-game-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hud-game-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 255, 0.2);
}

.card-top-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-icon-emblem {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(10, 20, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.card-icon-emblem.gold {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.card-icon-emblem.cyan {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.card-icon-emblem.purple {
  border-color: var(--accent-purple);
  color: #c084fc;
}

.card-icon-emblem.green {
  border-color: var(--accent-green);
  color: #34d399;
}

.card-level-tag {
  font-family: var(--font-hud);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hud-game-card h3 {
  font-family: var(--font-hud);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.2;
}

.hud-game-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
}

.card-hud-spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-hud);
  font-size: 0.85rem;
}

.spec-label {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-value {
  color: var(--text-main);
  font-weight: 700;
}

.spec-value.highlight-gold { color: var(--gold-light); }
.spec-value.highlight-cyan { color: var(--neon-cyan); }
.spec-value.highlight-green { color: #34d399; }

/* ==========================================================================
   LIVE INTERACTIVE GARAGE PROGRESSION SIMULATOR HUD
   ========================================================================== */
.simulator-terminal {
  background: radial-gradient(circle at 50% 0%, #0f203c 0%, #070d18 100%);
  border: 2px solid var(--border-hud);
  border-radius: var(--radius-hud);
  padding: 2.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(0, 240, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  margin-bottom: 1.75rem;
}

.sim-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sim-title {
  font-family: var(--font-hud);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
}

.sim-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.sim-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sim-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 11, 20, 0.75);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sim-stat-name {
  font-family: var(--font-hud);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sim-stat-val-display {
  font-family: var(--font-hud);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* XP Progress Gauge */
.sim-xp-bar-container {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.xp-bar-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-hud);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.xp-progress-track {
  width: 100%;
  height: 12px;
  background: rgba(5, 11, 20, 0.9);
  border-radius: 6px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  overflow: hidden;
  position: relative;
}

.xp-progress-fill {
  height: 100%;
  width: 35%;
  background: linear-gradient(90deg, #0284c7, #00f0ff);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Star Rating Visualizer */
.star-rating-box {
  display: flex;
  gap: 0.35rem;
  font-size: 1.4rem;
  color: #475569;
}

.star-rating-box .star.active {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
}

/* Interactive Controls for Simulator */
.sim-controls-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(5, 11, 20, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.sim-controls-panel h4 {
  font-family: var(--font-hud);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--neon-cyan);
  text-transform: uppercase;
}

.sim-actions-cluster {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sim-settings-toggles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.sim-toggle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 26, 48, 0.7);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sim-toggle-card:hover {
  border-color: var(--neon-cyan);
}

.sim-toggle-card.active {
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.12);
}

.sim-status-log {
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82rem;
  color: #38bdf8;
  min-height: 48px;
  display: flex;
  align-items: center;
}

/* ==========================================================================
   DATA PRIVACY & SYSTEM ARCHITECTURE (POLICY SPECIFICATIONS)
   ========================================================================== */
.architecture-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.arch-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.25s ease;
}

.arch-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(245, 158, 11, 0.2);
}

.arch-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.arch-badge-num {
  font-family: var(--font-hud);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.arch-header h3 {
  font-family: var(--font-hud);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}

.arch-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.arch-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.arch-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.arch-feature-list li .check-icon {
  color: #34d399;
  font-weight: bold;
}

.arch-feature-list li .cross-icon {
  color: #f87171;
  font-weight: bold;
}

/* ==========================================================================
   CONTACT COMMAND & SUPPORT TERMINAL
   ========================================================================== */
.contact-hub-card {
  background: radial-gradient(circle at 80% 20%, rgba(14, 30, 58, 0.95) 0%, rgba(5, 11, 20, 0.98) 100%);
  border: 1px solid var(--border-hud);
  border-radius: var(--radius-hud);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-block h3 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

.email-display-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 20, 36, 0.9);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 240, 255, 0.4);
  font-family: var(--font-hud);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-cyan);
  width: fit-content;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.copy-btn {
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--neon-cyan);
  color: #ffffff;
  padding: 0.35rem 0.65rem;
  border-radius: 3px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: var(--neon-cyan);
  color: #000000;
}

.contact-actions-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(5, 11, 20, 0.7);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-actions-box h4 {
  font-family: var(--font-hud);
  font-size: 1.1rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   PRIVACY POLICY PAGE STYLES (privacy-policy.html)
   ========================================================================== */
.policy-page-header {
  padding: 3.5rem 0 2rem;
  background: radial-gradient(circle at 50% 0%, rgba(14, 30, 58, 0.8) 0%, rgba(5, 11, 20, 0.95) 100%);
  border-bottom: 1px solid var(--border-hud);
}

.policy-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.policy-hud-card {
  background: var(--bg-card-solid);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-hud);
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  position: relative;
}

.policy-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.policy-effective-date {
  font-family: var(--font-hud);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.policy-entity-name {
  font-family: var(--font-hud);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
}

.policy-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #f1f5f9;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 240, 255, 0.05);
  border-left: 4px solid var(--neon-cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.policy-section-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.policy-section-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section-heading {
  font-family: var(--font-hud);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.policy-section-num {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.policy-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.policy-bullets {
  list-style: none;
  padding-left: 1.5rem;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.policy-bullets li {
  position: relative;
  font-size: 1.05rem;
  color: #f1f5f9;
}

.policy-bullets li::before {
  content: "•";
  position: absolute;
  left: -1.25rem;
  color: var(--neon-cyan);
  font-size: 1.3rem;
  line-height: 1;
}

.policy-email-link {
  color: var(--neon-cyan);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.policy-email-link:hover {
  color: var(--gold-light);
}

/* Quick jump TOC in policy */
.policy-toc {
  background: rgba(5, 11, 20, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.toc-title {
  font-family: var(--font-hud);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.5rem;
  list-style: none;
}

.toc-grid a {
  font-family: var(--font-hud);
  font-size: 0.92rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.toc-grid a:hover {
  color: var(--neon-cyan);
  transform: translateX(4px);
}

/* ==========================================================================
   FOOTER (GAMING HUD STYLE)
   ========================================================================== */
.hud-footer {
  background: #030710;
  border-top: 1px solid rgba(0, 240, 255, 0.2);
  padding: 3.5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 380px;
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-hud);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-family: var(--font-hud);
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  padding-left: 4px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-hud);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Toast Notifications */
.hud-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(14, 26, 48, 0.95);
  border: 1px solid var(--neon-cyan);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-hud);
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 240, 255, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.hud-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
/* Keep the full brand name visible before the compact/mobile header kicks in. */
@media (max-width: 1320px) {
  .hud-nav-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 0.65rem;
  }

  .hud-telemetry {
    display: none;
  }

  .hud-nav-link {
    font-size: 0.82rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
}

@media (max-width: 980px) {
  .hud-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(5, 11, 20, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-hud);
  }

  .hud-nav-links.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hud-nav-wrapper {
    padding: 0.65rem 0.75rem;
  }

  .hud-logo-img {
    width: 40px;
    height: 40px;
  }

  .hud-brand {
    gap: 0.55rem;
  }

  .brand-title {
    font-size: 0.88rem;
    letter-spacing: 0.45px;
    gap: 0.25rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-main-title {
    font-size: 3.5rem;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .progression-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sim-grid-layout {
    grid-template-columns: 1fr;
  }

  .contact-hub-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hud-telemetry {
    display: none;
  }

  .hud-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(5, 11, 20, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-hud);
  }

  .hud-nav-links.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-main-title {
    font-size: 2.8rem;
  }

  .progression-grid {
    grid-template-columns: 1fr;
  }

  .architecture-cards-grid {
    grid-template-columns: 1fr;
  }

  .toc-grid {
    grid-template-columns: 1fr;
  }

  .policy-hud-card {
    padding: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}


/* ==========================================================================
   2026 PREMIUM LOGO-MATCHED THEME OVERRIDE
   Deep royal navy + metallic gold + restrained electric-blue detail.
   Keeps the gaming identity while removing the older heavy cyber-grid look.
   ========================================================================== */
:root {
  --bg-primary: #06101f;
  --bg-secondary: #0a1b31;
  --bg-card: rgba(13, 33, 58, 0.88);
  --bg-card-hover: rgba(18, 45, 78, 0.96);
  --bg-card-solid: #0c2038;

  --gold-primary: #f5b83b;
  --gold-light: #ffe58a;
  --gold-dark: #a96809;
  --gold-glow: 0 10px 28px rgba(245, 184, 59, 0.18);

  --neon-cyan: #51c8ef;
  --neon-cyan-dark: #2076aa;
  --cyan-glow: 0 8px 24px rgba(81, 200, 239, 0.16);

  --accent-blue: #2f78bd;
  --text-main: #f8fafc;
  --text-muted: #b7c4d5;
  --text-dim: #7f93aa;

  --border-hud: rgba(245, 184, 59, 0.22);
  --border-gold: rgba(245, 184, 59, 0.42);
  --border-card: 1px solid rgba(245, 184, 59, 0.16);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-hud: 24px;
}

html,
body {
  background: #06101f;
}

body {
  background-image:
    radial-gradient(circle at 12% 10%, rgba(35, 91, 145, 0.25), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(245, 184, 59, 0.12), transparent 24%),
    linear-gradient(145deg, #071424 0%, #0b1f37 48%, #071220 100%);
  background-attachment: fixed;
}

body::before {
  background-image:
    radial-gradient(circle at 16% 24%, rgba(43, 111, 177, 0.12), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(245, 184, 59, 0.08), transparent 26%),
    linear-gradient(115deg, transparent 0 47%, rgba(255,255,255,0.018) 48%, transparent 49% 100%);
  background-size: 100% 100%, 100% 100%, 220px 220px;
}

.scanline-overlay {
  display: none;
}

.hud-header {
  background: rgba(7, 20, 36, 0.94);
  border-bottom: 1px solid rgba(245, 184, 59, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

.hud-logo-img {
  filter: drop-shadow(0 5px 12px rgba(245, 184, 59, 0.24));
}

.brand-title .gold-tag,
.brand-subtitle {
  color: var(--gold-light);
  text-shadow: none;
}

.hud-telemetry {
  background: rgba(13, 32, 55, 0.82);
  border-color: rgba(245, 184, 59, 0.18);
  box-shadow: none;
}

.hud-toggle-btn,
.mobile-menu-btn {
  background: #0d2744;
  border-color: rgba(245, 184, 59, 0.22);
}

.hud-toggle-btn:hover,
.hud-toggle-btn.active {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(245, 184, 59, 0.10);
  box-shadow: none;
}

.hud-nav-link:hover,
.hud-nav-link.active {
  color: #fff6d6;
  background: rgba(245, 184, 59, 0.09);
  border-color: rgba(245, 184, 59, 0.22);
  box-shadow: none;
}

.hud-nav-link.privacy-highlight {
  background: rgba(245, 184, 59, 0.10);
}

/* Simple home hero: intentionally cleaner than the rest of the game UI. */
.hero-arcade-section.hero-simple {
  padding: 5.25rem 0 5.5rem;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-simple::before {
  content: "";
  position: absolute;
  inset: 7% 8% auto;
  height: 78%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 20%, rgba(245, 184, 59, 0.09), transparent 38%),
    linear-gradient(145deg, rgba(18, 48, 82, 0.64), rgba(7, 20, 36, 0.34));
  border: 1px solid rgba(245, 184, 59, 0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 30px 70px rgba(0,0,0,0.22);
  pointer-events: none;
}

.hero-simple-shell {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.hero-simple-emblem {
  width: 154px;
  height: 154px;
  padding: 8px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(245,184,59,0.16), rgba(43,111,177,0.14));
  border: 1px solid rgba(245, 184, 59, 0.34);
  box-shadow: 0 22px 42px rgba(0,0,0,0.28);
}

.hero-simple-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.25));
}

.hero-simple-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-simple-kicker {
  font-family: var(--font-hud);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-main-title.hero-simple-title {
  max-width: 820px;
  font-size: clamp(3.3rem, 7vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 1px;
  text-shadow: 0 8px 28px rgba(0,0,0,0.34);
}

.hero-simple-title .gold-accent {
  background: linear-gradient(180deg, #fff3bd 0%, #f5b83b 58%, #bd760b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: none;
}

.hero-description.hero-simple-description {
  max-width: 680px;
  color: #c8d4e2;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-cta-group.hero-simple-actions {
  justify-content: center;
  margin-top: 0.35rem;
}

.game-btn {
  clip-path: none;
  border-radius: 12px;
  box-shadow: none;
}

.game-btn.primary-gold {
  background: linear-gradient(135deg, #ffe58a 0%, #f5b83b 48%, #c77e0a 100%);
  border-color: rgba(255, 240, 185, 0.8);
  box-shadow: 0 10px 24px rgba(176, 105, 6, 0.18);
}

.game-btn.primary-gold:hover {
  background: linear-gradient(135deg, #fff1af 0%, #ffc94f 55%, #d38a11 100%);
  box-shadow: 0 14px 30px rgba(176, 105, 6, 0.25);
}

.game-btn.cyber-cyan,
.game-btn.dark-outline {
  background: rgba(17, 45, 76, 0.82);
  color: #eaf5ff;
  border-color: rgba(100, 164, 214, 0.34);
  box-shadow: none;
}

.game-btn.cyber-cyan:hover,
.game-btn.dark-outline:hover {
  background: #15375c;
  border-color: rgba(245, 184, 59, 0.5);
  color: #fff1bf;
  box-shadow: none;
}

.section-wrapper.alt-bg {
  background: linear-gradient(180deg, rgba(11, 31, 55, 0.72), rgba(7, 21, 38, 0.76));
  border-top-color: rgba(245, 184, 59, 0.10);
  border-bottom-color: rgba(245, 184, 59, 0.10);
}

.section-subtitle-tag {
  color: var(--gold-light);
}

.section-subtitle-tag::before,
.section-subtitle-tag::after {
  background: var(--gold-primary);
}

.hud-game-card,
.simulator-terminal,
.architecture-panel,
.privacy-card,
.policy-card,
.contact-card {
  background: linear-gradient(145deg, rgba(15, 39, 67, 0.92), rgba(9, 27, 48, 0.92));
  border-color: rgba(245, 184, 59, 0.15);
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

.hud-game-card:hover {
  border-color: rgba(245, 184, 59, 0.44);
  box-shadow: 0 18px 38px rgba(0,0,0,0.25);
}

.card-icon-emblem,
.sim-stat-row,
.holo-stat-box {
  background: rgba(7, 22, 39, 0.72);
}

.card-level-tag {
  background: rgba(245, 184, 59, 0.07);
  border-color: rgba(245, 184, 59, 0.13);
}

.xp-progress-track {
  border-color: rgba(245, 184, 59, 0.22);
}

.xp-progress-fill {
  background: linear-gradient(90deg, #2f78bd, #51c8ef);
  box-shadow: none;
}

footer,
.site-footer,
.hud-footer {
  background: #050d18 !important;
  border-top-color: rgba(245, 184, 59, 0.18) !important;
}

@media (max-width: 760px) {
  .hero-arcade-section.hero-simple {
    min-height: auto;
    padding: 4rem 0 4.25rem;
  }

  .hero-simple::before {
    inset: 4% 1rem auto;
    height: 88%;
    border-radius: 26px;
  }

  .hero-simple-emblem {
    width: 124px;
    height: 124px;
    border-radius: 28px;
  }

  .hero-main-title.hero-simple-title {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-simple-kicker {
    letter-spacing: 2px;
  }

  .hero-cta-group.hero-simple-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-simple-actions .game-btn {
    width: 100%;
    max-width: 360px;
  }
}
