:root{
  --bg:#07090d;
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.14);
  --gold:#f4c542;
  --brown:#8b5a00;
  --green:#14d07e;
  --paper:#f6f7fb;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}

/* HEADER */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px clamp(18px,4vw,56px);
  background:linear-gradient(180deg,rgba(0,0,0,.62),rgba(0,0,0,0));
  transition:all .25s ease;
}

.site-header.solid{
  position:sticky;
  background:#090d14;
  border-bottom:1px solid var(--line);
}

.site-header.scrolled{
  padding-top:10px;
  padding-bottom:10px;
  background:rgba(7,9,13,.82);
  backdrop-filter:blur(12px);
}

.brand{
  font-weight:900;
  font-size:23px;
  letter-spacing:-.7px;
}

.brand span{color:var(--gold)}

.brand-logo img{
  width:120px;
  height:auto;
  display:block;
  transition:all .25s ease;
}

.site-header.scrolled .brand-logo img{
  width:82px;
}

.nav{
  display:flex;
  gap:24px;
  font-size:14px;
  font-weight:700;
  color:var(--muted);
}

.nav a:hover{color:white}

/* HERO */
.hero{
  position:relative;
  min-height:100svh;
  display:grid;
  place-items:center;
  text-align:center;
  overflow:hidden;
  padding:110px 20px 125px;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:url('assets/stadium-hero.jpeg') center/cover no-repeat;
  transform:scale(1.02);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center,rgba(0,0,0,.04),rgba(0,0,0,.58) 64%,#07090d 100%),
    linear-gradient(180deg,rgba(0,0,0,0),rgba(7,9,13,.84) 100%);
}

.hero-content{
  position:relative;
  max-width:980px;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:900;
  color:var(--gold);
  margin:0 0 16px;
}

.eyebrow.dark{color:var(--brown)}

.hero h1{
  font-size:clamp(48px,8vw,104px);
  line-height:.92;
  margin:0 0 22px;
  letter-spacing:-.07em;
  text-wrap:balance;
}

.subtitle{
  font-size:clamp(17px,2vw,25px);
  line-height:1.35;
  color:var(--muted);
  max-width:760px;
  margin:0 auto 30px;
}

.subtitle.dark{color:#465064}

.hero-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:15px 25px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
  border:1px solid transparent;
  transition:.2s transform,.2s opacity,.2s background;
}

.btn:hover{transform:translateY(-2px)}

.btn.primary{
  background:var(--gold);
  color:#111;
}

.btn.ghost{
  border-color:var(--line);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
}

.dark-ghost{
  color:#111;
  border-color:#d7dce7;
  background:#f3f5f9;
}

/* COUNTDOWN */
.countdown{
  display:grid;
  grid-template-columns:repeat(4,minmax(70px,1fr));
  gap:10px;
  max-width:500px;
  margin:30px auto 12px;
}

.countdown div{
  border:1px solid var(--line);
  background:rgba(255,255,255,.08);
  border-radius:18px;
  padding:13px 10px;
  backdrop-filter:blur(10px);
}

.countdown strong{
  display:block;
  font-size:27px;
}

.countdown span{
  font-size:11px;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:800;
}

.microcopy{
  font-size:13px;
  color:var(--muted);
  font-weight:700;
}

.microcopy.dark{color:#697386}

/* STATS */
.stats-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#090d14;
}

.stats-strip div{
  padding:22px 18px;
  text-align:center;
  border-right:1px solid var(--line);
}

.stats-strip div:last-child{border-right:0}

.stats-strip strong{
  display:block;
  font-size:28px;
  color:var(--gold);
}

.stats-strip span{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}

.hero-stats{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
}

/* GENERAL SECTIONS */
.section{
  padding:70px clamp(18px,5vw,80px);
  background:var(--paper);
  color:#111;
}

.section-head{
  max-width:820px;
  margin:0 auto 30px;
  text-align:center;
}

.section h2{
  font-size:clamp(34px,5vw,62px);
  line-height:1;
  margin:0 0 14px;
  letter-spacing:-.055em;
}

.section p{
  color:#465064;
  line-height:1.55;
}

/* RANKING */
#ranking{
  scroll-margin-top:100px;
}

.ranking-card{
    max-width:980px;
    margin:auto;
    background:#fff;
    border-radius:28px;
    box-shadow:0 20px 80px rgba(0,0,0,.11);
    overflow:hidden;
}

.ranking-list{
    margin:0;
    padding:0;
    list-style:none;
}

.ranking-list li{
    display:grid;
    grid-template-columns:46px 1fr 88px 88px 82px;
    align-items:center;
    gap:12px;
    padding:12px 20px;
    border-bottom:1px solid #edf0f5;
    font-weight:900;
}

.ranking-list li:last-child{
    border-bottom:0;
}

.rank{
    width:30px;
    height:30px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:#111;
    color:#fff;
    font-size:14px;
}

.club-line{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
}

