/* ==========================================================================
   VALHALLA FITNESS CENTER & CAMINO AL VALHALLA II
   Master Design System - Extended Pro Features
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=JetBrains+Mono:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: 'PR Viking';
  src: url('assets/PR Viking.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Typography Families (Alineado con Brandbook) */
  --font-heading: 'Bebas Neue', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Shapes & Effects */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
}

/* Elegant Light Theme Variables */
body.theme-light {
  --bg-dark: #f8f9fa; /* Light grey/off-white background */
  --bg-card: #ffffff; /* Solid pure white cards */
  --bg-card-solid: #ffffff; /* Pure white solid cards */
  --bg-card-hover: rgba(245, 245, 250, 0.95);
  --bg-modal: #ffffff;
  
  /* Primary: Vold Gold */
  --primary: #c09453;
  --primary-glow: rgba(192, 148, 83, 0.12);
  --primary-dark: #916c33;
  
  /* Secondary: GoldBiesh (Darker for readability on light backgrounds) */
  --gold: #8c765c;
  --gold-glow: rgba(140, 118, 92, 0.12);
  --gold-dark: #6e5a44;
  
  /* Neutral Typography & Support */
  --text-main: #2d2d2d; /* Blacked (#2D2D2D) as main text for high contrast */
  --text-muted: #8c765c; /* Darker GoldBiesh for readable subheadings */
  --text-dim: #757575;   /* Grys (#757575) for neutral support text */
  
  /* Borders */
  --border: rgba(192, 148, 83, 0.28); /* Gold borders */
  --border-gold: rgba(140, 118, 92, 0.35);
  --border-crimson: rgba(192, 148, 83, 0.35);
  
  /* Status */
  --status-pending: #f59e0b;
  --status-approved: #10b981;
  --status-rejected: #ef4444;
  
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08); /* Subtle soft shadows */
  --shadow-glow: 0 0 35px rgba(192, 148, 83, 0.15);
  --shadow-gold-glow: 0 0 35px rgba(140, 118, 92, 0.1);
  --glass-backdrop: blur(25px);
  --bg-navbar: rgba(255, 255, 255, 0.92);
}

