/* ================================================================
   BETFJC - Luxury Sports Analytics & Predictive Intelligence
   Stylesheet: main.css
   ================================================================ */

:root {
  --bg-dark: #060709;
  --bg-card: rgba(14, 18, 26, 0.85);
  --bg-card-hover: rgba(20, 26, 38, 0.95);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 183, 53, 0.35);
  
  --gold-primary: #F5B735;
  --gold-glow: rgba(245, 183, 53, 0.25);
  --gold-gradient: linear-gradient(135deg, #F5B735 0%, #FFA800 50%, #D48806 100%);
  
  --cyan-accent: #00E5FF;
  --green-win: #10B981;
  --red-loss: #EF4444;
  
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  
  --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;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
}

body {
  overflow-x: hidden;
  line-height: 1.5;
  background: radial-gradient(circle at 50% 0%, #111625 0%, #060709 75%);
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #060709;
}
::-webkit-scrollbar-thumb {
  background: #232936;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
  border-color: var(--border-gold);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 24px var(--gold-glow);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glowing Badges */
.badge-gold {
  background: rgba(245, 183, 53, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
}

.badge-cyan {
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid var(--cyan-accent);
  color: var(--cyan-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
}

/* Navigation Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 7, 9, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  border-radius: 10px;
  border: 1px solid var(--border-gold);
  object-fit: cover;
}

.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-evenly;
  margin: 0 16px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  position: relative;
  padding: 8px 6px;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

/* Nav Auth Slot & Football LOGIN Button */
.nav-auth-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.football-login-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.football-pro-container {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7));
  transition: all 0.2s ease;
}

.football-login-btn:hover .football-pro-container {
  transform: translateY(-1.5px);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 14px rgba(245, 183, 53, 0.45));
}

.football-login-btn:active .football-pro-container {
  transform: translateY(1px);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
}

.football-login-text {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  user-select: none;
}

/* ================================================================
   HERO & QUARTERBACK SCROLL ANIMATION SYSTEM
   ================================================================ */

.hero-scroll-wrapper {
  position: relative;
  height: 260vh; /* Provides plenty of scroll distance for the 4 phases */
}

.hero-sticky-stage {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Photo Layers */
.qb-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease, transform 0.1s linear;
  will-change: opacity, transform;
}

.qb-layer-snap {
  background-image: url('../img/qb-snap-hero.jpg');
  opacity: 1;
  transform: scale(1.02);
}

.qb-layer-launch {
  background-image: url('../img/qb-launch-throw.jpg');
  opacity: 0;
  transform: scale(1.05);
}

/* Stadium Lighting & Dark Gradient Overlay */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(6, 7, 9, 0.2) 0%, rgba(6, 7, 9, 0.85) 85%),
              linear-gradient(to bottom, rgba(6, 7, 9, 0.6) 0%, transparent 30%, rgba(6, 7, 9, 0.95) 95%);
  pointer-events: none;
}

/* Flying Football Layer */
.football-flight-container {
  position: absolute;
  pointer-events: none;
  z-index: 40;
  width: 140px;
  height: 84px;
  transform-origin: center center;
  opacity: 0;
  will-change: transform, opacity;
  filter: drop-shadow(0 0 20px rgba(245, 183, 53, 0.8));
}

.football-flight-container img, .football-flight-container svg {
  width: 100%;
  height: 100%;
}

