:root {
  --green:#00b373;
  --green-dark:#004d32;
  --green-neon:#00ff88;
  --game-accent:#00b373;
  --game-glow:rgba(0,255,136,.35);
  --game-art:none;
  --bg:#050505;
  --panel:rgba(15,15,20,.65);
  --text-main:#e6eef0;
  --text-muted:#9aa0a6;
  --border:rgba(255,255,255,.08);
  --font-body:'Inter',ui-sans-serif,system-ui,sans-serif;
  --font-heading:'Orbitron',sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;scroll-behavior:smooth}
html{scroll-padding-top:6rem}
body{
  display:flex;
  min-height:100vh;
  overflow-x:hidden;
  flex-direction:column;
  color:var(--text-main);
  background:
    linear-gradient(rgba(0,255,136,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,255,136,.035) 1px,transparent 1px),
    radial-gradient(circle at 78% 18%,var(--game-glow),transparent 30%);
  background-color:var(--bg);
  background-size:30px 30px,30px 30px,100% 100%;
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
}

main{position:relative;z-index:10;flex:1}
h1,h2,h3,.hero-title,.roster-title{font-family:var(--font-heading)}
a{color:inherit}

.hero{
  position:relative;
  height:100vh;
  min-height:44rem;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.parallax-bg{
  position:absolute;
  inset:0;
  z-index:0;
  background-image:var(--game-art);
  background-position:center;
  background-size:cover;
  filter:saturate(.9) brightness(.6);
  transform:scale(1.02);
  will-change:transform;
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(110deg,var(--game-glow),transparent 38%),
    radial-gradient(circle at center,rgba(0,0,0,.28),#000 88%);
}

.hero-stack{
  position:relative;
  z-index:5;
  max-width:1000px;
  margin-top:80px;
  padding:20px;
  text-align:center;
}

.hero-sub{
  margin-bottom:15px;
  color:var(--green-neon);
  font-weight:800;
  letter-spacing:4px;
  text-transform:uppercase;
}

.hero-title{
  margin:0;
  color:#fff;
  font-size:clamp(3rem,7vw,6rem);
  font-style:italic;
  font-weight:900;
  line-height:1.05;
  text-shadow:0 10px 40px rgba(0,0,0,.8);
  text-transform:uppercase;
}

.hero-tag{
  max-width:700px;
  margin:20px auto 0;
  color:#ddd;
  font-size:1.2rem;
}

.scroll-cue{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:60px;
  border:0;
  color:rgba(255,255,255,.58);
  background:transparent;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  cursor:pointer;
  animation:bounce 2s infinite;
}

@keyframes bounce{
  0%,20%,50%,80%,100%{transform:translateY(0)}
  40%{transform:translateY(-8px)}
  60%{transform:translateY(-4px)}
}

.section{
  max-width:1200px;
  margin:0 auto;
  padding:80px 20px;
}

.section-header{margin-bottom:0}
.roster-title{
  margin-bottom:40px;
  padding-left:20px;
  border-left:5px solid var(--green);
  color:#fff;
  font-size:2rem;
  font-style:italic;
  font-weight:900;
  text-transform:uppercase;
}
.section-header .roster-title,.roster-band .roster-title{
  padding:0;
  border:0;
  text-align:center;
}

.game-intro{
  max-width:1200px;
  margin:0 auto;
  padding:90px 20px 55px;
  text-align:center;
}
.intro-kicker{
  color:var(--game-accent);
  font-family:var(--font-heading);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.24em;
  text-transform:uppercase;
}
.intro-title{
  margin:14px 0 18px;
  padding:0;
  border:0;
  font-size:clamp(2.2rem,5vw,4rem);
  font-style:italic;
  font-weight:900;
  line-height:1;
  text-align:center;
  text-transform:uppercase;
}
.intro-copy{
  max-width:760px;
  margin:0 auto;
  color:var(--text-muted);
  font-size:1.05rem;
  line-height:1.75;
}
.game-stat-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  max-width:900px;
  margin:38px auto 0;
  overflow:hidden;
  border:1px solid var(--border);
  background:rgba(8,8,10,.86);
  clip-path:polygon(18px 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%,0 18px);
}
.game-stat{
  padding:18px 14px;
  border-right:1px solid var(--border);
}
.game-stat:last-child{border-right:0}
.game-stat span{display:block}
.stat-label{
  color:var(--text-muted);
  font-size:.68rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.stat-value{
  margin-top:5px;
  color:#fff;
  font-family:var(--font-heading);
  font-size:.9rem;
  text-transform:uppercase;
}

.match-center-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  width:100%;
  margin-top:20px;
}
.match-card{
  position:relative;
  min-height:240px;
  display:flex;
  overflow:hidden;
  flex-direction:column;
  justify-content:space-between;
  padding:24px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  background:rgba(20,20,20,.6);
  text-decoration:none;
  transition:all .3s cubic-bezier(.25,.46,.45,.94);
}
.match-card:hover{
  transform:translateY(-5px);
  border-color:var(--green);
  background:rgba(30,30,30,.8);
  box-shadow:0 10px 30px rgba(0,255,136,.1);
}
.match-label{
  display:block;
  margin-bottom:15px;
  color:var(--green);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
}
.team-row{display:flex;align-items:center;gap:15px;margin-bottom:10px}
.team-logo{width:45px;height:45px;object-fit:contain}
.vs-text{color:var(--text-muted);font-weight:800}
.match-title{margin:10px 0;color:#fff;font-size:1.4rem;font-weight:800;line-height:1.2}
.match-score{margin:5px 0;color:#fff;font-size:2.5rem;font-style:italic;font-weight:900;text-shadow:2px 2px 0 var(--green)}
.match-meta{margin-top:auto;color:rgba(255,255,255,.5);font-size:.9rem}

.roster-band{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:rgba(0,0,0,.4);
}
.roster-season{
  color:var(--green-neon);
  font-family:var(--font-heading);
  font-size:.9rem;
  letter-spacing:2px;
  text-transform:uppercase;
}
.roster-empty{
  max-width:760px;
  margin:42px auto 0;
  padding:48px 30px;
  border:1px solid rgba(255,255,255,.1);
  border-top:4px solid var(--green);
  border-radius:6px;
  background:#0e0e0e;
  text-align:center;
}
.roster-empty strong{
  display:block;
  color:#fff;
  font-family:var(--font-heading);
  font-size:clamp(1.4rem,3vw,2.1rem);
  text-transform:uppercase;
}
.roster-empty p{
  max-width:580px;
  margin:16px auto 0;
  color:var(--text-muted);
  line-height:1.7;
}
.roster-empty a{
  display:inline-flex;
  margin-top:24px;
  padding:11px 20px;
  border:1px solid var(--green);
  border-radius:4px;
  color:#fff;
  background:var(--green-dark);
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.08em;
  text-decoration:none;
  text-transform:uppercase;
}
.roster-empty a:hover{background:var(--green)}

.focus-section{
  max-width:1200px;
  margin:0 auto;
  padding:80px 20px 100px;
}
.focus-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.focus-card{
  position:relative;
  min-height:210px;
  overflow:hidden;
  padding:28px;
  border:1px solid var(--border);
  border-top:3px solid var(--game-accent);
  background:linear-gradient(145deg,rgba(20,20,24,.96),rgba(7,7,9,.96));
  clip-path:polygon(0 0,100% 0,100% calc(100% - 20px),calc(100% - 20px) 100%,0 100%);
  transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.focus-card:hover{transform:translateY(-6px);border-color:var(--game-accent);box-shadow:0 18px 40px var(--game-glow)}
.focus-number{color:var(--game-glow);font-family:var(--font-heading);font-size:3.5rem;font-weight:900;line-height:1}
.focus-title{margin:-8px 0 10px;color:#fff;font-family:var(--font-heading);font-size:1.05rem;text-transform:uppercase}
.focus-copy{margin:0;color:var(--text-muted);line-height:1.65}

.leagues-band{
  padding:80px 0;
  border-top:1px solid var(--border);
  background:#08080a;
}
.leagues-inner{max-width:1200px;margin:50px auto 0;padding:0 20px;text-align:center}
.leagues-inner h2{padding:0;border:0;text-align:center}
.league-grid{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:80px;margin-top:50px}
.league-card{display:flex;flex-direction:column;align-items:center;gap:15px}
.league-logo,.league-logo2{width:auto;height:120px;object-fit:contain;filter:opacity(.7);transition:.3s}
.league-logo:hover,.league-logo2:hover{filter:none;opacity:1;transform:scale(1.1)}
.league-day{color:var(--green-neon);font-family:var(--font-heading);letter-spacing:2px;text-transform:uppercase}
.seg-cta{display:flex;gap:0;overflow:hidden;border:1px solid rgba(255,255,255,.1);border-radius:4px;background:#1a1a1a}
.seg-cta a{padding:10px 20px;color:#ccc;font-size:.85rem;font-weight:700;text-decoration:none;text-transform:uppercase;transition:.2s}
.seg-cta a:hover{color:#fff;background:var(--green)}
.seg-cta a:first-child{border-right:1px solid rgba(255,255,255,.1)}
.divider{display:none;width:1px;height:120px;background:rgba(255,255,255,.1)}
footer{margin-top:auto;background:#000}

@media (min-width:768px){
  .divider{display:block}
}

@media (max-width:768px){
  .hero{height:auto;min-height:42rem}
  .hero-stack{margin-top:60px;padding:7rem 20px 4rem}
  .hero-stack>img{width:10rem;height:10rem;margin-bottom:1.25rem}
  .hero-sub{font-size:.72rem;letter-spacing:2px}
  .hero-title{font-size:clamp(2.65rem,13vw,4rem);line-height:1.05}
  .hero-tag{font-size:1rem;line-height:1.6}
  .scroll-cue{margin-top:38px}
  .parallax-bg{background-position:center;transform:none!important}
  .game-intro{padding:70px 20px 45px}
  .game-stat-strip,.focus-grid,.match-center-container{grid-template-columns:1fr}
  .game-stat{border-right:0;border-bottom:1px solid var(--border)}
  .game-stat:last-child{border-bottom:0}
  .section,.focus-section{padding:64px 18px}
  .match-card{min-height:200px}
  .roster-empty{padding:36px 20px}
  .focus-card{min-height:0}
  .league-grid{gap:50px}
  .league-logo,.league-logo2{max-width:240px;height:90px}
  .divider{display:none}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .scroll-cue{animation:none}
  .parallax-bg{transform:none!important}
  .match-card,.focus-card,.league-logo,.league-logo2{transition:none}
}
