:root{
  --bg:#12100e;
  --bg-soft:#1a1714;
  --panel:#211d19;
  --panel-2:#29231e;
  --text:#fff8ef;
  --muted:#bdb2a6;
  --orange:#f28a3b;
  --orange-light:#ffb46f;
  --cream:#f7e6cf;
  --line:rgba(255,255,255,.09);
  --shadow:0 24px 70px rgba(0,0,0,.35);
  --radius:28px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 75% 12%,rgba(242,138,59,.14),transparent 32rem),
    radial-gradient(circle at 12% 45%,rgba(255,180,111,.07),transparent 28rem),
    var(--bg);
  font:16px/1.6 Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font:inherit}
.wrap{width:min(calc(100% - 40px),var(--max));margin-inline:auto}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(18px);
  background:rgba(18,16,14,.78);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:13px;
  font-weight:900;
  letter-spacing:.08em;
}
.brand-mark{
  width:44px;
  height:44px;
  border-radius:50%;
  overflow:hidden;
  background:linear-gradient(145deg,var(--orange-light),var(--orange));
  box-shadow:0 8px 26px rgba(242,138,59,.22);
}
.brand-mark img{width:100%;height:100%;object-fit:cover}
.brand small{
  display:block;
  color:var(--orange-light);
  font-size:.66rem;
  letter-spacing:.25em;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  color:var(--muted);
  font-weight:700;
}
.nav-links a:hover{color:var(--text)}
.nav-cta{
  padding:11px 17px;
  border-radius:999px;
  background:var(--cream);
  color:#201812!important;
}
.menu-btn{
  display:none;
  background:none;
  border:0;
  color:var(--text);
  font-size:1.5rem;
  cursor:pointer;
}

.hero-section{padding:0}
.hero{
  min-height:720px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  align-items:center;
  gap:58px;
  padding:86px 0 72px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--orange-light);
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.78rem;
}
.eyebrow::before{content:"";width:30px;height:2px;background:var(--orange)}
h1{
  margin:18px 0 20px;
  font-size:clamp(3.5rem,8vw,7.7rem);
  line-height:.88;
  letter-spacing:-.075em;
  max-width:820px;
}
h1 span{display:block;color:var(--orange)}
.hero-copy{
  max-width:650px;
  color:var(--muted);
  font-size:clamp(1.05rem,1.8vw,1.25rem);
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:34px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 23px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:900;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg,var(--orange-light),var(--orange));
  color:#20130a;
  border-color:transparent;
  box-shadow:0 14px 38px rgba(242,138,59,.18);
}
.btn-secondary{background:rgba(255,255,255,.035)}
.hero-card{
  position:relative;
  min-height:520px;
  border:1px solid var(--line);
  border-radius:42px;
  overflow:hidden;
  background:linear-gradient(145deg,#33271e,#171411);
  box-shadow:var(--shadow);
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:18px;
  z-index:2;
  border:1px solid rgba(255,255,255,.12);
  border-radius:30px;
  pointer-events:none;
}
.hero-photo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(14,12,10,.98),rgba(14,12,10,.06) 68%);
}
.card-caption{
  position:absolute;
  z-index:3;
  left:32px;
  right:32px;
  bottom:30px;
}
.card-caption p{margin:0;color:var(--orange-light);font-weight:800}
.card-caption h2{font-size:2rem;line-height:1.1;margin:5px 0 0}

.ticker{
  position:relative;
  width:100%;
  overflow:hidden;
  border-block:1px solid var(--line);
  background:rgba(255,255,255,.018);
}

.ticker-track{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-width:max-content;
  white-space:nowrap;
  padding:16px 0;
  color:var(--muted);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  will-change:transform;
  animation:ticker-scroll 32s linear infinite;
}

.ticker-track:hover{
  animation-play-state:paused;
}

.ticker-item{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}

.ticker-separator{
  color:var(--orange);
  padding:0 20px;
}

@keyframes ticker-scroll{
  0%{
    transform:translateX(100vw);
  }
  100%{
    transform:translateX(-100%);
  }
}

to{transform:translateX(-50%)}
}

section{padding:100px 0}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:38px;
}
.section-head h2,
.schedule-copy h2,
.about-panel h2,
.contact-panel h2{
  font-size:clamp(2.3rem,5vw,4.3rem);
  line-height:1;
  margin:10px 0 0;
  letter-spacing:-.05em;
}
.section-head p{max-width:510px;color:var(--muted);margin:0}

