
:root{
  --bg:#050505;
  --panel:#111;
  --panel2:#151515;
  --red:#ea3b18;
  --gold:#ffb347;
  --text:#fff;
  --muted:#d8d8d8;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:Montserrat,Arial,sans-serif;
  padding-bottom:80px;
}
img,video{display:block;max-width:100%}
a{color:inherit}

.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
}
.hero-video{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.88));
}
.nav{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  gap:20px;
  padding:18px 6vw;
  background:rgba(0,0,0,.42);
  backdrop-filter:blur(10px);
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  font-family:Oswald,sans-serif;
  text-transform:uppercase;
  font-size:1.7rem;
  font-weight:700;
}
.brand img{
  width:72px;height:72px;
  object-fit:contain;border-radius:50%;
}
.top-phone{
  background:var(--red);
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  white-space:nowrap;
}
.nav-links{
  margin-left:auto;
  display:flex;
  gap:20px;
  align-items:center;
}
.nav-links a{
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  font-size:.92rem;
}
.menu-toggle{display:none}

.hero-content{
  position:relative;
  z-index:2;
  min-height:calc(100vh - 108px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:50px 20px 70px;
}
.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.18em;
  margin-bottom:14px;
}
.hero h1{
  font-family:Oswald,sans-serif;
  font-size:clamp(4rem,9vw,8rem);
  line-height:.9;
  text-transform:uppercase;
}
.hero-copy{
  max-width:820px;
  margin:24px auto 34px;
  line-height:1.7;
  font-size:1.28rem;
}
.cta-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}
.cta-row.left{justify-content:flex-start}
.btn{
  min-height:54px;
  padding:0 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn.primary{background:var(--red)}
.btn.secondary{border:2px solid rgba(255,255,255,.85);background:rgba(255,255,255,.04)}

section{padding:74px 6vw}
.section-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 34px;
}
.left-head{text-align:left;max-width:none;margin:0}
.section-head h2,.fifa-strip h2,.footer-left h2{
  font-family:Oswald,sans-serif;
  text-transform:uppercase;
  font-size:clamp(2.4rem,5.5vw,4.6rem);
  line-height:1;
  margin-bottom:12px;
}
.section-head p:not(.eyebrow), .fifa-strip p:not(.eyebrow){
  color:var(--muted);
  line-height:1.75;
  font-size:1.05rem;
}

/* ALL picture cards same size */
.promo-grid,
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
}
.promo-card,
.card{
  background:var(--panel2);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.26);
}
.promo-card img,
.media-card img{
  width:100%;
  aspect-ratio:4 / 5;
  height:240px;
  object-fit:cover;
  object-position:center;
}
.promo-card .content,
.card .content{
  padding:20px;
}
.promo-card h3,
.card h3{
  font-family:Oswald,sans-serif;
  text-transform:uppercase;
  font-size:1.85rem;
  margin-bottom:8px;
}
.promo-card p,
.card p{
  color:var(--muted);
  line-height:1.7;
}
.text-card{
  min-height:340px;
  display:flex;
  align-items:center;
  background:linear-gradient(135deg,#171717,#0b0b0b);
}
.mini-link{
  display:inline-block;
  margin-top:12px;
  color:var(--gold);
  text-transform:uppercase;
  text-decoration:none;
  font-weight:900;
}

.reviews-section{background:#070707}
.reviews-shell{
  max-width:1100px;
  margin:0 auto;
  background:#111;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:24px;
}
.reviews-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}

.fifa-strip{
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  background:#090909;
}

.catering{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:30px;
  align-items:start;
  background:#080808;
}
.catering-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  background:var(--panel);
  padding:28px;
  border-radius:22px;
}
.catering-form input,.catering-form textarea{
  width:100%;
  padding:15px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.16);
  background:#050505;
  color:#fff;
  font:inherit;
}
.catering-form textarea,.catering-form button{grid-column:1/-1}

footer{
  display:flex;
  justify-content:space-between;
  gap:30px;
  padding:48px 6vw;
  background:#000;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-left p{
  color:var(--muted);
  line-height:1.7;
}
.footer-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-content:flex-start;
}
.footer-links a{
  text-decoration:none;
  background:#141414;
  padding:10px 13px;
  border-radius:999px;
  font-weight:800;
}
.sticky-order{
  position:fixed;
  right:18px;bottom:16px;
  z-index:20;
  background:var(--red);
  padding:16px 22px;
  border-radius:999px;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:900;
  box-shadow:0 14px 35px rgba(0,0,0,.45);
}

@media(max-width:980px){
  .nav{flex-wrap:wrap;padding:14px 18px}
  .brand{font-size:1.25rem}
  .brand img{width:58px;height:58px}
  .top-phone{order:3;width:100%;text-align:center}
  .menu-toggle{
    display:block;
    margin-left:auto;
    background:#191919;
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    border-radius:10px;
    padding:10px 13px;
    font-size:1.15rem;
  }
  .nav-links{
    display:none;
    width:100%;
    margin-left:0;
    flex-direction:column;
    gap:8px;
  }
  .nav-open .nav-links{display:flex}
  .nav-links a{
    text-align:center;
    background:#111;
    padding:13px;
    border-radius:10px;
  }
  .fifa-strip,
  .catering,
  .catering-form,
  footer{
    grid-template-columns:1fr;
  }
  section{padding:62px 20px}
  .promo-card img,
  .media-card img{
    height:220px;
  }
  .text-card{
    min-height:300px;
  }
  footer{padding-bottom:96px}
  .sticky-order{
    left:14px;right:14px;
    text-align:center;
    border-radius:14px;
  }
}
@media(max-width:560px){
  .hero h1{font-size:3.35rem}
  .hero-copy{font-size:1.05rem}
  .btn{width:100%}
  .promo-card img,
  .media-card img{
    height:210px;
  }
}