.club{
    font-size:15px;
    line-height:1.1;
}

.ranking-stats{
    text-align:right;
}

.ranking-stats strong{
    display:block;
    font-size:16px;
    color:#111;
    line-height:1;
}

.ranking-stats small{
    display:block;
    font-size:8px;
    color:#778094;
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-top:2px;
}

.mini-icon{
    width:32px;
    height:32px;
    object-fit:contain;
    margin-right:8px;
}

/* CLUBS SECTION */
#clubs{
  scroll-margin-top:110px;
}

.clubs-section{
  min-height:100svh;
  padding:110px clamp(18px,5vw,80px) 72px;
  overflow:hidden;
}

.clubs-section .section-head{
  max-width:940px;
  margin:0 auto 30px;
  text-align:center;
}

.clubs-section .eyebrow.dark{
  color:var(--brown) !important;
  margin:0 0 16px;
  font-size:11px;
  line-height:1;
  letter-spacing:.24em;
  font-weight:900;
}

.clubs-section h2{
  font-size:clamp(36px,4.1vw,56px);
  line-height:.98;
  margin:0 0 14px;
  letter-spacing:-.055em;
}

.clubs-section .section-head p{
  margin:0;
  font-size:13px;
  line-height:1.35;
  color:#465064;
}

.clubs-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px 14px;
  max-width:1160px;
  width:100%;
  margin:0 auto;
}

.club-tile{
  display:flex;
  align-items:center;
  gap:11px;
  min-height:66px;
  background:#111824;
  color:white;
  border-radius:15px;
  padding:8px 12px;
  text-align:left;
  border:1px solid rgba(255,255,255,.08);
  transition:.2s;
}

.club-tile:hover{
  background:var(--gold);
  color:#111;
  transform:translateY(-2px);
}

.club-tile:hover small{color:rgba(0,0,0,.62)}

.club-tile .club-icon{
  width:50px;
  height:50px;
  object-fit:contain;
  margin:0;
  flex:0 0 auto;
}

.club-name{
  display:block;
  font-weight:900;
  line-height:1.03;
  font-size:14px;
  flex:1;
}

.club-tile small{
  display:block;
  color:rgba(255,255,255,.55);
  font-size:8px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-left:auto;
}

/* ABOUT */
#about{
  scroll-margin-top:0px;
}

.about-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:start;
  padding-bottom:40px;
}

.about-card,
.steps div,
.club-hero-card,
.success-card{
  background:white;
  border-radius:30px;
  padding:36px;
  box-shadow:0 20px 80px rgba(0,0,0,.1);
}

.steps{
  display:grid;
  gap:16px;
}

.steps strong{
  display:inline-grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:50%;
  background:#111;
  color:var(--gold);
  margin-bottom:10px;
}

.steps h3{
  margin:0;
  font-size:22px;
}


/* FOOTER */
.footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  width:100%;
  padding:30px clamp(18px,4vw,56px);
  color:var(--muted);
  border-top:1px solid var(--line);
  background:#090d14;
}

.footer strong{
  color:white;
  font-weight:900;
}

.footer span{
  color:var(--muted);
  text-align:right;
}

/* CLUB PAGE */
.club-page{
  height:100svh;
  min-height:100svh;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:
    radial-gradient(circle at center,rgba(0,0,0,.02),rgba(0,0,0,.46) 62%,#07090d 100%),
    linear-gradient(180deg,rgba(0,0,0,.05),rgba(7,9,13,.72) 100%),
    url('assets/stadium-hero.jpeg') center/cover no-repeat;
}

.club-header{
  position:relative;
  flex:0 0 86px;
  height:86px;
  min-height:86px;
  padding:10px clamp(18px,4vw,56px);
  background:rgba(9,13,20,.88);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.club-header .brand-logo img{
  width:86px;
  height:auto;
  display:block;
}

.club-main{
  flex:1 1 auto;
  min-height:0;
  display:grid;
  place-items:center;
  padding:6px 20px 8px;
  background:transparent;
}

.club-choice-layout{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:44px;
  width:100%;
  max-width:980px;
  margin:0 auto;
  transform:translateY(-42px);
}

.club-hero-card{
  width:100%;
  max-width:880px;
  min-height:330px;
  text-align:center;
  color:#111;
  padding:22px 48px 26px;
  display:flex;
  flex-direction:column;
  justify-content:center;

  background:rgba(255,255,255,.42);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.28);
  border-radius:30px;
  box-shadow:0 22px 70px rgba(0,0,0,.24);
}

.club-logo{
  width:70px;
  margin:0 auto 6px;
}

.club-logo img{
  width:100%;
  height:auto;
  display:block;
}

.club-hero-card .eyebrow{
  font-size:11px;
  letter-spacing:3px;
  margin-bottom:10px;
  color:var(--brown);
}

.club-hero-card h1{
  font-size:clamp(56px,5.4vw,78px);
  font-weight:900;
  line-height:.92;
  letter-spacing:-.06em;
  margin:0 0 8px;
}

.club-note{
  color:#697386;
  font-weight:900;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.08em;
  margin:0 0 12px;
}

.club-hero-card .subtitle{
  font-size:18px;
  line-height:1.25;
  margin:0 auto 18px;
  max-width:560px;
  color:#465064;
}

.club-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin:0 auto;
  max-width:760px;
  width:100%;
}

