/* Usyk vs Verhoeven Live — Global EN Theme */
/* BEM, Inter, dark boxing palette */

/* ============ RESET & BASE ============ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
img{max-width:100%;height:auto}
html{scroll-behavior:smooth}

:root{
  --bg-deep:#0a0e1a;
  --bg-mid:#141828;
  --bg-card:#1c2236;
  --accent-red:#e53935;
  --accent-gold:#ffd700;
  --accent-red-dark:#b71c1c;
  --text-primary:#f0f0f0;
  --text-muted:#9aa0b4;
  --text-dim:#6b7280;
  --border:#2a3050;
  --header-h:70px;
  --radius:10px;
  --radius-lg:16px;
  --shadow:0 4px 24px rgba(0,0,0,.45);
  --trans:.25s ease;
}

body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:var(--bg-deep);
  color:var(--text-primary);
  line-height:1.65;
  overflow-x:hidden;
  font-size:1rem;
}

a{color:var(--accent-red);text-decoration:none;transition:color var(--trans)}
a:hover{color:var(--accent-gold)}

/* ============ CONTAINER ============ */
.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}

/* ============ HEADER ============ */
.header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(10,14,26,.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  height:var(--header-h);
}
.header__inner{
  display:flex;align-items:center;justify-content:space-between;
  height:var(--header-h);
}
.header__logo{
  font-size:1.1rem;font-weight:800;letter-spacing:-.5px;
  color:var(--text-primary);text-decoration:none;
  display:flex;align-items:center;gap:.5rem;
}
.header__logo span{color:var(--accent-red)}
.header__nav{display:flex;align-items:center;gap:1.75rem}
.header__nav-link{
  color:var(--text-muted);font-size:.9rem;font-weight:500;
  text-decoration:none;transition:color var(--trans);white-space:nowrap;
}
.header__nav-link:hover,.header__nav-link--active{color:var(--text-primary)}
.header__cta{
  background:var(--accent-red);color:#fff;
  padding:.55rem 1.2rem;border-radius:6px;
  font-size:.875rem;font-weight:700;text-decoration:none;
  letter-spacing:.3px;transition:background var(--trans);
  white-space:nowrap;
}
.header__cta:hover{background:var(--accent-red-dark);color:#fff}
.header__menu-btn{
  display:none;flex-direction:column;gap:5px;
  background:none;border:none;cursor:pointer;padding:6px;
}
.header__menu-btn span{width:22px;height:2px;background:var(--text-muted);border-radius:2px;display:block}

/* ============ BREADCRUMB ============ */
.breadcrumb{
  margin-top:var(--header-h);background:var(--bg-mid);
  border-bottom:1px solid var(--border);padding:.6rem 0;
}
.breadcrumb__list{
  display:flex;align-items:center;gap:.4rem;list-style:none;
  font-size:.8rem;color:var(--text-dim);flex-wrap:wrap;
}
.breadcrumb__item+.breadcrumb__item::before{content:'›';margin-right:.4rem;color:var(--text-dim)}
.breadcrumb__link{color:var(--text-muted);text-decoration:none}
.breadcrumb__link:hover{color:var(--accent-gold)}

/* ============ HERO ============ */
.hero{
  position:relative;overflow:hidden;
  padding:5rem 0 4.5rem;
  background:linear-gradient(160deg, #0a0e1a 0%, #1a0810 40%, #0f1520 70%, #0a0e1a 100%);
  margin-top:var(--header-h);
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 80% 60% at 60% 40%, rgba(229,57,53,.12) 0%, transparent 70%);
  pointer-events:none;
}
.hero__badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(229,57,53,.15);border:1px solid rgba(229,57,53,.35);
  color:var(--accent-red);font-size:.75rem;font-weight:700;letter-spacing:1px;
  text-transform:uppercase;padding:.35rem .85rem;border-radius:20px;margin-bottom:1.25rem;
}
.hero__badge::before{content:'●';font-size:.6rem;animation:blink 1.4s infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.3}}
.hero__inner{display:grid;grid-template-columns:minmax(0,1fr) 380px;gap:2.5rem;align-items:start}
.hero__content{min-width:0}
.hero__title{
  font-size:clamp(1.7rem,3vw,2.5rem);font-weight:800;
  line-height:1.18;letter-spacing:-.02em;text-wrap:balance;
  color:var(--text-primary);margin-bottom:1rem;
}
.hero__title span{color:var(--accent-red)}
.hero__meta{
  display:flex;flex-wrap:wrap;gap:.75rem 1.5rem;
  color:var(--text-muted);font-size:.9rem;margin-bottom:1.75rem;
}
.hero__meta-item{display:flex;align-items:center;gap:.4rem}
.hero__meta-item strong{color:var(--text-primary)}
.hero__lead{
  font-size:1.1rem;color:var(--text-muted);
  margin-bottom:2rem;max-width:560px;
}
.hero__cta-group{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.5rem}

/* Countdown inside hero */
.countdown{
  background:rgba(255,255,255,.04);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.25rem 1.5rem;
  display:inline-block;
}
.countdown__label{font-size:.75rem;color:var(--text-dim);letter-spacing:.8px;text-transform:uppercase;margin-bottom:.6rem}
.countdown__timer{display:flex;gap:.75rem;align-items:center}
.countdown__unit{text-align:center}
.countdown__num{
  font-size:2rem;font-weight:800;color:var(--accent-gold);
  display:block;line-height:1;min-width:2.5ch;
}
.countdown__sep{font-size:1.5rem;font-weight:700;color:var(--text-dim);margin-bottom:.5rem}
.countdown__unit-label{font-size:.65rem;color:var(--text-dim);text-transform:uppercase;letter-spacing:.6px;margin-top:.2rem;display:block}