/* Keep floating order button */
.sticky-order{
  position:fixed !important;
  right:18px !important;
  bottom:16px !important;
  z-index:20 !important;
  background:#ea3b18 !important;
  padding:16px 22px !important;
  border-radius:999px !important;
  text-decoration:none !important;
  text-transform:uppercase !important;
  font-weight:900 !important;
  box-shadow:0 14px 35px rgba(0,0,0,.45) !important;
}

/* Reinforce hero video background */
.hero{
  min-height:100vh !important;
  position:relative !important;
  overflow:hidden !important;
}
.hero-video{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
  z-index:0 !important;
}
.hero-overlay{
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.88)) !important;
  z-index:1 !important;
}
.nav, .hero-content{
  position:relative !important;
  z-index:3 !important;
}

@media(max-width:980px){
  .sticky-order{
    left:14px !important;
    right:14px !important;
    text-align:center !important;
    border-radius:14px !important;
  }
}


/* Restore hero background video */
.hero{
  position:relative !important;
  min-height:100vh !important;
  overflow:hidden !important;
}
.hero-video{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
  z-index:0 !important;
}
.hero-overlay{
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.88)) !important;
  z-index:1 !important;
}
.nav, .hero-content{
  position:relative !important;
  z-index:3 !important;
}


/* Fix centered images and hero video */
.hero{
  position:relative !important;
  min-height:100vh !important;
  overflow:hidden !important;
}
.hero-video{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
  display:block !important;
  z-index:0 !important;
}
.hero-overlay{
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.88)) !important;
  z-index:1 !important;
}
.nav, .hero-content{
  position:relative !important;
  z-index:3 !important;
}

/* Center the marked images */
.promo-card img,
.media-card img{
  object-fit:cover !important;
  object-position:center center !important;
}

/* Keep cards aligned and same height */
.promo-grid,
.cards{
  align-items:start !important;
}
.promo-card,
.card{
  display:flex !important;
  flex-direction:column !important;
  height:100% !important;
}
.promo-card .content,
.card .content{
  flex:1 1 auto !important;
}

/* Make FIFA buttons stay compact without empty visual gap */
.fifa-strip{
  grid-template-columns:1fr auto !important;
  align-items:center !important;
}
.fifa-strip .cta-row{
  justify-content:flex-end !important;
}

@media(max-width:980px){
  .fifa-strip{
    grid-template-columns:1fr !important;
  }
  .fifa-strip .cta-row{
    justify-content:flex-start !important;
  }
}


/* Restored hero video from cinematic package */
.hero{
  position:relative !important;
  min-height:100vh !important;
  overflow:hidden !important;
  background:#000 !important;
}
.hero-video{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
  display:block !important;
  z-index:0 !important;
  opacity:1 !important;
  visibility:visible !important;
}
.hero-overlay{
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.86)) !important;
  z-index:1 !important;
}
.nav, .hero-content{
  position:relative !important;
  z-index:3 !important;
}


/* Final true image centering */
.promo-card,
.media-card{
  overflow:hidden !important;
}

.promo-card img,
.media-card img{
  width:100% !important;
  height:240px !important;
  object-fit:cover !important;
  object-position:50% 50% !important;
  display:block !important;
  margin:0 auto !important;
  transform:none !important;
}

@media(max-width:980px){
  .promo-card img,
  .media-card img{
    height:220px !important;
    object-position:50% 50% !important;
  }
}

@media(max-width:560px){
  .promo-card img,
  .media-card img{
    height:210px !important;
    object-position:50% 50% !important;
  }
}


/* Code-only mobile/Safari optimization with same layout */
.hero{
  background:#000 url('assets/pizza.webp') center center / cover no-repeat;
}
.hero-video{
  background:transparent;
}
.hero-copy{
  max-width:760px;
}
img[loading="lazy"]{
  content-visibility:auto;
}

@supports (-webkit-touch-callout: none) {
  .hero-video{
    object-position:center center !important;
  }
}


/* Combo images click through to SpotOn */
.promo-image-link{
  display:block;
}
.promo-image-link img{
  display:block;
}


/* Reliable clickable combo cards */
.promo-card-link{
  display:block !important;
  text-decoration:none !important;
  color:inherit !important;
  cursor:pointer !important;
}
.promo-card-link:hover{
  transform:translateY(-2px);
}


/* Catering form status message */
.form-status{
  margin-top:14px;
  font-weight:700;
}
.form-status.success{ color:#9be28f; }
.form-status.error{ color:#ff9b9b; }


.delivery-links{
  width:100%;
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.delivery-links span{
  color:#d8d8d8;
  font-weight:700;
}
.delivery-links a{
  text-decoration:none;
  background:#141414;
  padding:10px 13px;
  border-radius:999px;
  font-weight:800;
}


/* Delivery footer links styled to match footer pills */
.delivery-links{
  width:100%;
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:flex-start;
}

.delivery-links span{
  color:#d8d8d8;
  font-weight:700;
  margin-right:4px;
}

.delivery-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:999px;
  background:#141414;
  border:1px solid rgba(255,255,255,.08);
  color:#ffffff;
  text-decoration:none;
  font-weight:800;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}

.delivery-links a:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.18);
  background:#1b1b1b;
}

@media (max-width: 768px){
  .delivery-links{
    margin-top:16px;
  }
}


/* Exact footer match for delivery apps */
.delivery-note{
  color:#d8d8d8;
  font-weight:700;
  margin-top:18px;
  margin-bottom:10px;
}
.delivery-links-exact{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-content:flex-start;
}
.delivery-links-exact a{
  text-decoration:none;
  background:#141414;
  padding:10px 13px;
  border-radius:999px;
  font-weight:800;
  color:#fff;
}


/* Small icon-style badges for footer links */
.footer-links a,
.delivery-links-exact a{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.mini-badge{
  width:22px;
  height:22px;
  min-width:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#ffffff;
  font-size:10px;
  font-weight:900;
  line-height:1;
  letter-spacing:.02em;
}

@media (max-width: 640px){
  .mini-badge{
    width:20px;
    height:20px;
    min-width:20px;
    font-size:9px;
  }
}


/* Footer badges and labels cleanup */
.footer-links a,
.delivery-links-exact a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}