.ad-section{padding:46px 0}
.ad-section-small{padding-top:0}
.ad-slot{
  position:relative;
  display:grid;
  place-items:center;
  width:100%;
  overflow:hidden;
  border:1px dashed rgba(255,255,255,.18);
  border-radius:22px;
  background:rgba(255,255,255,.025);
  text-align:center;
}
.ad-wide{min-height:250px}
.ad-banner{min-height:90px}
.ad-label{
  position:absolute;
  top:10px;
  left:14px;
  color:var(--muted);
  font-size:.68rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.ad-content{padding:34px 20px;color:var(--muted)}
.ad-content strong{display:block;color:var(--text);font-size:1.1rem}
.ad-content p{margin:3px 0 0}
.ad-content img{max-width:100%;height:auto;margin:auto}

.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.content-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
  box-shadow:var(--shadow);
  transition:.2s ease;
}
.content-card:hover{transform:translateY(-5px);border-color:rgba(242,138,59,.35)}
.thumb{
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
  background:
    radial-gradient(circle at 65% 25%,rgba(242,138,59,.28),transparent 35%),
    linear-gradient(145deg,#30251d,#191512);
}
.thumb img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
.content-card:hover .thumb img{transform:scale(1.035)}
.play-icon{
  position:absolute;
  inset:50% auto auto 50%;
  transform:translate(-50%,-50%);
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(18,16,14,.8);
  border:1px solid rgba(255,255,255,.2);
  font-size:1.2rem;
}
.content-body{padding:24px}
.tag{
  color:var(--orange-light);
  font-size:.75rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.content-body h3{font-size:1.4rem;line-height:1.25;margin:8px 0}
.content-body p{color:var(--muted);margin:0}

.video-message{
  grid-column:1/-1;
  min-height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:32px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.025);
  color:var(--muted);
  text-align:center;
}
.video-message a{color:var(--orange-light);font-weight:800}
.video-error{flex-direction:column}
.loader{
  width:22px;
  height:22px;
  border:3px solid rgba(255,255,255,.15);
  border-top-color:var(--orange);
  border-radius:50%;
  animation:spin .8s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

.schedule{
  display:block;
}

.schedule-copy{
  max-width:none;
  margin-bottom:48px;
}

.schedule-copy p{
  color:var(--muted);
  max-width:620px;
  margin-bottom:26px;
}

.schedule-list{
  width:100%;
  border-top:1px solid var(--line);
}
.schedule-row{
  display:grid;
  grid-template-columns:120px 1fr auto;
  gap:18px;
  padding:24px 0;
  border-bottom:1px solid var(--line);
  align-items:center;
}
.schedule-row .day{color:var(--orange-light);font-weight:900}
.schedule-row .game{font-weight:850;font-size:1.1rem}
.schedule-row .time{color:var(--muted)}

.schedule-row .game small{
  display:block;
  margin-top:3px;
  color:var(--muted);
  font-size:.82rem;
  font-weight:600;
}
.schedule-message{
  min-height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:28px;
  color:var(--muted);
  text-align:center;
  border-bottom:1px solid var(--line);
}
.schedule-message a{
  color:var(--orange-light);
  font-weight:800;
}
.schedule-error{display:block}


.about-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
}
.about-panel,
.quote-panel,
.contact-panel{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
  box-shadow:var(--shadow);
}
.about-panel{padding:42px}
.about-panel p{max-width:690px;color:var(--muted)}
.quote-panel{
  min-height:390px;
  padding:42px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.quote-panel>span{
  color:var(--orange);
  font-size:6rem;
  line-height:.5;
}
.quote-panel blockquote{
  margin:22px 0 0;
  font-size:clamp(1.7rem,3vw,2.6rem);
  font-weight:900;
  line-height:1.14;
}

.socials{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
.social-card{
  min-height:145px;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
  box-shadow:var(--shadow);
  transition:.2s ease;
}
.social-card:hover{transform:translateY(-4px);background:var(--panel-2)}
.social-card b{font-size:1.15rem}
.social-card span{color:var(--muted);font-size:.85rem}

.contact-section{padding-top:30px}
.contact-panel{
  padding:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.contact-panel p{color:var(--muted);max-width:650px;margin-bottom:0}

footer{padding:36px 0 54px;border-top:1px solid var(--line)}
.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  color:var(--muted);
}
.footer-row strong{color:var(--text)}

@media (max-width:900px){
  .nav-links{
    display:none;
    position:absolute;
    top:78px;
    left:20px;
    right:20px;
    padding:20px;
    flex-direction:column;
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:18px;
  }
  .nav-links.open{display:flex}
  .menu-btn{display:block}
  .hero{grid-template-columns:1fr;padding-top:62px}
  .hero-card{min-height:460px}
  .cards{grid-template-columns:1fr 1fr}
  .about-grid{grid-template-columns:1fr}
  .socials{grid-template-columns:1fr 1fr}
  .contact-panel{align-items:flex-start;flex-direction:column}
}
@media (max-width:600px){
  .wrap{width:min(calc(100% - 26px),var(--max))}
  section{padding:76px 0}
  h1{font-size:3.7rem}
  .hero{min-height:auto;gap:38px}
  .hero-card{min-height:390px}
  .cards{grid-template-columns:1fr}
  .section-head{display:block}
  .section-head p{margin-top:16px}
  .schedule-row{grid-template-columns:78px 1fr}
  .schedule-row .time{grid-column:2}
  .socials{grid-template-columns:1fr}
  .footer-row{align-items:flex-start;flex-direction:column}
  .ad-wide{min-height:180px}
}