.club-stats div{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,215,0,.45);
  border-radius:15px;
  padding:13px 10px;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  box-shadow:
    0 0 16px rgba(255,215,0,.24),
    0 10px 28px rgba(0,0,0,.18);
}

.club-stats strong{
  display:block;
  font-size:34px;
  font-weight:900;
  line-height:1;
  color:#ffd700;
}

.club-stats span{
  display:block;
  margin-top:5px;
  font-size:10px;
  color:#fff4a3;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.choice-options-side{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  width:100%;
  max-width:720px;
}

.choice-option{
  min-height:118px;
  display:grid;
  align-content:center;
  background:rgba(255,255,255,.74);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.38);
  box-shadow:0 8px 25px rgba(0,0,0,.16);
  color:#111;
  border-radius:24px;
  padding:24px;
  transition:.25s;
}

.choice-option:hover{
  transform:translateY(-4px) scale(1.02);
  background:rgba(255,255,255,.88);
}

.choice-option.premium{
  background:linear-gradient(135deg,#ffd700 0%,#ffea4d 28%,#fff47a 48%,#ffd700 70%,#f4b400 100%);
  border:2px solid #ffe76a;
  box-shadow:
    0 0 18px rgba(255,215,0,.75),
    0 0 45px rgba(255,215,0,.45),
    0 15px 35px rgba(0,0,0,.25);
  animation:pulseGold 2.6s infinite;
}

.choice-option.premium:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:
    0 0 30px rgba(255,215,0,.95),
    0 0 68px rgba(255,215,0,.72),
    0 20px 50px rgba(0,0,0,.30);
}

@keyframes pulseGold{
  0%{
    box-shadow:
      0 0 14px rgba(255,215,0,.48),
      0 0 34px rgba(255,215,0,.28),
      0 15px 35px rgba(0,0,0,.22);
  }
  50%{
    box-shadow:
      0 0 30px rgba(255,215,0,.90),
      0 0 70px rgba(255,215,0,.62),
      0 20px 50px rgba(0,0,0,.28);
  }
  100%{
    box-shadow:
      0 0 14px rgba(255,215,0,.48),
      0 0 34px rgba(255,215,0,.28),
      0 15px 35px rgba(0,0,0,.22);
  }
}

.choice-label{
  display:block;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:10px;
}

.choice-option strong{
  display:block;
  font-size:24px;
  line-height:1.08;
  margin-bottom:8px;
}

.choice-option small{
  display:block;
  font-size:13px;
  color:#465064;
  line-height:1.35;
}

.club-footer{
  flex:0 0 58px;
  height:58px;
  min-height:58px;
  padding:16px clamp(18px,4vw,56px);
  border-top:1px solid var(--line);
  background:#090d14;
}

@media(max-width:900px){
  .club-page{
    height:auto;
    overflow:auto;
  }

  .club-header{
    flex:auto;
    height:auto;
    min-height:0;
  }

  .club-choice-layout{
    gap:22px;
    transform:none;
  }

  .club-hero-card{
    max-width:620px;
    min-height:auto;
  }

  .choice-options-side{
    grid-template-columns:1fr;
    max-width:620px;
  }

  .club-main{
    padding:40px 20px;
  }
}


/* RESPONSIVE */
@media(max-width:1000px){
  .ranking-list li{
    grid-template-columns:42px 1fr;
  }

  .ranking-stats{
    display:none;
  }
}

@media(max-width:900px){
  .clubs-section{
    min-height:auto;
    padding-top:55px;
    padding-bottom:55px;
  }

  .clubs-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .club-tile{
    min-height:76px;
  }
}

@media(max-width:800px){
  .nav{display:none}
  .hero{min-height:92svh}
  .countdown{grid-template-columns:repeat(2,1fr)}
  .stats-strip{grid-template-columns:repeat(2,1fr)}
  .about-section{grid-template-columns:1fr}
  .footer{flex-direction:column;text-align:center}
  .footer span{text-align:center}
  .club-stats{grid-template-columns:1fr}
}

@media(max-width:560px){
  .clubs-grid{grid-template-columns:1fr}

  .ranking-list li{
    grid-template-columns:42px 1fr;
    padding:18px 14px;
  }

  .mini-icon{display:none}
  .club-tile{min-height:82px}
}

@media(max-width:480px){
  .hero h1{font-size:44px}
  .btn{width:100%}
  .stats-strip{grid-template-columns:1fr}

  .stats-strip div{
    border-right:0;
    border-bottom:1px solid var(--line);
  }
}