/* Premium Dark Theme Variables */
body.theme-dark {
  --bg-dark: #0b0b0d; /* Pure obsidian black */
  --bg-card: #161619; /* Solid charcoal dark grey */
  --bg-card-solid: #1c1c21;
  --bg-card-hover: rgba(45, 45, 50, 0.95);
  --bg-modal: #161619;
  
  /* Primary: Vold Gold */
  --primary: #c09453;
  --primary-glow: rgba(192, 148, 83, 0.35);
  --primary-dark: #916c33;
  
  /* Secondary: GoldBiesh (Light gold for high contrast on dark bg) */
  --gold: #c3ae91;
  --gold-glow: rgba(195, 174, 145, 0.25);
  --gold-dark: #9e8568;
  
  /* Neutral Typography & Support */
  --text-main: #f3f3f5; /* Off-white text */
  --text-muted: #c3ae91;
  --text-dim: #a0a0a5;
  
  /* Borders */
  --border: rgba(192, 148, 83, 0.22);
  --border-gold: rgba(195, 174, 145, 0.3);
  --border-crimson: rgba(192, 148, 83, 0.35);
  
  /* Status */
  --status-pending: #f59e0b;
  --status-approved: #10b981;
  --status-rejected: #ef4444;
  
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 35px rgba(192, 148, 83, 0.3);
  --shadow-gold-glow: 0 0 35px rgba(195, 174, 145, 0.2);
  --glass-backdrop: blur(25px);
  --bg-navbar: rgba(11, 11, 13, 0.92);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Background Texture & Runic Embers */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: 
    radial-gradient(circle at 10% 15%, rgba(192, 148, 83, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(140, 118, 92, 0.04) 0%, transparent 50%),
    var(--bg-dark);
  pointer-events: none;
  z-index: -1;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.font-mono { font-family: var(--font-mono); }

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  letter-spacing: 3px;
  line-height: 0.92;
  text-transform: uppercase;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.subheading {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0.8rem auto 0;
  font-weight: 400;
}

/* Top Information Bar */
.topbar {
  background: var(--bg-card-solid);
  border-bottom: 1px solid var(--border);
  padding: 0.4rem 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}
.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.topbar-link:hover {
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #d4b075 0%, var(--primary) 100%);
  box-shadow: 0 6px 20px rgba(192, 148, 83, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-weight: 700;
  border-color: var(--gold);
  box-shadow: 0 4px 15px var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(140, 118, 92, 0.35);
  background: linear-gradient(135deg, #a89178 0%, var(--gold) 100%);
}

.btn-outline {
  background: rgba(192, 148, 83, 0.04);
  border-color: var(--border-gold);
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(192, 148, 83, 0.12);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Header Navbar */
.navbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-navbar);
  backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0.3rem 0;
}

.top-sponsors-bar {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.top-sponsors-bar .sponsors-marquee {
  gap: 3.5rem;
  animation-duration: 20s;
}
.top-sponsors-bar .sponsor-logo {
  height: 30px;
  opacity: 0.65;
}
.top-sponsors-bar .sponsor-logo:hover {
  opacity: 1;
}
.top-sponsors-bar::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  left: 0;
  z-index: 2;
  background: linear-gradient(to right, var(--bg-navbar), transparent);
  pointer-events: none;
}
.top-sponsors-bar::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  right: 0;
  z-index: 2;
  background: linear-gradient(to left, var(--bg-navbar), transparent);
  pointer-events: none;
}
.nav-logo-svg:hover,
.nav-logo-event:hover {
  transform: scale(1.04);
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  letter-spacing: 2px;
  line-height: 0.9;
  display: flex;
  flex-direction: column;
}
.nav-brand-text span:last-child {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; width: 100%; height: 2px;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(192, 148, 83, 0.45);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 2rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: auto;
  padding-top: 45px;
  padding-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 15%, var(--bg-dark) 85%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1.2rem;
  background: rgba(192, 148, 83, 0.12);
  border: 1px solid rgba(192, 148, 83, 0.4);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}
.hero-title span {
  background: linear-gradient(180deg, #ffffff 40%, #888888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 auto 1.8rem;
  max-width: 680px;
  font-weight: 400;
}

.hero-info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.5rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Countdown Timer */
.countdown-container {
  margin: 1.2rem auto 1.8rem;
  max-width: 540px;
}
.countdown-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.countdown-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.8rem 0.4rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.countdown-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--primary);
  text-shadow: none;
}
.countdown-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-top: 0.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Sports Running Ticker (Papaya25 style) */
.sports-ticker {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.sports-ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: var(--text-dim);
}
.sports-ticker-track span {
  color: var(--primary);
  font-weight: bold;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section Styling */
.section {
  padding: 3.5rem 0;
  position: relative;
}
.section-alt {
  background-color: var(--bg-card-solid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

/* 1RM Calculator & Category Recommender UI */
.tool-box {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-gold);
  padding: 2.8rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  max-width: 950px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}
.calc-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  padding: 1rem 0.5rem;
}
.calc-pct {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}
.calc-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}

/* Category Finder Quiz Cards */
.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.quiz-checkbox {
  background: rgba(8, 8, 10, 0.7);
  border: 1px solid var(--border);
  padding: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.25s ease;
}
.quiz-checkbox:hover {
  border-color: var(--gold);
}

/* Accordion FAQ */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question {
  padding: 1.2rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  padding: 0 1.8rem 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  display: none;
}
.faq-item.open .faq-answer {
  display: block;
}

/* Stats Counter Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}
.stat-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-gold);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 0 30px var(--primary-glow);
}
.stat-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  line-height: 1;
  color: var(--primary);
}
body.theme-light .stat-number {
  color: var(--primary-dark);
}
body.theme-light .stat-card {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
body.theme-light .stat-label {
  color: var(--text-main);
}
.stat-label {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.4rem;
}

/* WOD del Día Interactive Module */
.wod-container {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  max-width: 1000px;
  margin: 0 auto;
}
.wod-tabs {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.wod-tab-btn {
  padding: 0.7rem 1.4rem;
  background: #f1f3f5;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.wod-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px var(--primary-glow);
}
.wod-content-box {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  padding: 2rem;
  color: var(--text-main);
}

.wod-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Categories Section & Capacity Badge */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2.2rem;
}
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}
.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(192, 148, 83, 0.12);
}