.link-label{
  display:inline-block;
  line-height:1;
}

.mini-badge{
  width:22px;
  height:22px;
  min-width:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:10px;
  font-weight:900;
  line-height:1;
  letter-spacing:.02em;
}

.badge-facebook{ background:#1877f2; }
.badge-instagram{ background:linear-gradient(135deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5); }
.badge-x{ background:#111; border-color:rgba(255,255,255,.22); }
.badge-youtube{ background:#ff0000; }
.badge-directions{ background:#34a853; }
.badge-menu{ background:#6b7280; }
.badge-review{ background:#f4b400; color:#111; }
.badge-uber{ background:#06c167; }
.badge-doordash{ background:#eb1700; }
.badge-grubhub{ background:#f63440; }

.delivery-note{
  color:#d8d8d8;
  font-weight:700;
  margin-top:18px;
  margin-bottom:10px;
}

@media (max-width: 640px){
  .mini-badge{
    width:20px;
    height:20px;
    min-width:20px;
    font-size:9px;
  }
}


/* Rebuilt footer pills with explicit spacing */
.footer-links-social,
.footer-links-delivery{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.delivery-note{
  color:#d8d8d8;
  font-weight:700;
  margin-top:18px;
  margin-bottom:10px;
  white-space:nowrap;
}

.pill-link{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  text-decoration:none;
  color:#fff !important;
  background:#141414;
  border:1px solid rgba(255,255,255,.08);
  font-weight:800;
  white-space:nowrap;
}

.pill-link:hover{
  background:#1b1b1b;
  border-color:rgba(255,255,255,.16);
}

.mini-badge{
  width:22px;
  height:22px;
  min-width:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:#fff;
  font-size:10px;
  font-weight:900;
  line-height:1;
  letter-spacing:.02em;
  border:1px solid rgba(255,255,255,.14);
}

.badge-facebook{ background:#1877f2; }
.badge-instagram{ background:linear-gradient(135deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5); }
.badge-x{ background:#111111; border-color:rgba(255,255,255,.24); }
.badge-youtube{ background:#ff0000; }
.badge-directions{ background:#34a853; }
.badge-menu{ background:#6b7280; }
.badge-review{ background:#f4b400; color:#111; }
.badge-uber{ background:#06c167; }
.badge-doordash{ background:#eb1700; }
.badge-grubhub{ background:#f63440; }

@media (max-width: 640px){
  .mini-badge{
    width:20px;
    height:20px;
    min-width:20px;
    font-size:9px;
  }
}


/* Code-only optimization, keep existing footer/icon look */
.hero{
  background:#000 url('assets/pizza.webp') center center / cover no-repeat;
}
.hero-copy{
  max-width:780px;
}
.hero-video{
  object-position:center center !important;
}
img[loading="lazy"]{
  content-visibility:auto;
}
@supports (-webkit-touch-callout: none) {
  .hero-video{
    object-position:center center !important;
  }
}


/* Actual image badges for footer */
.footer-icon-img{
  width:22px;
  height:22px;
  min-width:22px;
  display:block;
  border-radius:999px;
}
.pill-link{
  display:inline-flex !important;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}


.footer-icon-img{
  width:20px;
  height:20px;
  min-width:20px;
  object-fit:contain;
  border-radius:999px;
}


/* no-layout accessibility and performance polish */
.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

.hero{
  background:#000 url('assets/pizza.webp') center center / cover no-repeat;
}

.hero-video{
  object-position:center center !important;
}

body,
p,
li,
.footer p,
.footer address,
.footer small,
.footer span,
.form-note,
.section-copy{
  color:#e5e7eb;
}

.muted,
.subtle,
.footer-meta,
.footer-note{
  color:#d1d5db !important;
}

input::placeholder,
textarea::placeholder{
  color:#d1d5db;
  opacity:1;
}

label{
  color:#f3f4f6;
}

img[loading="lazy"]{
  content-visibility:auto;
}

.footer-icon-img{
  width:20px;
  height:20px;
  min-width:20px;
  object-fit:contain;
}


/* no-layout contrast + landmark update */
main#main-content{
  display:block;
}

:root{
  --text-strong:#f5f5f5;
  --text-soft:#e5e7eb;
  --text-muted:#d1d5db;
}

body,
p,
li,
small,
span,
address,
.footer p,
.footer address,
.footer small,
.footer span{
  color:var(--text-soft);
}

.muted,
.subtle,
.footer-meta,
.footer-note,
.section-copy,
.form-note,
.card p,
.hero-copy{
  color:var(--text-muted) !important;
}

input::placeholder,
textarea::placeholder{
  color:#cfd4dc !important;
  opacity:1 !important;
}

label,
h1,h2,h3,h4,h5,h6{
  color:var(--text-strong);
}

.hero::before,
.hero-overlay,
.video-overlay{
  background:rgba(0,0,0,.48) !important;
}

.btn-outline,
button.btn-outline,
a.btn-outline{
  color:#ffffff !important;
  border-color:rgba(255,255,255,.92) !important;
}


/* Scrolling games banner */
.games-ticker{
  background:#0b0b0b;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:14px 0;
  overflow:hidden;
}
.games-ticker-label{
  max-width:1200px;
  margin:0 auto 8px;
  padding:0 20px;
  color:#ffb347;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.82rem;
}
.games-ticker-window{
  overflow:hidden;
  white-space:nowrap;
}
.games-ticker-track{
  display:inline-flex;
  min-width:200%;
  gap:48px;
  animation:gdticker 42s linear infinite;
  will-change:transform;
}
.games-ticker-track span{
  display:inline-block;
  color:#ffffff;
  font-weight:800;
  font-size:.95rem;
  padding-left:20px;
}
@keyframes gdticker{
  0% { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
.sports-note{
  color:#d1d5db;
  margin-top:10px;
  line-height:1.7;
}
@media (max-width: 768px){
  .games-ticker-track{
    animation-duration:60s;
  }
  .games-ticker-track span{
    font-size:.88rem;
  }
}


/* Top real scrolling banner for today's games only */
.top-games-marquee{
  position:relative;
  z-index:20;
  width:100%;
  overflow:hidden;
  background:linear-gradient(90deg,#111,#1a1a1a,#111);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:10px 0;
}
.top-games-marquee-track{
  display:flex;
  width:max-content;
  white-space:nowrap;
  animation:gdTopMarquee 26s linear infinite;
}
.top-games-marquee-track span{
  display:inline-block;
  padding-right:56px;
  color:#ffb347;
  font-weight:900;
  letter-spacing:.03em;
  text-transform:uppercase;
  font-size:.92rem;
}
@keyframes gdTopMarquee{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* Clean schedule block in section area */
.games-schedule-block{
  max-width:1200px;
  margin:0 auto;
  padding:18px 20px 8px;
}
.games-schedule-block h3{
  color:#ffffff;
  font-size:1.65rem;
  margin:0 0 14px;
}
.games-schedule-copy{
  color:#e5e7eb;
  line-height:1.8;
  margin:0 0 10px;
}
.priority-copy{
  color:#ffcc80;
  font-weight:700;
}

@media (max-width: 768px){
  .top-games-marquee-track{
    animation-duration:34s;
  }
  .top-games-marquee-track span{
    font-size:.82rem;
  }
  .games-schedule-block h3{
    font-size:1.3rem;
  }
}


/* Cleaner top banner */
.top-games-marquee{
  position:relative;
  z-index:20;
  width:100%;
  background:linear-gradient(90deg,#0d0d0d,#171717,#0d0d0d);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.top-games-marquee-inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:18px;
  padding:10px 18px;
}
.top-games-marquee-label{
  flex:0 0 auto;
  color:#ffb347;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
  background:rgba(255,179,71,.12);
  border:1px solid rgba(255,179,71,.25);
  padding:7px 10px;
  border-radius:999px;
}
.top-games-marquee-window{
  overflow:hidden;
  min-width:0;
  width:100%;
}
.top-games-marquee-track{
  display:flex;
  width:max-content;
  white-space:nowrap;
  animation:gdTopMarquee 18s linear infinite;
}
.top-games-marquee-track span{
  display:inline-block;
  padding-right:52px;
  color:#ffffff;
  font-weight:800;
  letter-spacing:.02em;
  font-size:.95rem;
}
@keyframes gdTopMarquee{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* Cleaner schedule section */
.games-schedule-block{
  max-width:1200px;
  margin:0 auto;
  padding:28px 20px 20px;
}
.games-schedule-header{
  margin-bottom:18px;
}
.games-schedule-header h3{
  color:#fff;
  font-size:2rem;
  margin:0 0 8px;
}
.games-schedule-header p{
  color:#d1d5db;
  margin:0;
  line-height:1.7;
  max-width:850px;
}
.games-schedule-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
.game-day-card{
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:18px 18px 14px;
}
.game-day-label{
  color:#ffb347;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.82rem;
  margin-bottom:12px;
}
.game-day-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.game-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  color:#fff;
  line-height:1.5;
}
.game-time{
  min-width:78px;
  font-weight:900;
  color:#ffffff;
}
.game-match{
  color:#e5e7eb;
}
.game-item.highlight .game-time,
.game-item.highlight .game-match{
  color:#ffcc80;
}
.priority-games-panel{
  margin-top:18px;
  background:linear-gradient(180deg,rgba(255,90,31,.10),rgba(255,179,71,.05));
  border:1px solid rgba(255,179,71,.20);
  border-radius:24px;
  padding:18px;
}
.priority-games-title{
  color:#ffb347;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.85rem;
  margin-bottom:12px;
}
.priority-games-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.priority-game{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.06);
  border-radius:16px;
  padding:12px 14px;
  color:#fff;
  line-height:1.5;
}
.priority-game strong{
  display:block;
  color:#fff;
  margin-bottom:3px;
}
.priority-game span{
  color:#f3f4f6;
}

@media (max-width: 900px){
  .games-schedule-grid,
  .priority-games-list{
    grid-template-columns:1fr;
  }
}
@media (max-width: 768px){
  .top-games-marquee-inner{
    padding:8px 12px;
    gap:10px;
  }
  .top-games-marquee-label{
    display:none;
  }
  .top-games-marquee-track{
    animation-duration:22s;
  }
  .top-games-marquee-track span{
    font-size:.84rem;
    padding-right:36px;
  }
  .games-schedule-header h3{
    font-size:1.45rem;
  }
  .game-item{
    gap:10px;
  }
  .game-time{
    min-width:72px;
    font-size:.95rem;
  }
}


/* Premium top games bar */
.top-games-bar{
  position:relative;
  z-index:25;
  width:100%;
  background:linear-gradient(90deg,#070707 0%, #111 50%, #070707 100%);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.top-games-bar-inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:16px;
  padding:10px 18px;
}
.top-games-pill{
  flex:0 0 auto;
  padding:7px 12px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,179,71,.22), rgba(255,90,31,.18));
  border:1px solid rgba(255,179,71,.28);
  color:#ffd08a;
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.top-games-scroll{
  width:100%;
  min-width:0;
  overflow:hidden;
  mask-image:linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image:linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.top-games-scroll-track{
  display:flex;
  align-items:center;
  width:max-content;
  gap:18px;
  animation:gamesFlow 20s linear infinite;
}
.top-games-scroll-track span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-weight:800;
  letter-spacing:.01em;
  font-size:.94rem;
  padding-right:6px;
}
.top-games-scroll-track span::after{
  content:"•";
  color:rgba(255,179,71,.75);
  margin-left:10px;
}
.top-games-scroll-track span:last-child::after{
  content:"";
  margin:0;
}
@keyframes gamesFlow{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* Nicer schedule section */
.games-schedule-block{
  max-width:1200px;
  margin:0 auto;
  padding:34px 20px 22px;
}
.games-kicker{
  color:#ffb347;
  font-size:.82rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:10px;
}
.games-schedule-header h3{
  margin:0 0 10px;
  color:#fff;
  font-size:2.1rem;
  line-height:1.05;
}
.games-schedule-header p{
  margin:0;
  max-width:860px;
  color:#d1d5db;
  line-height:1.7;
  font-size:1.02rem;
}
.games-today-hero{
  margin-top:22px;
  padding:20px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(255,90,31,.14), rgba(255,179,71,.08) 45%, rgba(255,255,255,.03));
  border:1px solid rgba(255,179,71,.18);
  box-shadow:0 18px 50px rgba(0,0,0,.18);
}
.games-today-badge{
  display:inline-block;
  color:#ffd08a;
  background:rgba(255,179,71,.10);
  border:1px solid rgba(255,179,71,.20);
  border-radius:999px;
  padding:7px 11px;
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
  margin-bottom:14px;
}
.games-today-items{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.games-today-item{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.07);
  border-radius:20px;
  padding:16px;
}
.games-today-time{
  color:#ffb347;
  font-weight:900;
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:8px;
}
.games-today-match{
  color:#fff;
  font-weight:800;
  font-size:1.04rem;
  line-height:1.35;
}
.finals-item .games-today-time,
.finals-item .games-today-match{
  color:#ffd08a;
}
.games-days-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.games-day-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:18px;
}
.games-day-title{
  color:#fff;
  font-size:1.05rem;
  font-weight:900;
  margin-bottom:12px;
}
.games-day-panel ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.games-day-panel li{
  color:#e5e7eb;
  line-height:1.55;
}
.games-day-panel strong{
  color:#fff;
}
.priority-panel{
  background:linear-gradient(180deg, rgba(255,90,31,.12), rgba(255,179,71,.06));
  border-color:rgba(255,179,71,.20);
}

@media (max-width: 900px){
  .games-today-items,
  .games-days-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 768px){
  .top-games-bar-inner{
    padding:9px 12px;
    gap:10px;
  }
  .top-games-pill{
    display:none;
  }
  .top-games-scroll-track{
    animation-duration:24s;
  }
  .top-games-scroll-track span{
    font-size:.84rem;
  }
  .games-schedule-header h3{
    font-size:1.55rem;
  }
  .games-today-match{
    font-size:.98rem;
  }
}


/* Cleaner non-repeating premium live games bar */
.top-games-bar{
  position:relative;
  z-index:25;
  width:100%;
  background:linear-gradient(90deg,#070707 0%, #111 50%, #070707 100%);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.top-games-bar-inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:16px;
  padding:10px 18px;
}
.top-games-pill{
  flex:0 0 auto;
  padding:7px 12px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,179,71,.22), rgba(255,90,31,.18));
  border:1px solid rgba(255,179,71,.28);
  color:#ffd08a;
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.top-games-scroll{
  width:100%;
  min-width:0;
  overflow:hidden;
  position:relative;
  mask-image:linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image:linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.top-games-scroll-track{
  display:flex;
  align-items:center;
  width:max-content;
  gap:18px;
  padding-right:48px;
  animation:gamesFlowClean 24s linear infinite;
}
.top-games-scroll-track span{
  display:inline-flex;
  align-items:center;
  color:#fff;
  font-weight:800;
  letter-spacing:.01em;
  font-size:.94rem;
  white-space:nowrap;
}
.top-games-scroll-track span:not(.clone-gap)::after{
  content:"•";
  color:rgba(255,179,71,.75);
  margin-left:18px;
}
.top-games-scroll-track .clone-gap{
  width:120px;
  display:inline-block;
}
.top-games-scroll-track .live-chip{
  background:rgba(255,90,31,.18);
  color:#ffd08a;
  border:1px solid rgba(255,179,71,.28);
  border-radius:999px;
  padding:7px 11px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.76rem;
}
.top-games-scroll-track .live-chip::after{
  content:"";
  margin:0;
}
@keyframes gamesFlowClean{
  0%{transform:translateX(0);}
  100%{transform:translateX(calc(-50% - 60px));}
}
.live-now{
  color:#ffd08a !important;
}

@media (max-width: 768px){
  .top-games-bar-inner{
    padding:9px 12px;
    gap:10px;
  }
  .top-games-pill{
    display:none;
  }
  .top-games-scroll-track{
    animation-duration:28s;
    gap:14px;
    padding-right:24px;
  }
  .top-games-scroll-track span{
    font-size:.84rem;
  }
  .top-games-scroll-track .clone-gap{
    width:70px;
  }
}


/* Final static top games bar */
.static-games-bar{
  position:relative;
  z-index:25;
  width:100%;
  background:linear-gradient(90deg,#070707 0%, #111 50%, #070707 100%);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.static-games-bar-inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:16px;
  padding:10px 18px;
}
.static-games-items{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}
.static-games-items .live-chip{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,90,31,.18);
  color:#ffd08a;
  border:1px solid rgba(255,179,71,.28);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.76rem;
  font-weight:900;
}
.static-games-items .game-chip{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-size:.92rem;
  font-weight:800;
  line-height:1.2;
}
.top-games-scroll,
.top-games-scroll-track,
.top-games-scroll-track-single{
  animation:none !important;
  display:none !important;
}
@media (max-width: 768px){
  .static-games-bar-inner{
    padding:9px 12px;
    gap:10px;
  }
  .static-games-bar-inner .top-games-pill{
    display:none;
  }
  .static-games-items .game-chip{
    font-size:.84rem;
  }
}


/* Center the static top games banner */
.static-games-bar-inner{
  justify-content:center !important;
  text-align:center !important;
}
.static-games-items{
  justify-content:center !important;
  width:100%;
}
.static-games-bar .top-games-pill{
  margin-right:4px;
}
@media (max-width: 768px){
  .static-games-items{
    justify-content:center !important;
  }
}


/* Automatic schedule data support */
#priorityPanel{
  margin-top:18px;
}
#priorityGamesList{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
#priorityGamesList li{
  color:#f3f4f6;
  line-height:1.55;
}
#priorityGamesList strong{
  color:#fff;
}


/* Better premium fonts and emphasis for top banners / games section */
.top-games-pill,
.games-kicker,
.games-today-badge,
.game-day-label,
.priority-games-title,
.games-day-title{
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: .12em !important;
  text-transform: uppercase;
}

.top-games-pill{
  font-size: .9rem !important;
  color: #ffd08a !important;
}

.static-games-items .live-chip,
#topGamesBanner .live-chip{
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: .86rem !important;
  letter-spacing: .12em !important;
  text-transform: uppercase;
}

.static-games-items .game-chip,
#topGamesBanner .game-chip{
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem !important;
  font-weight: 900 !important;
  letter-spacing: .02em !important;
}

.games-schedule-header h3{
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: .04em !important;
  text-transform: uppercase;
  font-size: 2.35rem !important;
}

.games-today-time,
.games-today-match,
.game-time,
.game-match,
.games-day-panel li,
#priorityGamesList li{
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
}

.games-today-time,
.game-time{
  letter-spacing: .06em !important;
  text-transform: uppercase;
}

.games-today-match{
  font-size: 1.12rem !important;
}

.games-day-panel li,
#priorityGamesList li{
  font-size: 1rem !important;
}

@media (max-width: 768px){
  .static-games-items .game-chip,
  #topGamesBanner .game-chip{
    font-size: .88rem !important;
  }

  .games-schedule-header h3{
    font-size: 1.7rem !important;
  }

  .games-today-match{
    font-size: 1rem !important;
  }
}


/* FINAL banner centering and font force */
.static-games-bar,
.top-games-bar{
  text-align:center !important;
}

.static-games-bar-inner,
.top-games-bar-inner{
  max-width:1400px !important;
  margin:0 auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:14px !important;
  padding:10px 18px !important;
  text-align:center !important;
}

.static-games-items,
#topGamesBanner{
  display:flex !important;
  flex-wrap:wrap !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px !important;
  width:100% !important;
  text-align:center !important;
}

.top-games-pill{
  margin:0 !important;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  font-size:.92rem !important;
  letter-spacing:.12em !important;
  text-transform:uppercase !important;
  font-weight:900 !important;
}

.static-games-items .live-chip,
#topGamesBanner .live-chip{
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  font-size:.82rem !important;
  letter-spacing:.12em !important;
  text-transform:uppercase !important;
  font-weight:900 !important;
}

.static-games-items .game-chip,
#topGamesBanner .game-chip{
  font-family: "Arial Black", Arial, Helvetica, sans-serif !important;
  font-size:1rem !important;
  font-weight:900 !important;
  letter-spacing:.02em !important;
  line-height:1.2 !important;
}

.games-kicker,
.games-today-badge,
.games-day-title,
.game-day-label,
.priority-games-title{
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  letter-spacing:.12em !important;
  text-transform:uppercase !important;
  font-weight:900 !important;
}

.games-schedule-header h3{
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  font-size:2.3rem !important;
  letter-spacing:.04em !important;
  text-transform:uppercase !important;
  line-height:1.02 !important;
}

.games-today-time,
.games-today-match,
.game-time,
.game-match,
.games-day-panel li,
#priorityGamesList li{
  font-family: "Arial Black", Arial, Helvetica, sans-serif !important;
}

.games-today-time,
.game-time{
  letter-spacing:.06em !important;
  text-transform:uppercase !important;
  font-weight:900 !important;
}

.games-today-match{
  font-size:1.12rem !important;
}

.games-day-panel li,
#priorityGamesList li{
  font-size:1rem !important;
}

@media (max-width: 768px){
  .top-games-pill{
    display:none !important;
  }
  .static-games-bar-inner,
  .top-games-bar-inner{
    padding:9px 12px !important;
  }
  .static-games-items .game-chip,
  #topGamesBanner .game-chip{
    font-size:.88rem !important;
  }
  .games-schedule-header h3{
    font-size:1.72rem !important;
  }
}


/* ===== Clean final games banner + schedule ===== */
.top-games-bar{
  width:100% !important;
  background:linear-gradient(90deg,#0a0a0a 0%,#111 50%,#0a0a0a 100%) !important;
  border-top:1px solid rgba(255,255,255,.08) !important;
  border-bottom:1px solid rgba(255,255,255,.08) !important;
}
.top-games-bar-inner{
  max-width:1280px !important;
  margin:0 auto !important;
  padding:12px 18px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  gap:10px !important;
}
.top-games-pill{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin:0 auto !important;
  font-family:Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  font-weight:900 !important;
  letter-spacing:.12em !important;
  text-transform:uppercase !important;
  color:#ffd08a !important;
  background:rgba(255,179,71,.12) !important;
  border:1px solid rgba(255,179,71,.24) !important;
  border-radius:999px !important;
  padding:8px 14px !important;
  font-size:.88rem !important;
}
.top-games-chip-row{
  width:100% !important;
  display:flex !important;
  flex-wrap:wrap !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px !important;
  margin:0 auto !important;
  text-align:center !important;
}
#topGamesBanner .live-chip,
#topGamesBanner .game-chip{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:999px !important;
  padding:8px 14px !important;
  line-height:1.2 !important;
  white-space:normal !important;
}
#topGamesBanner .live-chip{
  background:rgba(255,90,31,.18) !important;
  border:1px solid rgba(255,179,71,.28) !important;
  color:#ffd08a !important;
  font-family:Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  font-weight:900 !important;
  font-size:.84rem !important;
  letter-spacing:.12em !important;
  text-transform:uppercase !important;
}
#topGamesBanner .game-chip{
  background:rgba(255,255,255,.05) !important;
  border:1px solid rgba(255,255,255,.08) !important;
  color:#fff !important;
  font-family:"Arial Black", Arial, Helvetica, sans-serif !important;
  font-weight:900 !important;
  font-size:.98rem !important;
}
.games-schedule-block{
  max-width:1200px !important;
  margin:0 auto !important;
  padding:34px 20px 24px !important;
}
.games-kicker,
.games-today-badge,
.games-day-title{
  font-family:Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  text-transform:uppercase !important;
  letter-spacing:.12em !important;
  font-weight:900 !important;
}
.games-schedule-header h3{
  font-family:Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  font-size:2.25rem !important;
  line-height:1.02 !important;
  text-transform:uppercase !important;
  letter-spacing:.04em !important;
}
.games-schedule-header p{
  max-width:920px !important;
}
.games-today-items{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:14px !important;
}
.games-today-item{
  min-height:96px !important;
}
.games-today-time,
.games-today-match,
.games-day-panel li,
#priorityGamesList li{
  font-family:"Arial Black", Arial, Helvetica, sans-serif !important;
}
.games-today-time.live-now{
  color:#ffd08a !important;
  background:rgba(255,179,71,.12) !important;
  border:1px solid rgba(255,179,71,.22) !important;
  border-radius:999px !important;
  display:inline-flex !important;
  padding:6px 10px !important;
  width:auto !important;
}
#priorityPanel{
  margin-top:18px !important;
}
#priorityGamesList{
  list-style:none !important;
  padding:0 !important;
  margin:0 !important;
  display:flex !important;
  flex-direction:column !important;
  gap:10px !important;
}
@media (max-width:900px){
  .games-today-items{ grid-template-columns:1fr !important; }
}
@media (max-width:768px){
  .top-games-bar-inner{ padding:10px 12px !important; }
  #topGamesBanner .game-chip{ font-size:.88rem !important; }
  .games-schedule-header h3{ font-size:1.7rem !important; }
}







/* Minimal loyalty fallback */
a[href="https://l.spoton.com/W45xAo"]{
  text-decoration:none !important;
}
a[href="https://l.spoton.com/W45xAo"]:visited,
a[href="https://l.spoton.com/W45xAo"]:hover,
a[href="https://l.spoton.com/W45xAo"]:focus{
  text-decoration:none !important;
}


/* Better looking schedule section */
.games-schedule-block{
  max-width:1200px;
  margin:0 auto;
  padding:34px 20px 22px;
}
.games-kicker{
  color:#ffb347;
  font-size:.82rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:10px;
}
.games-schedule-header h3{
  margin:0 0 10px;
  color:#fff;
  font-size:2.1rem;
  line-height:1.05;
}
.games-schedule-header p{
  margin:0;
  max-width:860px;
  color:#d1d5db;
  line-height:1.7;
  font-size:1.02rem;
}
.games-today-hero{
  margin-top:22px;
  padding:20px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(255,90,31,.14), rgba(255,179,71,.08) 45%, rgba(255,255,255,.03));
  border:1px solid rgba(255,179,71,.18);
  box-shadow:0 18px 50px rgba(0,0,0,.18);
}
.games-today-badge{
  display:inline-block;
  color:#ffd08a;
  background:rgba(255,179,71,.10);
  border:1px solid rgba(255,179,71,.20);
  border-radius:999px;
  padding:7px 11px;
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
  margin-bottom:14px;
}
.games-today-items{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.games-today-item{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.07);
  border-radius:20px;
  padding:16px;
}
.games-today-time{
  color:#ffb347;
  font-weight:900;
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:8px;
}
.games-today-match{
  color:#fff;
  font-weight:800;
  font-size:1.04rem;
  line-height:1.35;
}
.finals-item .games-today-time,
.finals-item .games-today-match{
  color:#ffd08a;
}
.games-days-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.games-day-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:18px;
}
.games-day-title{
  color:#fff;
  font-size:1.05rem;
  font-weight:900;
  margin-bottom:12px;
}
.games-day-panel ul,
#priorityGamesList{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.games-day-panel li,
#priorityGamesList li{
  color:#e5e7eb;
  line-height:1.55;
}
.games-day-panel strong,
#priorityGamesList strong{
  color:#fff;
}
.priority-panel{
  margin-top:18px;
  background:linear-gradient(180deg, rgba(255,90,31,.12), rgba(255,179,71,.06));
  border-color:rgba(255,179,71,.20);
}