/* Hero Foreground Content */
.hero-content-overlay {
  position: relative;
  z-index: 50;
  max-width: 1300px;
  width: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-headline-box {
  max-width: 650px;
}

.hero-subtag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Hero HUD Interactive Card (Unified with Site Game Boxes) */
.hero-hud-card {
  background: #080C14;
  border: 1.5px solid var(--border-gold);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 183, 53, 0.15);
  backdrop-filter: blur(20px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-hud-card .card-sec-top {
  padding: 16px 24px;
}

.hero-hud-card .card-sec-mid {
  background: #000000;
  padding: 24px 24px 20px 24px;
  flex: 1;
}

.hero-hud-card .card-sec-bottom {
  padding: 18px 24px 20px 24px;
}

.hero-hud-card .card-teams-duel {
  display: grid;
  grid-template-columns: 1fr 105px 1fr;
  align-items: center;
  margin-bottom: 18px;
  gap: 12px;
}

.hero-hud-card .duel-mid {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 10px 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.hud-prob-bar-container {
  margin-bottom: 0;
}

.hud-prob-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.hud-prob-bar {
  height: 10px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hud-prob-fill-left {
  background: var(--gold-gradient);
  height: 100%;
  transition: width 0.6s ease;
}

.hud-prob-fill-right {
  background: #3B82F6;
  height: 100%;
  transition: width 0.6s ease;
}

/* Scroll Prompt Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 60;
}

.scroll-indicator-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

/* ================================================================
   PAGE ROUTING & SECTION CONTAINERS
   ================================================================ */

.page-section {
  display: none;
  min-height: 80vh;
  padding: 100px 24px 80px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.page-section.active {
  display: block;
  animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.section-tag {
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ================================================================
   PREDICTIONS DASHBOARD
   ================================================================ */

.week-selector-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 4px;
  margin-bottom: 36px;
  scrollbar-width: thin;
}

.week-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.week-tab-btn:hover {
  background: rgba(245, 183, 53, 0.15);
  color: var(--gold-primary);
  border-color: var(--border-gold);
}

.week-tab-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 16px rgba(245, 183, 53, 0.4);
}

/* Matchup Grid */
.matchups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 24px;
}

@media (max-width: 640px) {
  .matchups-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   MULTI-COLOR SECTIONAL MATCHUP CARDS
   ================================================================ */

.matchup-card {
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0B0F17;
  border: 1.5px solid rgba(245, 183, 53, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75), 0 0 20px rgba(245, 183, 53, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.matchup-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.85), 0 0 32px rgba(245, 183, 53, 0.25);
}

/* Section 1: Top Metadata Header (Midnight Navy) */
.card-sec-top {
  background: linear-gradient(135deg, #152238 0%, #0F1829 100%);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-sec-top .meta-date-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Section 2: Middle Teams & Scores Duel (Solid Black) */
.card-sec-mid {
  background: #000000;
  padding: 24px 20px 20px 20px;
  flex: 1;
}

.card-teams-duel {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: center;
  margin-bottom: 20px;
}

.team-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.team-col-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.7));
}

.team-col-name {
  font-weight: 900;
  font-size: 1.25rem;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.team-col-city {
  font-size: 0.8rem;
  color: #94A3B8;
  font-weight: 500;
}

.team-col-score {
  font-size: 2rem;
  font-weight: 900;
  color: #FDE047;
  font-family: var(--font-mono);
  text-shadow: 0 2px 10px rgba(253, 224, 71, 0.3);
}

.team-col-winprob {
  font-size: 0.8rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  margin-top: 2px;
}

.team-col-winprob.favored {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.team-col-winprob.underdog {
  background: rgba(255, 255, 255, 0.05);
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Duel Middle Box (Centered Box with AT & EXP TOTAL - Pure White Background) */
.duel-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 8px 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.duel-mid-vs {
  font-size: 0.85rem;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: 0.08em;
}

.duel-mid-total-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #475569;
  font-weight: 800;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.duel-mid-total-val {
  font-size: 1.25rem;
  font-weight: 900;
  color: #0284C7;
  font-family: var(--font-mono);
  line-height: 1.1;
}

.duel-mid-conf {
  font-size: 0.68rem;
  color: #047857;
  font-weight: 800;
  margin-top: 1px;
}

/* Section 3: Bottom Divider & Strategic Insights (Deep Carbon & Bronze Accent) */
.card-sec-bottom {
  background: linear-gradient(180deg, #0E131E 0%, #080A10 100%);
  padding: 18px 20px 20px 20px;
  border-top: 1.5px solid rgba(245, 183, 53, 0.35);
}

.card-venue-row {
  font-size: 0.8rem;
  color: #CBD5E1;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.duel-edge-box {
  background: #05070C;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #F8FAFC;
  border-left: 4px solid var(--gold-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
  line-height: 1.5;
}

.duel-edge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 900;
  color: #F5B735;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

/* High Contrast CTA Button */
.btn-card-drilldown {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #F5B735 0%, #FFA800 50%, #D48806 100%);
  color: #000000;
  font-weight: 900;
  font-size: 0.85rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(245, 183, 53, 0.35);
  transition: all 0.2s ease;
}

.btn-card-drilldown:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 183, 53, 0.6);
  background: linear-gradient(135deg, #FFC44D 0%, #FFB51A 100%);
}

/* ================================================================
   GAME SCHEDULES PAGE
   ================================================================ */

.schedules-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 32px;
}

.filter-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.filter-select:focus {
  border-color: var(--gold-primary);
}

.schedule-table-wrap {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.schedule-table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  padding: 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.schedule-table tr:hover td {
  background: rgba(245, 183, 53, 0.03);
}

/* ================================================================
   AI MODELS / "THE MATH" PAGE
   ================================================================ */

.math-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.math-card {
  padding: 32px;
  position: relative;
}

.math-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(245, 183, 53, 0.15);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.math-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.math-formula-box {
  background: #030406;
  border: 1px solid rgba(245, 183, 53, 0.2);
  border-radius: 10px;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cyan-accent);
  margin: 16px 0;
  overflow-x: auto;
}

.disclaimer-banner {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 16px;
  padding: 24px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
}

.disclaimer-title {
  font-weight: 800;
  color: #F87171;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

/* ================================================================
   NFL POWER INDEX & SCATTER PLOT
   ================================================================ */

.power-rankings-table {
  width: 100%;
  border-collapse: collapse;
}

.power-rankings-table th {
  padding: 14px 18px;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.power-rankings-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 24px 30px 24px;
  background: #030406;
  margin-top: 80px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .hero-content-overlay {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none; /* Add mobile hamburger if needed */
  }
}

/* ================================================================
   MEMBER AUTHENTICATION MODAL & SIGNUP STYLES
   ================================================================ */

.auth-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 250;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-modal-overlay.active {
  display: flex !important;
}

.auth-card {
  max-width: 460px;
  width: 100%;
  background: #0B0F17;
  border: 1.5px solid var(--border-gold);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(245, 183, 53, 0.2);
  position: relative;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #CBD5E1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.auth-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  border-color: #EF4444;
}

.auth-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-tab-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  color: #94A3B8;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab-btn.active {
  background: var(--gold-gradient);
  color: #000000;
  box-shadow: 0 2px 10px rgba(245, 183, 53, 0.35);
}

.auth-form-group {
  margin-bottom: 20px;
}

.auth-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #CBD5E1;
  margin-bottom: 8px;
}

.auth-input {
  width: 100%;
  padding: 12px 16px;
  background: #141B29;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(245, 183, 53, 0.25);
  background: #172032;
}

.auth-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold-gradient);
  color: #000000;
  border: none;
  border-radius: 10px;
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(245, 183, 53, 0.4);
  transition: all 0.2s ease;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 183, 53, 0.6);
}

.auth-alert {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.auth-alert.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #EF4444;
  color: #FCA5A5;
}

.auth-alert.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10B981;
  color: #6EE7B7;
}

/* ================================================================
   FOOTBALL MEMBERS LANDING PAGE ("COMING SOON")
   ================================================================ */

.members-gridiron-stage {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 25%, #0B2414 0%, #06150B 50%, #020704 100%);
  border: 2px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 36px rgba(245, 183, 53, 0.15);
  padding: 50px 32px;
  text-align: center;
  margin-bottom: 50px;
}

/* Field Yardlines Texture Overlay */
.gridiron-lines-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(90deg, 
      transparent 0, 
      transparent calc(10% - 1px), 
      rgba(255, 255, 255, 0.08) calc(10% - 1px), 
      rgba(255, 255, 255, 0.08) 10%
    );
  pointer-events: none;
}

/* 50 Yardline Glowing Center */
.gridiron-lines-overlay::before {
  content: '5 0';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.3em;
}

.members-content-box {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.members-vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 183, 53, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 0 16px rgba(245, 183, 53, 0.3);
}

.members-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.members-coming-soon-banner {
  display: inline-block;
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
  margin-bottom: 24px;
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(1); box-shadow: 0 0 12px rgba(239, 68, 68, 0.4); }
  50% { transform: scale(1.03); box-shadow: 0 0 24px rgba(239, 68, 68, 0.8); }
  100% { transform: scale(1); box-shadow: 0 0 12px rgba(239, 68, 68, 0.4); }
}

/* Kickoff Countdown Boxes */
.kickoff-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 520px;
  margin: 32px auto;
}

.countdown-box {
  background: rgba(11, 15, 23, 0.85);
  border: 1.5px solid var(--border-gold);
  border-radius: 12px;
  padding: 16px 8px;
  backdrop-filter: blur(10px);
}

.countdown-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-primary);
  font-family: var(--font-mono);
  line-height: 1;
}

.countdown-lbl {
  font-size: 0.7rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 6px;
}

/* Roadmap Grid Cards */
.members-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}

.roadmap-card {
  background: rgba(14, 19, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: all 0.25s ease;
}

.roadmap-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.roadmap-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245, 183, 53, 0.12);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