.category-tag {
  align-self: flex-start;
  padding: 0.3rem 0.9rem;
  background: var(--primary-glow);
  border: 1px solid var(--primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.category-capacity {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.category-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.category-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.category-price span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.category-standards {
  list-style: none;
  margin-bottom: 2.2rem;
  flex-grow: 1;
}
.category-standards li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

/* Schedule Grid */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 1.8rem;
}
.schedule-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.schedule-list {
  list-style: none;
}
.schedule-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

/* Registration Form Section */
.form-wrapper {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-gold);
  padding: 3.5rem 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  max-width: 950px;
  margin: 0 auto;
}

/* Stepper Header */
.stepper-header {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3.5rem;
}
.stepper-header::before {
  content: '';
  position: absolute;
  top: 22px; left: 10%; right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}
.stepper-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.step-num {
  width: 46px; height: 46px;
  background: var(--bg-card-solid);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.stepper-step.active .step-num {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 20px var(--primary-glow);
}
.stepper-step.completed .step-num {
  border-color: var(--gold);
  background: var(--gold);
  color: #000;
}
.step-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.stepper-step.active .step-title {
  color: var(--text-main);
}

/* Form Controls */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
}
label .required {
  color: var(--primary);
}

.input-control, select, textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: 0px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.25s ease;
  outline: none;
}
.input-control:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  background: var(--bg-card-solid);
}

select option {
  background: var(--bg-card-solid);
  color: var(--text-main);
}

/* Payment Method Cards */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.payment-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  padding: 1.2rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.payment-card:hover {
  border-color: var(--gold);
}
.payment-card.active {
  border-color: var(--primary);
  background: rgba(192, 148, 83, 0.1);
  box-shadow: 0 0 20px rgba(192, 148, 83, 0.25);
}
.payment-icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
.payment-name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.payment-details-box {
  background: var(--bg-card-solid);
  border: 1px dashed var(--gold);
  padding: 1.5rem;
  margin-bottom: 1.8rem;
}
.payment-details-box h4 {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}
.payment-details-box p {
  font-size: 0.95rem;
  color: var(--text-main);
}

/* Upload Preview */
.upload-box {
  border: 2px dashed var(--border-crimson);
  padding: 1.8rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--bg-card-solid);
}
.upload-box:hover {
  border-color: var(--primary);
  background: rgba(192, 148, 83, 0.08);
}
.upload-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.file-preview-img {
  max-width: 200px;
  max-height: 200px;
  margin-top: 1.2rem;
  border: 1px solid var(--gold);
  display: none;
}

/* Lookup Section (Verificación) */
.lookup-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 3rem;
  max-width: 750px;
  margin: 0 auto;
}
.lookup-form {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
@media (max-width: 600px) {
  .lookup-form { flex-direction: column; }
}

.result-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  padding: 1.8rem;
  display: none;
}

/* Admin Portal Section */
.admin-section {
  background: var(--bg-dark);
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.admin-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.metric-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem 1.8rem;
}
.metric-val {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.metric-lbl {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* T-Shirt Tally Table */
.tally-container {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 1.8rem;
  margin-bottom: 2.5rem;
}
.tally-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}
.tally-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  text-align: center;
}
.tally-item {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  padding: 0.8rem;
}
.tally-size {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-main);
}
.tally-count {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary);
}