@media (max-width: 900px){
  .games-today-items,
  .games-days-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 768px){
  .games-schedule-header h3{
    font-size:1.55rem;
  }
  .games-today-match{
    font-size:.98rem;
  }
}


/* More polished schedule look */
.games-schedule-block{
  max-width:1220px;
  margin:0 auto;
  padding:34px 20px 26px;
}
.games-schedule-header{
  margin-bottom:18px;
}
.games-kicker{
  color:#ffb347;
  font-size:.82rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:10px;
}
.games-schedule-header h2,
.games-schedule-header h3{
  margin:0 0 10px;
  color:#fff;
  font-size:2.15rem;
  line-height:1.02;
}
.games-schedule-header p{
  margin:0;
  max-width:900px;
  color:#d1d5db;
  line-height:1.75;
  font-size:1.03rem;
}

.games-today-hero{
  margin-top:22px;
  padding:22px;
  border-radius:30px;
  background:
    linear-gradient(135deg, rgba(255,90,31,.14), rgba(255,179,71,.08) 45%, rgba(255,255,255,.03));
  border:1px solid rgba(255,179,71,.18);
  box-shadow:0 20px 55px rgba(0,0,0,.18);
}
.games-today-badge{
  display:inline-block;
  color:#ffd08a;
  background:rgba(255,179,71,.10);
  border:1px solid rgba(255,179,71,.20);
  border-radius:999px;
  padding:7px 11px;
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
  margin-bottom:14px;
}
.games-today-items{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.games-today-item{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.07);
  border-radius:22px;
  padding:18px;
  min-height:100%;
}
.games-today-time{
  color:#ffb347;
  font-weight:900;
  font-size:.84rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:8px;
}
.games-today-match{
  color:#fff;
  font-weight:800;
  font-size:1.06rem;
  line-height:1.38;
}
.games-days-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.games-day-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:26px;
  padding:20px;
  box-shadow:0 14px 35px rgba(0,0,0,.12);
}
.games-day-title{
  color:#fff;
  font-size:1.06rem;
  font-weight:900;
  margin-bottom:12px;
}
.games-day-panel ul,
#priorityGamesList{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.games-day-panel li,
#priorityGamesList li{
  color:#e5e7eb;
  line-height:1.6;
}
.games-day-panel strong,
#priorityGamesList strong{
  color:#fff;
}
.priority-panel{
  margin-top:18px;
  background:linear-gradient(180deg, rgba(255,90,31,.12), rgba(255,179,71,.06));
  border-color:rgba(255,179,71,.20);
}