/* Hero poster/card */
.hero__poster{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius-lg);overflow:hidden;
  padding:2rem 1.5rem;text-align:center;
  box-shadow:var(--shadow);
}
.hero__poster-vs{
  display:flex;align-items:center;justify-content:space-around;gap:1rem;
  margin-bottom:1.5rem;
}
.fighter{display:flex;flex-direction:column;align-items:center;gap:.5rem}
.fighter__flag{font-size:2rem}
.fighter__name{font-size:1.1rem;font-weight:800;color:var(--text-primary)}
.fighter__record{font-size:.75rem;color:var(--text-muted)}
.vs-badge{
  font-size:1.75rem;font-weight:900;color:var(--accent-red);
  background:rgba(229,57,53,.1);width:52px;height:52px;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  border:2px solid rgba(229,57,53,.3);
}
.hero__poster-detail{font-size:.8rem;color:var(--text-muted);line-height:1.8}
.hero__poster-detail strong{color:var(--accent-gold)}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.85rem 2rem;border-radius:8px;font-weight:700;
  font-size:1rem;text-decoration:none;border:none;cursor:pointer;
  transition:all var(--trans);white-space:nowrap;
}
.btn--primary{
  background:linear-gradient(135deg,var(--accent-red),var(--accent-red-dark));
  color:#fff;box-shadow:0 4px 20px rgba(229,57,53,.4);
}
.btn--primary:hover{
  background:linear-gradient(135deg,#ef5350,var(--accent-red));
  box-shadow:0 6px 28px rgba(229,57,53,.6);color:#fff;transform:translateY(-1px);
}
.btn--secondary{
  background:transparent;color:var(--text-primary);
  border:2px solid var(--border);
}
.btn--secondary:hover{border-color:var(--accent-gold);color:var(--accent-gold)}
.btn--gold{
  background:linear-gradient(135deg,var(--accent-gold),#f9a825);
  color:#0a0e1a;box-shadow:0 4px 20px rgba(255,215,0,.3);
}
.btn--gold:hover{box-shadow:0 6px 28px rgba(255,215,0,.5);transform:translateY(-1px);color:#0a0e1a}
.btn--lg{padding:1rem 2.5rem;font-size:1.1rem}
.btn--sm{padding:.5rem 1.2rem;font-size:.85rem}

/* ============ SECTIONS ============ */
.section{padding:4rem 0}
.section--alt{background:var(--bg-mid)}
.section__header{margin-bottom:2rem}
.section__title{
  font-size:1.75rem;font-weight:800;color:var(--text-primary);
  letter-spacing:-.5px;margin-bottom:.5rem;
}
.section__subtitle{color:var(--text-muted);font-size:1rem}
.section__title-rule{
  display:flex;align-items:center;gap:1rem;margin-bottom:2rem;
}
.section__title-rule h2{font-size:1.5rem;font-weight:800;white-space:nowrap}
.section__title-rule::after{content:'';flex:1;height:1px;background:var(--border)}

/* ============ LAYOUT: MAIN + SIDEBAR ============ */
.content-layout{display:grid;grid-template-columns:1fr 300px;gap:2.5rem;align-items:start}
.content-layout--full{grid-template-columns:1fr}

/* ============ ARTICLE ============ */
.article h2{
  font-size:1.5rem;font-weight:800;color:var(--text-primary);
  margin:2rem 0 .75rem;letter-spacing:-.3px;
}
.article h3{
  font-size:1.15rem;font-weight:700;color:var(--accent-gold);
  margin:1.5rem 0 .5rem;
}
.article p{color:var(--text-muted);margin-bottom:1rem;line-height:1.75}
.article ul,.article ol{color:var(--text-muted);padding-left:1.5rem;margin-bottom:1rem}
.article li{margin-bottom:.4rem;line-height:1.7}
.article strong{color:var(--text-primary)}
.article a{color:var(--accent-red)}

/* ============ SIDEBAR / FACT BOX ============ */
.fact-box{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
  position:sticky;top:calc(var(--header-h) + 1rem);
}
.fact-box__header{
  background:var(--accent-red);padding:.75rem 1.25rem;
  font-size:.8rem;font-weight:700;letter-spacing:.8px;
  text-transform:uppercase;color:#fff;
}
.fact-box__body{padding:1.25rem}
.fact-box__row{
  display:flex;justify-content:space-between;align-items:flex-start;
  padding:.6rem 0;border-bottom:1px solid var(--border);gap:1rem;
}
.fact-box__row:last-child{border-bottom:none}
.fact-box__label{font-size:.8rem;color:var(--text-dim);flex-shrink:0}
.fact-box__value{font-size:.875rem;font-weight:600;color:var(--text-primary);text-align:right}
.fact-box__value--gold{color:var(--accent-gold)}
.fact-box__cta{margin-top:1.25rem}
.fact-box__cta .btn{width:100%;justify-content:center}

/* ============ TIMEZONE TABLE ============ */
.tz-table{width:100%;border-collapse:collapse;font-size:.9rem}
.tz-table th{
  background:var(--bg-card);color:var(--accent-gold);
  font-size:.75rem;font-weight:700;letter-spacing:.8px;
  text-transform:uppercase;padding:.75rem 1rem;border-bottom:2px solid var(--border);
  text-align:left;
}
.tz-table td{padding:.7rem 1rem;border-bottom:1px solid var(--border);color:var(--text-muted)}
.tz-table tr:last-child td{border-bottom:none}
.tz-table tr:hover td{background:rgba(255,255,255,.02)}
.tz-table td:first-child{font-weight:700;color:var(--text-primary)}
.tz-table td:last-child{color:var(--text-muted);font-size:.8rem}

/* ============ FAQ ============ */
.faq{margin-top:1.5rem}
.faq__item{
  border:1px solid var(--border);border-radius:var(--radius);
  margin-bottom:.75rem;overflow:hidden;
}
.faq__question{
  display:flex;justify-content:space-between;align-items:center;
  padding:1rem 1.25rem;cursor:pointer;
  font-weight:600;color:var(--text-primary);font-size:.95rem;
  background:var(--bg-card);border:none;width:100%;text-align:left;
  transition:background var(--trans);
}
.faq__question:hover{background:rgba(255,255,255,.04)}
.faq__icon{
  width:20px;height:20px;border-radius:50%;
  background:rgba(229,57,53,.15);border:1px solid rgba(229,57,53,.3);
  display:flex;align-items:center;justify-content:center;
  color:var(--accent-red);font-size:.9rem;flex-shrink:0;
  transition:transform var(--trans);
}
.faq__item--open .faq__icon{transform:rotate(45deg)}
.faq__answer{
  display:none;padding:1rem 1.25rem;
  color:var(--text-muted);font-size:.9rem;line-height:1.7;
  background:var(--bg-deep);border-top:1px solid var(--border);
}
.faq__item--open .faq__answer{display:block}

/* ============ CARDS / GRID ============ */
.card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.card{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.5rem;
  transition:border-color var(--trans);
}
.card:hover{border-color:rgba(229,57,53,.4)}
.card__icon{font-size:1.75rem;margin-bottom:.75rem}
.card__title{font-size:1rem;font-weight:700;color:var(--text-primary);margin-bottom:.5rem}
.card__text{font-size:.875rem;color:var(--text-muted);line-height:1.65}

/* ============ TALE OF TAPE ============ */
.tape-table{width:100%;border-collapse:collapse;font-size:.9rem}
.tape-table th{
  background:var(--bg-card);padding:.85rem 1rem;
  font-weight:700;border-bottom:2px solid var(--border);
  text-align:center;font-size:.85rem;
}
.tape-table th:nth-child(1){color:#6eb5ff;text-align:left}
.tape-table th:nth-child(2){color:var(--accent-gold);text-align:center}
.tape-table th:nth-child(3){color:#ff8a65;text-align:right}
.tape-table td{
  padding:.7rem 1rem;border-bottom:1px solid var(--border);
  text-align:center;color:var(--text-muted);
}
.tape-table td:first-child{text-align:left;font-weight:600;color:var(--text-primary)}
.tape-table td:last-child{text-align:right}
.tape-table tr:last-child td{border-bottom:none}
.tape-highlight{color:var(--accent-gold)!important;font-weight:700!important}

/* ============ ODDS BOX ============ */
.odds-grid{display:grid;grid-template-columns:1fr auto 1fr;gap:1rem;align-items:center;margin:1.5rem 0}
.odds-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem;text-align:center}
.odds-card--usyk{border-color:rgba(110,181,255,.3)}
.odds-card--verhoeven{border-color:rgba(255,138,101,.3)}
.odds-card__name{font-size:.75rem;font-weight:700;letter-spacing:.5px;text-transform:uppercase;color:var(--text-dim);margin-bottom:.5rem}
.odds-card__odd{font-size:2rem;font-weight:900;color:var(--accent-gold)}
.odds-card__american{font-size:.85rem;color:var(--text-dim);margin-top:.2rem}
.odds-vs{font-size:1.25rem;font-weight:900;color:var(--text-dim)}

/* ============ CTA BANNER ============ */
.cta-banner{
  background:linear-gradient(135deg,rgba(229,57,53,.12) 0%,rgba(255,215,0,.06) 100%);
  border:1px solid rgba(229,57,53,.25);border-radius:var(--radius-lg);
  padding:2.5rem 2rem;text-align:center;margin:2.5rem 0;
}
.cta-banner__title{font-size:1.5rem;font-weight:800;color:var(--text-primary);margin-bottom:.5rem}
.cta-banner__sub{color:var(--text-muted);margin-bottom:1.75rem;font-size:.95rem}
.cta-banner__btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ============ RELATED LINKS ============ */
.related-links{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.5rem;margin-top:2rem;
}
.related-links__title{font-size:.8rem;font-weight:700;letter-spacing:.8px;text-transform:uppercase;color:var(--text-dim);margin-bottom:1rem}
.related-links__list{list-style:none;display:flex;flex-wrap:wrap;gap:.5rem}
.related-links__item a{
  display:inline-block;padding:.4rem .85rem;
  background:rgba(255,255,255,.04);border:1px solid var(--border);
  border-radius:20px;font-size:.825rem;color:var(--text-muted);
  transition:all var(--trans);
}
.related-links__item a:hover{border-color:var(--accent-red);color:var(--text-primary)}

/* ============ FOOTER ============ */
.footer{background:var(--bg-mid);border-top:1px solid var(--border);padding:3rem 0 1.5rem}
.footer__grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:2rem;margin-bottom:2rem}
.footer__brand p{font-size:.85rem;color:var(--text-dim);margin-top:.75rem;line-height:1.65;max-width:320px}
.footer__heading{font-size:.75rem;font-weight:700;letter-spacing:.8px;text-transform:uppercase;color:var(--text-muted);margin-bottom:.75rem}
.footer__links{list-style:none}
.footer__links li{margin-bottom:.4rem}
.footer__links a{font-size:.85rem;color:var(--text-dim);text-decoration:none;transition:color var(--trans)}
.footer__links a:hover{color:var(--text-primary)}
.footer__bottom{border-top:1px solid var(--border);padding-top:1.5rem}
.footer__legal{font-size:.75rem;color:var(--text-dim);line-height:1.7;max-width:900px}
.footer__legal a{color:var(--text-dim);text-decoration:underline}
.footer__copy{font-size:.75rem;color:var(--text-dim);margin-top:.75rem}
.footer__gambling{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1rem}
.footer__gambling a{
  font-size:.7rem;color:var(--text-dim);
  border:1px solid var(--border);border-radius:4px;
  padding:.3rem .6rem;text-decoration:none;transition:border-color var(--trans);
}
.footer__gambling a:hover{border-color:var(--text-muted);color:var(--text-primary)}

/* ============ MOBILE NAV ============ */
@media(max-width:992px){
  .content-layout{grid-template-columns:1fr}
  .fact-box{position:static}
  .hero__inner{grid-template-columns:1fr}
  .hero__poster{max-width:420px;margin:0 auto}
  .footer__grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .header__nav{display:none}
  .header__cta{display:none}
  .header__menu-btn{display:flex}
  .header__nav--open{
    display:flex;flex-direction:column;gap:0;
    position:fixed;top:var(--header-h);left:0;right:0;
    background:var(--bg-deep);border-bottom:1px solid var(--border);
    padding:1rem 0;z-index:999;
  }
  .header__nav--open .header__nav-link{padding:.75rem 1.5rem;border-bottom:1px solid var(--border);font-size:1rem}
  .hero{padding:3rem 0 2.5rem}
  .hero__title{font-size:2rem;letter-spacing:-1px}
  .hero__cta-group{flex-direction:column}
  .hero__cta-group .btn{width:100%;justify-content:center}
  .countdown__num{font-size:1.5rem}
  .section{padding:2.5rem 0}
  .footer__grid{grid-template-columns:1fr}
  .odds-grid{grid-template-columns:1fr;gap:.75rem}
  .odds-vs{display:none}
  .tape-table{font-size:.8rem}
  .tape-table th,.tape-table td{padding:.5rem .6rem}
}
@media(max-width:480px){
  .hero__title{font-size:1.6rem}
  .hero__badge{font-size:.7rem}
  .btn--lg{padding:.85rem 1.5rem;font-size:1rem}
  .cta-banner{padding:1.5rem 1rem}
  .cta-banner__title{font-size:1.25rem}
}

/* ============ UTILITY ============ */
.text-gold{color:var(--accent-gold)}
.text-red{color:var(--accent-red)}
.text-muted{color:var(--text-muted)}
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}
.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}
.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ============ REDIRECT PAGE ============ */
.redirect-page{
  min-height:100vh;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(160deg,#0a0e1a 0%,#1a0810 50%,#0a0e1a 100%);
  text-align:center;padding:2rem;
}
.redirect-page__content{max-width:480px}
.redirect-page__spinner{
  width:52px;height:52px;
  border:4px solid rgba(255,255,255,.1);border-top-color:var(--accent-red);
  border-radius:50%;animation:spin .9s linear infinite;margin:0 auto 1.5rem;
}
@keyframes spin{to{transform:rotate(360deg)}}
.redirect-page__title{font-size:1.6rem;font-weight:800;margin-bottom:.75rem;color:var(--text-primary)}
.redirect-page__text{font-size:.95rem;color:var(--text-muted);margin-bottom:1.25rem;line-height:1.65}
.redirect-page__countdown{font-size:.875rem;color:var(--text-dim);margin-bottom:1.5rem}
.redirect-page__btn{
  display:inline-block;padding:1rem 2.5rem;
  background:var(--accent-red);color:#fff;border-radius:8px;
  font-weight:700;font-size:1rem;text-decoration:none;
  transition:background var(--trans);
}
.redirect-page__btn:hover{background:var(--accent-red-dark);color:#fff}
.redirect-page__disclaimer{font-size:.7rem;color:var(--text-dim);margin-top:2rem;line-height:1.7}
.redirect-page__disclaimer a{color:var(--text-dim);text-decoration:underline}

/* ============ 404 ============ */
.error-page{
  min-height:100vh;display:flex;align-items:center;justify-content:center;
  text-align:center;padding:2rem;
}
.error-page__code{font-size:6rem;font-weight:900;color:var(--accent-red);line-height:1}
.error-page__title{font-size:1.75rem;font-weight:800;margin:.75rem 0}
.error-page__text{color:var(--text-muted);margin-bottom:2rem}

/* ============ E-E-A-T & Semantic Enhancements ============ */

/* Byline */
.byline{
  display:flex;align-items:center;flex-wrap:wrap;gap:.5rem;
  font-size:.8rem;color:var(--text-muted);padding:.5rem 0 1rem;
  border-bottom:1px solid var(--border);margin-bottom:1.5rem;
}
.byline a{color:var(--text-muted);text-decoration:underline}
.byline a:hover{color:var(--text-primary)}
.byline time{color:var(--text-muted)}

/* Author bio */
.author-bio{
  border:1px solid var(--border);border-radius:8px;
  background:var(--bg-card);padding:1.25rem 1.5rem;
  margin-top:2rem;
}
.author-bio h3{font-size:.875rem;font-weight:700;margin-bottom:.5rem;
  text-transform:uppercase;letter-spacing:.04em;color:var(--text-muted)}
.author-bio p{font-size:.875rem;line-height:1.6;color:var(--text-muted)}
.author-bio strong{color:var(--text-primary)}

/* Sources */
.sources{margin-top:2rem;padding-top:1rem;border-top:1px solid var(--border)}
.sources h3{font-size:.75rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.05em;color:var(--text-muted);margin-bottom:.5rem}
.sources ol{padding-left:1.25rem;font-size:.8rem;color:var(--text-muted);line-height:1.8}
.sources ol li{padding-left:.25rem}
.sources cite{font-style:italic}
.sources a{color:var(--text-muted);text-decoration:underline}
.sources a:hover{color:var(--text-primary)}

/* Abbreviation */
abbr[title]{
  cursor:help;
  text-decoration:underline dotted 1px;
  text-underline-offset:2px;
}

/* Time — semantic accent where needed */
time{font-variant-numeric:tabular-nums}

/* ============ /E-E-A-T ============ */

/* ============ DEEP ANALYSIS SECTIONS ============ */
.deep-analysis{
  margin-top:2.5rem;padding-top:2rem;
  border-top:1px solid var(--border);
}
.deep-analysis h2{
  font-size:clamp(1.2rem,2.5vw,1.65rem);font-weight:800;
  letter-spacing:-.4px;margin-bottom:1rem;color:var(--text-primary);
}
.deep-analysis h3{
  font-size:1.05rem;font-weight:700;color:var(--accent-gold);
  margin:1.5rem 0 .5rem;
}
.deep-analysis p{margin-bottom:.9rem;line-height:1.7}
.deep-analysis figure{margin-top:1.25rem}
.deep-analysis figure figcaption{
  font-size:.8rem;font-weight:700;letter-spacing:.6px;
  text-transform:uppercase;color:var(--text-dim);margin-bottom:.5rem;
}
.deep-analysis__table caption{
  font-size:.75rem;color:var(--text-dim);caption-side:bottom;
  margin-top:.4rem;text-align:left;font-style:italic;
}

/* Career timeline columns */
.deep-analysis__careers{
  display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:1.25rem;
}
.deep-analysis__career-col h3{font-size:.95rem;color:var(--accent-gold);margin-bottom:.75rem}
.deep-analysis__timeline{padding-left:1.2rem;color:var(--text-muted);font-size:.88rem;line-height:1.8}
.deep-analysis__timeline li{margin-bottom:.3rem}
.deep-analysis__timeline time{color:var(--accent-gold);font-weight:600}

/* Historical parallels list */
.deep-analysis__parallels-list{
  list-style:none;padding:0;display:flex;flex-direction:column;gap:1rem;margin-top:1rem;
}
.deep-analysis__parallels-list li{
  padding:1rem 1.25rem;background:var(--bg-card);
  border-left:3px solid var(--accent-red);border-radius:0 var(--radius) var(--radius) 0;
  font-size:.9rem;line-height:1.65;
}
.deep-analysis__parallels-list strong{color:var(--accent-gold)}

/* Compact tape aside (index.html) */
.compact-tape{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.5rem;margin:1.5rem 0;
}
.compact-tape__title{
  font-size:1rem;font-weight:800;letter-spacing:-.3px;
  margin-bottom:1rem;color:var(--text-primary);
}
.compact-tape__cta-text{font-size:.85rem;color:var(--text-muted);margin:.75rem 0 .5rem}
.compact-tape__cta{display:inline-block;margin-top:.25rem}
/* Mobile: stack career columns */
@media(max-width:768px){
  .deep-analysis__careers{grid-template-columns:1fr}
}

/* Compliance / transparency — no-deposit clarification (added 2026-04-23) */
.cta-note{font-size:.82rem;color:#9aa0b4;margin-top:.5rem;font-style:italic}
.cta-badge{display:inline-block;background:rgba(255,215,0,.12);border:1px solid rgba(255,215,0,.4);color:#ffd700;padding:.35rem .8rem;border-radius:20px;font-size:.75rem;font-weight:600;margin-top:.75rem;letter-spacing:.3px}
.no-deposit-inline{color:#ffd700;font-weight:700}

/* ============ QUOTE CARDS (real expert attribution) ============ */
.quote-card{background:rgba(229,57,53,.08);border-left:3px solid #e53935;padding:1.5rem 1.75rem;margin:1.5rem 0;border-radius:6px}
.quote-card blockquote{margin:0 0 1rem;font-size:1.05rem;font-style:italic;line-height:1.6;color:#f0f0f0}
.quote-card blockquote p{margin:0}
.quote-card figcaption{display:flex;flex-direction:column;gap:.35rem;font-size:.9rem}
.quote-card__author{font-style:normal;font-weight:700;color:#ffd700}
.quote-card__author a{color:inherit;text-decoration:none;border-bottom:1px solid rgba(255,215,0,.4)}
.quote-card__role{color:#9aa0b4;font-size:.85rem}
.quote-card__source{color:#9aa0b4;font-size:.8rem;font-style:italic}
.quote-card__source a{color:#ffd700;opacity:.85}

/* ============ INJECTED IMAGES ============ */
.content-image{margin:1.5rem 0;text-align:center}
.content-image img{max-width:100%;height:auto;border-radius:8px;display:block;margin:0 auto;box-shadow:0 6px 20px rgba(0,0,0,.4)}
.content-image figcaption{font-size:.85rem;color:#9aa0b4;font-style:italic;margin-top:.5rem;padding:0 1rem}
.hero__image{max-width:100%;height:auto;border-radius:12px;box-shadow:0 12px 40px rgba(0,0,0,.5);margin-top:1.5rem}
.fighter-portrait-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin:2rem 0}
.fighter-portrait-grid figure{margin:0}
.fighter-portrait-grid img{width:100%;height:auto;border-radius:8px;aspect-ratio:4/5;object-fit:cover}
@media(max-width:640px){.fighter-portrait-grid{grid-template-columns:1fr}}

/* --- Video Player Frame --- */
.video-player {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 1.5rem 0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
  background: #000;
}
.video-player img { display: block; width: 100%; height: auto; transition: transform .35s ease; }
.video-player:hover img, .video-player:focus-visible img { transform: scale(1.03); }
.video-player__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
  transition: background .3s ease;
}
.video-player:hover .video-player__overlay { background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.7)); }
.video-player__play { transition: transform .3s cubic-bezier(.34,1.56,.64,1); filter: drop-shadow(0 6px 16px rgba(229,57,53,.6)); }
.video-player:hover .video-player__play { transform: scale(1.08); }
.video-player__live {
  position: absolute; top: 1rem; left: 1rem;
  display: inline-flex; align-items: center; gap: .4rem;
  background: #e53935; color: #fff;
  padding: .35rem .8rem; border-radius: 4px;
  font-weight: 800; font-size: .78rem; letter-spacing: 1.5px;
  box-shadow: 0 3px 10px rgba(0,0,0,.4);
}
.video-player__live-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: vp-pulse 1.4s infinite; }
@keyframes vp-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.video-player__cta {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  background: #ffd700; color: #0a0e1a;
  padding: .6rem 1.5rem; border-radius: 6px;
  font-weight: 800; font-size: .95rem; letter-spacing: .5px;
  box-shadow: 0 4px 14px rgba(255,215,0,.4); white-space: nowrap;
}
@media (max-width: 640px) {
  .video-player__play svg { width: 64px; height: 64px; }
  .video-player__cta { font-size: .85rem; padding: .5rem 1.2rem; bottom: .9rem; }
  .video-player__live { font-size: .7rem; padding: .25rem .6rem; top: .75rem; left: .75rem; }
}

/* ============================================================
   DESIGN POLISH — ESPN/Sky Sports/DAZN Aesthetic
   Appended 2026-04-24
   ============================================================ */

/* --- Stat Grid Cards --- */
.stat-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;
  margin:1.75rem 0;
}
.stat-card{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.5rem 1.25rem;
  text-align:center;position:relative;overflow:hidden;
  transition:transform var(--trans),box-shadow var(--trans),border-color var(--trans);
}
.stat-card::before{
  content:'';position:absolute;inset:0 0 auto 0;height:3px;
  background:linear-gradient(90deg,var(--accent-red),var(--accent-gold));
}
.stat-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(229,57,53,.25);
  border-color:rgba(255,215,0,.3);
}
.stat-card__num{
  font-size:2.4rem;font-weight:900;
  background:linear-gradient(135deg,var(--accent-gold),#f9a825);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
  text-shadow:none;filter:drop-shadow(0 0 10px rgba(255,215,0,.4));
  line-height:1;margin-bottom:.35rem;letter-spacing:-1px;
}
.stat-card__label{
  font-size:.75rem;font-weight:700;letter-spacing:.8px;
  text-transform:uppercase;color:var(--text-dim);
}
.stat-card__sub{font-size:.8rem;color:var(--text-muted);margin-top:.25rem}
@media(max-width:640px){
  .stat-grid{grid-template-columns:1fr 1fr}
  .stat-card__num{font-size:1.9rem}
}

/* --- Pull Quotes --- */
.pull-quote{
  position:relative;margin:2.5rem 0;padding:2rem 2rem 2rem 3rem;
  background:linear-gradient(135deg,rgba(229,57,53,.07),rgba(255,215,0,.04));
  border-left:4px solid var(--accent-gold);
  border-radius:0 var(--radius-lg) var(--radius-lg) 0;
}
.pull-quote::before{
  content:'\201C';
  position:absolute;top:-.4rem;left:.75rem;
  font-size:5rem;font-weight:900;line-height:1;
  color:var(--accent-gold);opacity:.5;
  font-family:Georgia,serif;pointer-events:none;
}
.pull-quote__text{
  font-size:clamp(1.1rem,2vw,1.4rem);font-style:italic;
  color:var(--text-primary);line-height:1.55;margin:0;font-weight:600;
  padding-left:.5rem;
}
.pull-quote__attr{
  margin-top:1rem;font-size:.85rem;color:var(--accent-gold);
  font-weight:700;font-style:normal;padding-left:.5rem;
}
.pull-quote__attr span{color:var(--text-dim);font-weight:400}

/* --- Section Dividers --- */
.section-divider{
  position:relative;overflow:hidden;height:48px;margin:0;
  display:block;line-height:0;
}
.section-divider svg{width:100%;height:100%;display:block}

/* --- Related Article Cards --- */
.related-cards{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;
  margin:2.5rem 0;
}
.related-card{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
  transition:transform var(--trans),border-color var(--trans),box-shadow var(--trans);
  text-decoration:none;color:inherit;display:flex;flex-direction:column;
}
.related-card:hover{
  transform:translateY(-4px);border-color:var(--accent-red);
  box-shadow:0 8px 24px rgba(229,57,53,.2);color:inherit;
}
.related-card__thumb{
  height:120px;background:linear-gradient(135deg,var(--bg-mid),var(--bg-deep));
  display:flex;align-items:center;justify-content:center;
  font-size:2.5rem;border-bottom:1px solid var(--border);
  flex-shrink:0;overflow:hidden;position:relative;
}
.related-card__thumb::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to bottom,transparent 40%,rgba(10,14,26,.6));
}
.related-card__body{padding:1rem;flex:1}
.related-card__tag{
  font-size:.68rem;font-weight:700;letter-spacing:.8px;
  text-transform:uppercase;color:var(--accent-red);margin-bottom:.4rem;
}
.related-card__title{
  font-size:.9rem;font-weight:700;color:var(--text-primary);
  line-height:1.4;margin-bottom:.35rem;
}
.related-card:hover .related-card__title{color:var(--accent-gold)}
.related-card__desc{font-size:.78rem;color:var(--text-dim);line-height:1.5}
@media(max-width:768px){.related-cards{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.related-cards{grid-template-columns:1fr}}

/* --- See-Also Callout --- */
.see-also-callout{
  display:flex;align-items:flex-start;gap:1rem;
  background:rgba(255,215,0,.06);border:1px solid rgba(255,215,0,.2);
  border-radius:var(--radius);padding:1.25rem 1.5rem;margin:2rem 0;
}
.see-also-callout__icon{
  font-size:1.4rem;flex-shrink:0;margin-top:.15rem;
}
.see-also-callout__content{flex:1;min-width:0}
.see-also-callout__label{
  font-size:.7rem;font-weight:700;letter-spacing:1px;
  text-transform:uppercase;color:var(--accent-gold);margin-bottom:.3rem;
}
.see-also-callout__text{font-size:.9rem;color:var(--text-muted);line-height:1.55}
.see-also-callout__text a{color:var(--text-primary);font-weight:600}
.see-also-callout__text a:hover{color:var(--accent-gold)}

/* --- Anchor TOC --- */
.anchor-toc{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.5rem;margin-bottom:2rem;
}
.anchor-toc__title{
  font-size:.75rem;font-weight:700;letter-spacing:.8px;
  text-transform:uppercase;color:var(--text-dim);margin-bottom:.85rem;
  display:flex;align-items:center;gap:.5rem;
}
.anchor-toc__title::before{
  content:'';display:inline-block;width:3px;height:14px;
  background:var(--accent-gold);border-radius:2px;flex-shrink:0;
}
.anchor-toc__list{list-style:none;padding:0;display:flex;flex-direction:column;gap:.35rem}
.anchor-toc__list li{
  font-size:.875rem;
}
.anchor-toc__list a{
  color:var(--text-muted);text-decoration:none;
  transition:color var(--trans);display:flex;align-items:center;gap:.5rem;
}
.anchor-toc__list a::before{
  content:'';display:inline-block;width:4px;height:4px;
  border-radius:50%;background:var(--border);flex-shrink:0;
  transition:background var(--trans);
}
.anchor-toc__list a:hover{color:var(--text-primary)}
.anchor-toc__list a:hover::before{background:var(--accent-red)}

/* --- Sticky Mobile CTA Bar --- */
.sticky-cta{
  display:none;
  position:fixed;bottom:0;left:0;right:0;z-index:900;
  background:linear-gradient(90deg,var(--accent-red-dark),var(--accent-red));
  padding:.7rem 1.5rem;
  align-items:center;justify-content:space-between;
  gap:1rem;border-top:1px solid rgba(255,255,255,.12);
  box-shadow:0 -4px 20px rgba(229,57,53,.4);
}
.sticky-cta.sticky-cta--visible{display:flex}
.sticky-cta__text{
  font-size:.9rem;font-weight:700;color:#fff;white-space:nowrap;
  overflow:hidden;text-overflow:ellipsis;
}
.sticky-cta__btn{
  background:#fff;color:var(--accent-red);
  padding:.5rem 1.25rem;border-radius:6px;
  font-size:.85rem;font-weight:800;text-decoration:none;
  white-space:nowrap;flex-shrink:0;transition:background var(--trans);
}
.sticky-cta__btn:hover{background:var(--accent-gold);color:#0a0e1a}
.sticky-cta__dismiss{
  background:none;border:none;color:rgba(255,255,255,.6);
  font-size:1.2rem;cursor:pointer;padding:0 0 0 .5rem;flex-shrink:0;
  line-height:1;
}
@media(min-width:768px){.sticky-cta{display:none!important}}

/* --- Accent H2 headlines (gold left bar) --- */
.article h2.h2-accent,
h2.h2-accent{
  position:relative;padding-left:1rem;
}
h2.h2-accent::before{
  content:'';position:absolute;left:0;top:.15em;bottom:.15em;
  width:4px;background:linear-gradient(to bottom,var(--accent-gold),var(--accent-red));
  border-radius:2px;
}

/* --- Hero title upgrade — clamp + accent underline --- */
.hero__title--premium{
  font-size:clamp(1.7rem,3vw,2.5rem);
  font-weight:800;
}
.hero__title--premium .hero-underline{
  position:relative;display:inline-block;
}
.hero__title--premium .hero-underline::after{
  content:'';position:absolute;bottom:-4px;left:0;right:0;
  height:4px;background:linear-gradient(90deg,var(--accent-gold),transparent);
  border-radius:2px;
}

/* --- Countdown glow --- */
.countdown--glow .countdown__num{
  font-family:'Courier New',Courier,monospace;
  font-size:2.75rem!important;
  color:var(--accent-gold)!important;
  text-shadow:0 0 16px rgba(255,215,0,.6),0 0 32px rgba(255,215,0,.3)!important;
}

/* --- Hero dot-grid pattern --- */
.hero--dotgrid::after{
  content:'';position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:28px 28px;z-index:0;
}
.hero--dotgrid > .container{position:relative;z-index:1}

/* --- Page hero clamp upgrade --- */
.page-hero--premium h1{
  font-size:clamp(1.5rem,2.6vw,2.1rem);
  font-weight:800;
  letter-spacing:-.01em;
  text-wrap:balance;
}

/* Prediction TOC sidebar */
.prediction-layout{display:grid;grid-template-columns:220px 1fr 300px;gap:2rem;align-items:start}
.toc-sidebar{
  position:sticky;top:calc(var(--header-h)+1rem);
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.25rem;
}
.toc-sidebar__title{
  font-size:.7rem;font-weight:700;letter-spacing:1px;
  text-transform:uppercase;color:var(--text-dim);margin-bottom:.85rem;
  display:flex;align-items:center;gap:.5rem;
}
.toc-sidebar__title::before{
  content:'';width:3px;height:12px;background:var(--accent-gold);
  border-radius:2px;display:inline-block;flex-shrink:0;
}
.toc-sidebar__list{list-style:none;padding:0;display:flex;flex-direction:column;gap:.25rem}
.toc-sidebar__list a{
  font-size:.8rem;color:var(--text-dim);text-decoration:none;
  display:block;padding:.35rem .5rem;border-radius:4px;
  transition:all var(--trans);line-height:1.4;
}
.toc-sidebar__list a:hover{color:var(--text-primary);background:rgba(255,255,255,.04)}
@media(max-width:1100px){
  .prediction-layout{grid-template-columns:1fr 300px}
  .toc-sidebar{display:none}
}
@media(max-width:992px){
  .prediction-layout{grid-template-columns:1fr}
}

/* ═══════════════════════════════════════════════════════════
   NEWS-SITE EDITORIAL LAYOUT — 2026-04-25
   ═══════════════════════════════════════════════════════════ */
.container--article { max-width: 760px; }

/* Section strip */
.section-strip {
  background: linear-gradient(90deg, #b71c1c 0%, #8b1313 50%, #6e0e0e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: var(--header-h);
}
.section-strip > .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .55rem; padding-bottom: .55rem; }
.section-strip__crumbs { display: flex; flex-wrap: wrap; gap: .35rem; list-style: none; margin: 0; padding: 0; font-size: .78rem; font-weight: 600; letter-spacing: .04em; }
.section-strip__crumbs li { display: flex; align-items: center; gap: .35rem; }
.section-strip__crumbs a { color: rgba(255, 255, 255, 0.85); text-decoration: none; text-transform: uppercase; }
.section-strip__crumbs a:hover { color: #fff; text-decoration: underline; }
.section-strip__sep { color: rgba(255, 255, 255, 0.45); font-weight: 400; }
.section-strip__current { color: #fff; text-transform: uppercase; }
.section-strip__live { display: inline-flex; align-items: center; gap: .45rem; color: #fff; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.section-strip__dot { width: 7px; height: 7px; background: var(--accent-gold); border-radius: 50%; animation: blink 1.4s infinite; }

/* Article header */
.article-header {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
  padding: 2rem 0 0;
  margin-top: 0;
  border-bottom: 1px solid var(--border);
}
.article-header > .container { padding-top: 1rem; padding-bottom: 0; }
.article-eyebrow { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.article-eyebrow__kicker { color: var(--accent-gold); border-left: 3px solid var(--accent-gold); padding-left: .65rem; }
.article-eyebrow__date { color: var(--text-muted); font-weight: 500; letter-spacing: .04em; }
.article-title {
  font-size: clamp(1.5rem, 2.6vw, 2.15rem) !important;
  font-weight: 800 !important;
  line-height: 1.22 !important;
  letter-spacing: -.012em !important;
  color: var(--text-primary) !important;
  margin: 0 0 1rem !important;
  text-wrap: balance;
}
.article-deck { font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.55; color: #c8d0e0; font-weight: 400; margin: 0 0 1.5rem; max-width: 70ch; }
.article-deck a { color: var(--accent-gold); }

/* Byline */
.article-byline { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: .95rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 1.6rem; }
.byline-author { display: flex; align-items: center; gap: .85rem; }
.byline-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #e53935 0%, #ad1818 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 800; letter-spacing: .04em; flex-shrink: 0; }
.byline-meta-wrap { display: flex; flex-direction: column; gap: .15rem; }
.byline-name { font-size: .92rem; font-weight: 700; color: var(--text-primary); }
.byline-name a { color: inherit; text-decoration: none; }
.byline-name a:hover { color: var(--accent-gold); }
.byline-meta { font-size: .8rem; color: var(--text-muted); display: flex; flex-wrap: wrap; gap: .35rem; align-items: center; }
.byline-sep { color: var(--border); }
.byline-share { display: flex; gap: .4rem; }
.byline-share__btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 215, 0, 0.08); border: 1px solid var(--border); color: var(--text-primary); display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 700; text-decoration: none; transition: background .2s, border-color .2s, color .2s; }
.byline-share__btn:hover { background: rgba(255, 215, 0, 0.18); border-color: var(--accent-gold); color: var(--accent-gold); }

/* Article hero figure */
.article-figure { margin: 0; padding: 0 0 1.25rem; background: var(--bg-deep); }
.article-figure .video-player { margin: 0 0 .55rem; border-radius: 4px; }
.article-figcaption { font-size: .82rem; color: var(--text-muted); line-height: 1.5; padding-top: .55rem; border-top: 1px dotted rgba(255, 255, 255, 0.08); }
.article-figcaption__credit { color: rgba(255, 255, 255, 0.35); font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; margin-left: .45rem; }

/* Keyfacts */
.article-keyfacts { background: var(--bg-mid); border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.article-keyfacts > .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-top: .9rem; padding-bottom: .9rem; flex-wrap: wrap; }
.keyfacts__list { display: flex; flex-wrap: wrap; gap: 0; margin: 0; flex: 1 1 auto; min-width: 0; }
.keyfacts__list > div { padding: 0 1rem; border-left: 1px solid var(--border); display: flex; flex-direction: column; gap: .15rem; flex: 0 1 auto; }
.keyfacts__list > div:first-child { padding-left: 0; border-left: none; }
.keyfacts__list dt { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); white-space: nowrap; }
.keyfacts__list dd { font-size: .9rem; font-weight: 700; color: var(--text-primary); margin: 0; white-space: nowrap; }
.keyfacts__gold { color: var(--accent-gold) !important; }

/* Compact countdown inside keyfacts */
.article-keyfacts .countdown,
.countdown--inline {
  background: transparent !important;
  border: 1px solid rgba(255, 215, 0, 0.4) !important;
  border-radius: 6px !important;
  padding: .5rem .9rem !important;
  display: flex !important;
  align-items: center !important;
  gap: .7rem !important;
  margin: 0 !important;
  flex-shrink: 0;
  font-family: inherit !important;
  text-shadow: none !important;
}
.article-keyfacts .countdown__label,
.countdown--inline .countdown__label { font-size: .65rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: .08em !important; color: var(--accent-gold) !important; margin: 0 !important; white-space: nowrap !important; }
.article-keyfacts .countdown__timer,
.article-keyfacts .countdown__units,
.countdown--inline .countdown__timer,
.countdown--inline .countdown__units { display: flex !important; align-items: baseline !important; gap: .35rem !important; margin: 0 !important; }
.article-keyfacts .countdown__unit,
.countdown--inline .countdown__unit { display: inline-flex !important; align-items: baseline !important; gap: .15rem !important; flex-direction: row !important; }
.article-keyfacts .countdown__num,
.countdown--inline .countdown__num { font-size: 1.1rem !important; font-weight: 800 !important; color: var(--text-primary) !important; line-height: 1 !important; min-width: auto !important; display: inline !important; font-family: inherit !important; text-shadow: none !important; }
.article-keyfacts .countdown__unit-label,
.article-keyfacts .countdown__word,
.countdown--inline .countdown__unit-label,
.countdown--inline .countdown__word { font-size: .7rem !important; color: var(--text-muted) !important; text-transform: lowercase !important; letter-spacing: 0 !important; margin: 0 !important; display: inline !important; }
.article-keyfacts .countdown__sep,
.countdown--inline .countdown__sep { display: none !important; }

/* Section typography upgrade */
.section { padding: 2rem 0; }
.section__title { font-size: clamp(1.3rem, 2vw, 1.7rem) !important; font-weight: 800; letter-spacing: -.005em; margin: 1.5rem 0 .85rem; color: var(--text-primary); position: relative; padding-left: .9rem; border-left: 4px solid var(--accent-red); line-height: 1.25; }
main .container { max-width: 760px; }

/* Mobile */
@media (max-width: 720px) {
  .section-strip > .container { flex-direction: column; align-items: flex-start; gap: .35rem; padding: .5rem 0; }
  .article-byline { flex-direction: column; align-items: flex-start; }
  .keyfacts__list > div { flex: 1 1 calc(50% - 1px); padding: .6rem .8rem; border-left: 1px solid var(--border); border-top: 1px solid var(--border); }
  .article-keyfacts > .container { flex-direction: column; align-items: stretch; }
}
/* ═══════════════════════════════════════════════════════════
   HOW-TO 3-STEP CALLOUT — 2026-04-25
   ═══════════════════════════════════════════════════════════ */
.howto {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.08) 0%, rgba(255, 215, 0, 0.06) 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding: 2.5rem 0;
  margin: 1rem 0 2rem;
}
.howto__title {
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 .8rem;
  letter-spacing: -.01em;
}
.howto__intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: .9;
}
.howto__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 0 0 1.5rem;
  padding: 0;
}
.howto__step {
  display: flex;
  gap: .85rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 10px;
  padding: 1.2rem 1.1rem;
  transition: border-color .2s, transform .2s;
}
.howto__step:hover { border-color: rgba(255, 215, 0, 0.45); transform: translateY(-2px); }
.howto__step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #d4a800);
  color: #0b1e3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.howto__step-body { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.howto__step-title { font-size: 1rem; font-weight: 700; margin: 0; line-height: 1.3; }
.howto__step-text { font-size: .85rem; line-height: 1.5; opacity: .85; margin: 0; }
.howto__cta-inline {
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
}
.howto__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 215, 0, 0.18);
}
.howto__badges {
  font-size: .85rem;
  font-weight: 600;
  opacity: .85;
  letter-spacing: .01em;
}
.howto__cta-main {
  background: linear-gradient(135deg, #ffd700, #d4a800);
  color: #0b1e3a;
  font-weight: 800;
  font-size: .92rem;
  padding: .85rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}
.howto__cta-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.35);
  color: #0b1e3a;
}
@media (max-width: 600px) {
  .howto__steps { grid-template-columns: 1fr; }
  .howto__footer { flex-direction: column; align-items: stretch; }
  .howto__cta-main { text-align: center; }
}
/* ═══════════════════════════════════════════════════════════
   MOBILE OVERFLOW FIXES — 2026-04-25
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Keyfacts: allow wrap, drop nowrap, stack vertically */
  .article-keyfacts > .container { flex-direction: column; align-items: stretch; gap: .8rem; }
  .keyfacts__list { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: .5rem .8rem; }
  .keyfacts__list > div { padding: 0 !important; border-left: none !important; flex: unset; }
  .keyfacts__list dt { white-space: normal !important; font-size: .62rem !important; }
  .keyfacts__list dd { white-space: normal !important; font-size: .82rem !important; line-height: 1.25; }

  /* Countdown: compact on mobile */
  .article-keyfacts .countdown,
  .countdown--inline {
    width: 100% !important;
    flex-wrap: wrap !important;
    gap: .35rem !important;
  }
  .article-keyfacts .countdown__units,
  .countdown--inline .countdown__units { gap: .25rem !important; flex-wrap: wrap !important; }
  .article-keyfacts .countdown__num,
  .countdown--inline .countdown__num { font-size: .95rem !important; }
  .article-keyfacts .countdown__word,
  .countdown--inline .countdown__word { font-size: .62rem !important; }
  .article-keyfacts .countdown__unit-label,
  .countdown--inline .countdown__unit-label { font-size: .62rem !important; }

  /* Howto: tighten on small screens */
  .howto { padding: 1.5rem 0; }
  .howto__steps { gap: .75rem; }
  .howto__step { padding: .9rem .8rem; }
  .howto__cta-main { width: 100%; text-align: center; padding: .9rem 1rem; font-size: .88rem; }
  .howto__badges { font-size: .78rem; }

  /* Section strip: smaller padding */
  .section-strip > .container { padding: .4rem 0 !important; }
  .section-strip__crumbs { font-size: .7rem; }
  .section-strip__live { font-size: .62rem; }

  /* Article header: tighter */
  .article-header { padding: 1rem 0 0; }
  .article-eyebrow { font-size: .65rem; }
  .article-title { font-size: 1.35rem !important; line-height: 1.22 !important; }
  .article-deck { font-size: .92rem; line-height: 1.5; }

  /* Tables don't fit mobile - allow scroll */
  .tz-table, .compact-tape__table, table { font-size: .82rem; }
  table { display: block; max-width: 100%; overflow-x: auto; }

  /* Container side padding */
  .container, .container--article { padding: 0 .9rem !important; }

  /* General: prevent any wide image/div from breaking layout */
  img, video, iframe, .video-player { max-width: 100%; height: auto; }
}
/* Additional mobile fixes (v2) */
@media (max-width: 720px) {
  /* CTA buttons must fit viewport */
  .btn, .btn--lg, .btn--primary, .btn--secondary, .btn--gold {
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: center;
    padding: .85rem 1rem !important;
    font-size: .92rem !important;
  }
  .btn__logo, .btn img { max-width: 60px; height: auto; }

  /* Tables: wrap entire table in scrollable container effectively */
  table { table-layout: auto; min-width: 0 !important; word-break: break-word; }
  th, td { padding: .5rem .4rem !important; font-size: .8rem !important; }

  /* Anything inside main can't exceed viewport */
  main *, .article-header *, .howto * { max-width: 100% !important; box-sizing: border-box; }

  /* Stat-grid responsive */
  .stat-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important; gap: .5rem !important; }
  .stat-card { padding: .9rem .6rem !important; }

  /* Cards (3-col) → 1-col on mobile */
  .cards { grid-template-columns: 1fr !important; }
  .odds-cards { grid-template-columns: 1fr !important; }

  /* Hero CTA group / inline CTAs wrap */
  .hero__ctas, .hero__cta-group, .hero__cta { flex-direction: column; align-items: stretch !important; gap: .6rem !important; }
}
/* Additional mobile fixes (v3) — collapse multi-col grids on narrow screens */
@media (max-width: 900px) {
  .content-layout,
  .article-grid,
  .prediction-layout,
  .hero__inner,
  .grid-2col,
  .two-col {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .content-layout > *,
  .article-grid > *,
  .prediction-layout > *,
  .hero__inner > * {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}
/* Additional mobile fixes (v4) — kill nowrap on long headings */
@media (max-width: 720px) {
  .section__title-rule h2,
  .section__title,
  .h2-accent,
  h1, h2, h3 {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }
  .section__title-rule { flex-wrap: wrap !important; }
  /* sticky bottom CTA: smaller text */
  .sticky-cta__text { white-space: normal !important; font-size: .72rem !important; }
}
/* Additional mobile fixes (v5) — universal grid collapse */
@media (max-width: 900px) {
  .article-layout,
  .deep-analysis,
  .deep-analysis__career-cols,
  .stat-grid,
  .fighter-portrait-grid,
  .related-cards,
  .article-grid,
  .prediction-layout,
  .toc-sidebar,
  .article-keyfacts > .container,
  [class*="grid"]:not(.howto__steps):not(.stat-grid):not(.cards):not(.odds-cards) {
    grid-template-columns: 1fr !important;
  }
  .deep-analysis__career-col,
  .article-layout > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  /* Author bio + sources blocks */
  .author-bio, .sources, .compact-tape__cta-text, blockquote {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   COOKIE BAR — 2026-04-25
   ═══════════════════════════════════════════════════════════ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(20, 25, 45, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 215, 0, 0.25);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: #e8e8f0;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar a {
  color: #ffd700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-bar a:hover { text-decoration-thickness: 2px; }
.cookie-bar__btn {
  flex-shrink: 0;
  padding: 0.55rem 1.2rem;
  background: linear-gradient(135deg, #ffd700, #d4a800);
  color: #0b1e3a;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cookie-bar__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.3);
}
@media (max-width: 720px) {
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 0.75rem 1rem;
    gap: 0.6rem;
    font-size: 0.78rem;
  }
  .cookie-bar__btn { width: 100%; }
}