/* Admin Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}
.admin-table th, .admin-table td {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.admin-table th {
  background: #f1f3f5;
  color: var(--text-main);
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}
.admin-table tbody tr:hover {
  background: rgba(192, 148, 83, 0.05);
}

.status-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.status-badge.confirmado {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
}
.status-badge.revision {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.4);
}
.status-badge.rechazado {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

/* Modal Ticket */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.ticket-modal {
  background: var(--bg-modal);
  border: 2px solid var(--gold);
  max-width: 580px;
  width: 100%;
  padding: 3rem;
  box-shadow: 0 0 50px var(--gold-glow);
  position: relative;
  text-align: center;
}
.ticket-header {
  border-bottom: 1px dashed var(--border);
  padding-bottom: 1.8rem;
  margin-bottom: 1.8rem;
}
.ticket-code {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--gold);
  letter-spacing: 3px;
}
.qr-placeholder {
  width: 140px; height: 140px;
  margin: 1.2rem auto;
  background: #fff;
  padding: 10px;
  display: flex; align-items: center; justify-content: center;
}
.qr-placeholder img {
  width: 100%; height: 100%;
}

/* Footer */
/* Footer */
.footer {
  background: var(--bg-card-solid);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
  color: var(--text-muted);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
body.theme-light .footer {
  background: #ebe7df;
  border-top: 1px solid var(--border);
  color: #4a4a50;
}
body.theme-light .footer h4 {
  color: #1a1a1f !important;
}
body.theme-light .footer p {
  color: #55555c;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-main);
  letter-spacing: 2px;
}
body.theme-light .footer-brand {
  color: #1a1a1f;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.8rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 25px; right: 25px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.toast {
  background: var(--bg-card-solid);
  border: 1px solid var(--primary);
  color: var(--text-main);
  padding: 1.1rem 1.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  animation: slideIn 0.3s ease forwards;
}
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive queries */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 85px; left: -100%; width: 100%; height: calc(100vh - 85px);
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    transition: left 0.3s ease;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-toggle {
    display: block;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .stepper-header::before {
    display: none;
  }
}

/* ==========================================================================
   14. EXPERIENCIA CAMINO AL VALHALLA (VIDEOS SECTION)
   ========================================================================== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  margin-top: 2rem;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 12px 30px var(--primary-glow);
}
.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: transform 0.5s ease;
}
.video-card:hover .video-thumbnail {
  transform: scale(1.05);
  opacity: 0.85;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.play-btn-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(192, 148, 83, 0.85); /* Vold Gold */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(192, 148, 83, 0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-card:hover .play-btn-circle {
  background: #c09453;
  transform: scale(1.15);
  box-shadow: 0 0 35px var(--primary-glow);
  color: #fff;
}
.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0.2rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
}
.video-info {
  padding: 1.5rem;
}
.video-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}
.video-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-main);
  line-height: 1.2;
}

/* ==========================================================================
   15. MARQUEE PATROCINADORES (SPONSORS horizontal scroller)
   ========================================================================== */
.sponsors-marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 2.5rem 0;
  background: rgba(15, 15, 18, 0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  margin-top: 2rem;
}
.sponsors-marquee-container::before,
.sponsors-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.sponsors-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}
.sponsors-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}
.sponsors-marquee {
  display: flex;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
  gap: 6rem;
  align-items: center;
}
.sponsors-marquee:hover {
  animation-play-state: paused;
}
.sponsor-logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  filter: grayscale(1) brightness(0); /* Makes all logos solid black */
  transition: all 0.3s ease;
  cursor: pointer;
}
.sponsor-logo:hover {
  opacity: 0.95;
  filter: none; /* Shows full color on hover if logo is colorful, or stays bright */
}
.sponsor-logo svg {
  height: 100%;
  width: auto;
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Admin Login Custom Tweaks */
#adminPasscode {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  letter-spacing: 4px;
}
#adminLoginForm {
  margin-top: 1rem;
}

/* ==========================================================================
   16. DYNAMIC THEME SWITCHER & SMOOTH TRANSITIONS
   ========================================================================== */