@media (max-width: 900px){
  .games-today-items,
  .games-days-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 768px){
  .games-schedule-header h2,
  .games-schedule-header h3{
    font-size:1.6rem;
  }
  .games-today-match{
    font-size:1rem;
  }
}


/* ============================================================
   GAME DAY SCHEDULE — Redesigned 2026-06-27
   ============================================================ */

.gd-schedule {
  padding: 60px 20px 70px;
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}
.gd-schedule::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,90,31,.09) 0%, transparent 70%);
  pointer-events: none;
}
.gd-schedule-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Header */
.gd-schedule-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #ff5a1f;
  margin-bottom: 10px;
}
.gd-schedule-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.05;
  font-family: 'Oswald', sans-serif;
}
.gd-schedule-sub {
  color: #6b7280;
  font-size: .9rem;
  margin: 0 0 28px;
  line-height: 1.6;
}

/* ---- TODAY'S MAIN BOX ---- */
.gd-today-box {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.gd-today-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 12px;
  border-bottom: 1px solid #1a1a1a;
  background: rgba(255,255,255,.02);
}
.gd-today-label {
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #4b5563;
}

/* skeleton loading */
.gd-skeleton {
  height: 64px;
  margin: 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: gd-shimmer 1.4s infinite;
}
@keyframes gd-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.gd-today-rows {
  padding: 8px 0 12px;
}
.gd-no-games {
  padding: 28px 20px;
  color: #4b5563;
  font-size: .95rem;
  text-align: center;
}