/* Theme Transition Smoothness on key elements */
body, .navbar, .card, .wod-content-box, .tool-box, .category-card, .calc-card, .payment-card, .input-control, select, textarea, .admin-section, .tally-item, .table-responsive, .toast, .ticket-modal, .topbar {
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-switch-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  font-size: 1.4rem;
  transition: transform 0.3s ease, color 0.3s ease;
  border-radius: 50%;
  outline: none;
}
.theme-switch-btn:hover {
  transform: scale(1.15) rotate(15deg);
  color: var(--primary);
}

/* Switch Icon Display Controls */
body.theme-light .theme-icon-light {
  display: none;
}
body.theme-light .theme-icon-dark {
  display: block;
}
body.theme-dark .theme-icon-light {
  display: block;
}
body.theme-dark .theme-icon-dark {
  display: none;
}

/* Dark Mode Sponsors Marquee Overrides */
body.theme-dark .sponsor-logo {
  filter: grayscale(1) brightness(0) invert(1);
}
body.theme-dark .sponsor-logo:hover {
  filter: none;
}

/* ==========================================================================
   17. SCROLLING TICKER MARQUEE (Papaya25 Style)
   ========================================================================== */

.our-scrolling-ticker {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  background: var(--bg-card-solid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  width: 100%;
}
.scrolling-ticker-box {
  display: flex;
  width: max-content;
  animation: scrollTicker 25s linear infinite;
}
.scrolling-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}
.scrolling-content span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.scrolling-content span::after {
  content: "⚡";
  margin-left: 3rem;
  color: var(--primary);
}
@keyframes scrollTicker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}/* ==========================================================================
   18. VERTICAL TIMELINE STYLING (Cronograma)
   ========================================================================== */

.timeline {
  position: relative;
  padding-left: 2.5rem;
  border-left: 2px solid var(--border);
  margin-top: 1.5rem;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.98rem;
  top: 0.2rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 10px var(--primary);
}
.timeline-time {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.timeline-details h4 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  letter-spacing: 1px;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}
.timeline-details p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   19. PRELOADER LOADING SCREEN
   ========================================================================== */

.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader-content {
  text-align: center;
}
.preloader-logo {
  width: 220px;
  max-width: 80vw;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  animation: pulseLogo 1.5s infinite ease-in-out;
  filter: drop-shadow(0 0 15px rgba(192, 148, 83, 0.25));
}
.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.preloader-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: var(--primary);
  animation: loadBar 1.2s infinite ease-in-out;
}
@keyframes pulseLogo {
  0%, 100% { transform: scale(0.95); opacity: 0.85; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes loadBar {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* ==========================================================================
   20. SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   21. SECTION SWITCHER LAYOUT (APP LOOK-AND-FEEL)
   ========================================================================== */

.app-section {
  display: none;
}
.app-section.active-section {
  display: block;
  animation: fadeInSection 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   22. UNIVERSAL RESPONSIVE BOTTOM NAVIGATION BAR (iOS, Android, PC, iPad)
   ========================================================================== */

body {
  padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(11, 12, 16, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  padding-top: 0.35rem;
  padding-bottom: calc(0.35rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.45);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.theme-light .bottom-nav {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.08);
}

/* Hero Main Structured Title */
.hero-main-title {
  font-family: var(--font-heading);
  text-align: center;
  margin: 0.6rem auto 1.2rem;
  max-width: 820px;
  line-height: 1.12;
  letter-spacing: 1.5px;
}
.hero-title-top {
  display: block;
  font-size: clamp(1.8rem, 5.2vw, 3.2rem);
  color: var(--text-main);
}
.hero-title-bottom {
  display: block;
  font-size: clamp(2.1rem, 6.5vw, 3.8rem);
  color: var(--primary);
  letter-spacing: 2.5px;
  margin-top: 0.25rem;
}

.bottom-nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  gap: 0.25rem;
}

.bottom-nav-container::-webkit-scrollbar {
  display: none;
}

.bottom-nav-link {
  flex: 0 0 auto;
  min-width: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.5rem;
  margin: 0;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: 8px;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}

.bottom-nav-link:hover {
  color: var(--primary);
}

.bottom-nav-link.active {
  color: var(--primary);
  background: rgba(192, 148, 83, 0.14);
}

.bottom-nav-icon {
  font-size: 1.2rem;
  line-height: 1;
  display: block;
}

.bottom-nav-link span:not(.bottom-nav-icon) {
  font-size: 0.64rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  line-height: 1.2;
  margin-top: 0.2rem;
  white-space: nowrap;
  text-align: center;
}

@media (min-width: 640px) {
  .bottom-nav-container {
    justify-content: space-around;
    gap: 0.5rem;
  }
  .bottom-nav-link {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.4rem 0.6rem;
  }
  .bottom-nav-link span:not(.bottom-nav-icon) {
    font-size: 0.72rem;
    letter-spacing: 0.5px;
  }
  .bottom-nav-icon {
    font-size: 1.25rem;
  }
}

/* Category Title styling in Stat Cards */
.stat-category-title {
  font-size: clamp(2rem, 4.5vw, 2.9rem) !important;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.input-control.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

/* ==========================================================================
   23. ACCORDIONS, HERO PHOTO & STEPPER ENHANCEMENTS
   ========================================================================== */

/* Expandable Accordion for Regulations, Waiver & Map */
.accordion-wrapper {
  max-width: 900px;
  margin: 1.5rem auto;
}
.accordion-panel {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.accordion-panel:hover {
  border-color: var(--primary);
}
.accordion-header-btn {
  width: 100%;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}
.accordion-header-btn:hover {
  background: rgba(192, 148, 83, 0.08);
  color: var(--primary);
}
.accordion-body-content {
  display: none;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-dim);
}
.accordion-panel.open .accordion-body-content {
  display: block;
  animation: fadeIn 0.3s ease;
}
.accordion-panel.open .accordion-header-btn {
  color: var(--primary);
  background: rgba(192, 148, 83, 0.06);
}

/* Pulsing Prominent CTA Button */
.btn-cta-pulse {
  animation: pulseCta 2s infinite ease-in-out;
  font-size: 1.35rem !important;
  padding: 1.1rem 2.8rem !important;
  box-shadow: 0 0 25px rgba(192, 148, 83, 0.6) !important;
}
@keyframes pulseCta {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(192, 148, 83, 0.4);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 35px rgba(192, 148, 83, 0.8), 0 0 10px #fff;
  }
}

/* Hero Action Photo Container */
.hero-photo-container {
  max-width: 580px;
  margin: 1.5rem auto 2rem;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.hero-photo-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hero-photo-container:hover .hero-photo-img {
  transform: scale(1.03);
}
.hero-photo-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 12, 16, 0.85);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.35rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

/* Animated Floating Warrior/Gold Icons */
.icon-float {
  display: inline-block;
  animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Stepper UI fixes in registration */
.stepper-container {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.stepper-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: all 0.3s ease;
}
.stepper-step.active {
  border-color: var(--primary);
  color: #fff;
  background: rgba(192, 148, 83, 0.2);
  box-shadow: 0 0 15px rgba(192, 148, 83, 0.3);
}
.stepper-step.completed {
  border-color: var(--gold);
  color: var(--gold);
}
.stepper-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.stepper-step.active .stepper-step-num {
  background: var(--primary);
  color: #fff;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .stepper-container {
    gap: 0.35rem;
  }
  .stepper-step {
    padding: 0.4rem 0.55rem;
    font-size: 0.75rem;
    gap: 0.35rem;
  }
  .stepper-step-num {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }
  .form-wrapper {
    padding: 1.5rem 1rem !important;
  }
}

/* Print Stylesheet Overrides */
@media print {
  .navbar,
  .bottom-nav,
  .preloader,
  .sports-ticker,
  .hero-actions,
  .countdown-container,
  .theme-switch-btn,
  .footer {
    display: none !important;
  }
}