/* Individual game row */
.gd-game-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid #161616;
  transition: background .15s;
}
.gd-game-row:last-child { border-bottom: none; }
.gd-game-row:hover { background: rgba(255,255,255,.02); }

/* LIVE row */
.gd-game-live {
  background: linear-gradient(90deg, rgba(255,90,31,.07) 0%, transparent 60%);
  border-left: 3px solid #ff5a1f;
  padding-left: 17px;
}
.gd-game-live:hover { background: linear-gradient(90deg, rgba(255,90,31,.12) 0%, transparent 60%); }

/* Priority row highlight */
.gd-game-priority {
  border-left: 3px solid #ffb347;
  padding-left: 17px;
}
.gd-game-live.gd-game-priority {
  border-left-color: #ff5a1f;
}

.gd-game-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ff5a1f;
  white-space: nowrap;
}
.gd-game-next {
  color: #4b5563;
}

/* Pulsing live dot */
.gd-live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff5a1f;
  box-shadow: 0 0 0 0 rgba(255,90,31,.5);
  animation: gd-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes gd-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,90,31,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(255,90,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,31,0); }
}

.gd-game-name {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .02em;
}
.gd-game-live .gd-game-name {
  font-size: 1.08rem;
}
.gd-game-meta {
  color: #4b5563;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}
.gd-game-live .gd-game-meta {
  color: #ff5a1f;
}

/* ---- UPCOMING DAYS GRID ---- */
.gd-upcoming-grid {
  margin-top: 14px;
  background: #111;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
}
.gd-upcoming-day {}
.gd-upcoming-day-title {
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #4b5563;
  padding: 10px 20px 8px;
  background: #0d0d0d;
  border-top: 1px solid #1a1a1a;
}
.gd-upcoming-day:first-child .gd-upcoming-day-title {
  border-top: none;
}
.gd-upcoming-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-top: 1px solid #161616;
}
.gd-upcoming-time {
  color: #6b7280;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  min-width: 72px;
}
.gd-upcoming-match {
  color: #d1d5db;
  font-size: .92rem;
  font-weight: 600;
  flex: 1;
}
.gd-upcoming-badge {
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ffb347;
  white-space: nowrap;
}
.gd-upcoming-priority .gd-upcoming-time { color: #ffb347; }
.gd-upcoming-priority .gd-upcoming-match { color: #fff; font-weight: 700; }

/* ---- PRIORITY STRIP ---- */
.gd-priority-strip {
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(255,90,31,.08), rgba(255,179,71,.05));
  border: 1px solid rgba(255,179,71,.15);
  border-radius: 16px;
  padding: 18px 20px;
}
.gd-priority-label {
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #ffb347;
  margin-bottom: 12px;
}
.gd-priority-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gd-priority-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 10px;
}
.gd-priority-date {
  font-size: .78rem;
  color: #6b7280;
  font-weight: 700;
}
.gd-priority-match {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  font-family: 'Oswald', sans-serif;
}
.gd-priority-time {
  color: #ffb347;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .gd-schedule { padding: 44px 14px 54px; }
  .gd-schedule-title { font-size: 1.7rem; }
  .gd-upcoming-grid { grid-template-columns: 1fr; }
  .gd-game-row {
    grid-template-columns: 72px 1fr auto;
    gap: 8px;
    padding: 12px 14px;
  }
  .gd-game-live { padding-left: 11px; }
  .gd-game-name { font-size: .92rem; }
  .gd-priority-item { grid-template-columns: 70px 1fr auto; }
}
