/* =============================================================
   RESET & BASE
   ============================================================= */
*,*::before,*::after{box-sizing:border-box}
html{
  -webkit-text-size-adjust:100%;
  text-rendering:optimizeLegibility;
  scroll-behavior:smooth;
}
body{
  margin:0;
  font-family:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:1.65;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img,svg{display:block;max-width:100%;height:auto}
a{color:var(--accent);text-decoration:none;transition:color .18s ease}
a:hover{color:var(--accent-hover)}
ul,ol{padding-left:1.2em}
li{margin:.35em 0}
hr{border:0;border-top:1px solid var(--border);margin:2.5rem 0}

:root{
  --bg:#0b0118;
  --surface:#170a31;
  --surface-2:#221344;
  --surface-3:#2a1956;
  --border:#34205e;
  --border-bright:#4a2f86;
  --primary:#7d3df0;
  --primary-hover:#9966ff;
  --primary-soft:rgba(125,61,240,.18);
  --accent:#ffc857;
  --accent-hover:#ffd57a;
  --canada:#e63946;
  --success:#22d39a;
  --warn:#ffb86b;
  --text:#e9def7;
  --text-muted:#9d8fc1;
  --heading:#ffffff;

  --radius-sm:6px;
  --radius:10px;
  --radius-lg:16px;
  --shadow-card:0 8px 28px -12px rgba(0,0,0,.55), 0 0 0 1px rgba(125,61,240,.08) inset;
  --shadow-elev:0 24px 56px -24px rgba(125,61,240,.4);
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
.display,h1,h2,h3{
  font-family:'Bebas Neue','Manrope',sans-serif;
  font-weight:400;
  color:var(--heading);
  letter-spacing:.01em;
  line-height:1.05;
  margin:0 0 .6em;
}
h1{font-size:clamp(2.4rem,6vw,5.2rem);letter-spacing:.005em}
h2{font-size:clamp(2rem,4vw,3.4rem);margin-top:.2em}
h3{font-size:clamp(1.4rem,2.4vw,2rem)}
h4{
  font-family:'Manrope',sans-serif;
  font-weight:700;
  font-size:1.05rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--accent);
  margin:0 0 .8em;
}
p{margin:0 0 1.2em}
strong{color:var(--heading);font-weight:700}
mark{background:linear-gradient(180deg,transparent 55%,var(--primary-soft) 55%);color:inherit;padding:0 .15em}

.eyebrow{
  font-family:'Manrope',sans-serif;
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--accent);
  margin:0 0 .9rem;
  display:inline-flex;
  align-items:center;
  gap:.6rem;
}
.eyebrow::before{
  content:"";
  width:28px;height:2px;
  background:var(--accent);
  display:inline-block;
}

/* =============================================================
   LAYOUT
   ============================================================= */
.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}
.section{padding:5rem 0;position:relative}
.section--tight{padding:3rem 0}
@media (max-width:720px){
  .section{padding:3rem 0}
  .container{padding:0 18px}
}

/* =============================================================
   TICKER (Rotowire-style top status band)
   ============================================================= */
.ticker{
  background:linear-gradient(90deg,#170a31,#221344 50%,#170a31);
  border-bottom:1px solid var(--border);
  font-size:.82rem;
  overflow:hidden;
  position:relative;
}
.ticker__inner{
  display:flex;
  align-items:center;
  gap:2rem;
  padding:.6rem 0;
  white-space:nowrap;
  animation:tickerSlide 38s linear infinite;
}
.ticker__item{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  color:var(--text-muted);
  flex-shrink:0;
}
.ticker__dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 4px rgba(34,211,154,.18);
  flex-shrink:0;
}
.ticker__dot--warn{background:var(--warn);box-shadow:0 0 0 4px rgba(255,184,107,.18)}
.ticker__dot--canada{background:var(--canada);box-shadow:0 0 0 4px rgba(230,57,70,.18)}
.ticker__odds{
  color:var(--accent);
  font-weight:700;
  font-variant-numeric:tabular-nums;
}
@keyframes tickerSlide{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* =============================================================
   HEADER
   ============================================================= */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(11,1,24,.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
.site-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  padding:.85rem 0;
}
.brand{display:inline-flex;align-items:center;gap:.65rem;text-decoration:none}
.brand__mark{
  width:36px;height:36px;border-radius:8px;
  background:linear-gradient(135deg,var(--primary),var(--canada));
  display:grid;place-items:center;
  font-family:'Bebas Neue';color:#fff;font-size:1.15rem;
  box-shadow:0 4px 14px -4px rgba(125,61,240,.6);
  letter-spacing:.04em;
}
.brand__name{
  font-family:'Bebas Neue';color:var(--heading);
  font-size:1.45rem;letter-spacing:.04em;
  line-height:1;
}
.brand__name span{color:var(--accent)}

.primary-nav{display:flex;align-items:center;gap:1.4rem}
.primary-nav a{
  color:var(--text-muted);
  font-weight:600;
  font-size:.92rem;
  text-decoration:none;
  position:relative;
  transition:color .15s ease;
}
.primary-nav a:hover{color:var(--heading)}
.primary-nav a::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-6px;
  height:2px;
  background:var(--primary);
  transform:scaleX(0);
  transition:transform .2s ease;
}
.primary-nav a:hover::after{transform:scaleX(1)}

.header-ctas{display:flex;align-items:center;gap:.6rem}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  font-family:'Manrope',sans-serif;
  font-weight:700;
  font-size:.95rem;
  line-height:1;
  padding:.85rem 1.3rem;
  border-radius:var(--radius);
  border:1px solid transparent;
  cursor:pointer;
  text-decoration:none;
  transition:transform .15s ease,background .15s ease,color .15s ease,box-shadow .15s ease,border-color .15s ease;
  letter-spacing:.01em;
  white-space:nowrap;
}
.btn--ghost{
  background:transparent;color:var(--heading);
  border-color:var(--border-bright);
}
.btn--ghost:hover{background:var(--primary-soft);border-color:var(--primary)}
.btn--primary{
  background:linear-gradient(180deg,var(--accent),#f3b13d);
  color:#1a0f00;
  box-shadow:0 6px 18px -6px rgba(255,200,87,.55);
}
.btn--primary:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px -6px rgba(255,200,87,.7);
  color:#1a0f00;
}
.btn--lg{padding:1.05rem 1.7rem;font-size:1.02rem}

.menu-toggle{
  display:none;
  background:transparent;border:1px solid var(--border-bright);
  color:var(--heading);
  width:42px;height:42px;border-radius:8px;
  cursor:pointer;
  align-items:center;justify-content:center;
}
.menu-toggle svg{width:20px;height:20px}

@media (max-width:960px){
  .primary-nav{
    position:absolute;
    top:100%;left:0;right:0;
    background:var(--surface);
    border-bottom:1px solid var(--border);
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
  }
  .primary-nav.open{max-height:380px}
  .primary-nav a{padding:1rem 24px;border-bottom:1px solid var(--border)}
  .primary-nav a::after{display:none}
  .menu-toggle{display:inline-flex}
  .header-ctas .btn:not(.btn--primary){display:none}
.brand__name{font-size:1.15rem}
.header-ctas{gap:.35rem}
.header-ctas .btn--primary{padding:.65rem .9rem;font-size:.82rem}
}

/* =============================================================
   BREADCRUMB
   ============================================================= */
.breadcrumb{
  padding:1rem 0;
  font-size:.85rem;
  color:var(--text-muted);
  border-bottom:1px solid var(--border);
}
.breadcrumb ol{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  padding:0;margin:0;
}
.breadcrumb li{margin:0;display:inline-flex;align-items:center;gap:.6rem}
.breadcrumb li+li::before{content:"›";color:var(--primary);font-weight:700}
.breadcrumb a{color:var(--text-muted)}
.breadcrumb a:hover{color:var(--heading)}
.breadcrumb [aria-current]{color:var(--heading)}

/* =============================================================
   HERO
   ============================================================= */
.hero{
  position:relative;
  padding:4.5rem 0 5rem;
  overflow:hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(125,61,240,.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(230,57,70,.18) 0%, transparent 60%);
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(125,61,240,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(125,61,240,.06) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(180deg,transparent,#000 25%,#000 70%,transparent);
  -webkit-mask-image:linear-gradient(180deg,transparent,#000 25%,#000 70%,transparent);
  pointer-events:none;
}
.hero__inner{
  position:relative;z-index:1;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:3.5rem;
  align-items:center;
}
.hero__copy h1{margin-bottom:.6rem;text-transform:uppercase}
.hero__copy .sub{font-size:1.18rem;color:var(--text);max-width:55ch;margin-bottom:1.8rem}
.hero__meta{
  display:flex;flex-wrap:wrap;gap:1.5rem;
  font-size:.9rem;color:var(--text-muted);
  margin-bottom:2rem;
}
.hero__meta-item{display:inline-flex;align-items:center;gap:.5rem}
.hero__meta-item strong{color:var(--accent);font-weight:700}
.hero__author{
  display:inline-flex;align-items:center;gap:.7rem;
  font-size:.88rem;color:var(--text-muted);
}
.hero__author-avatar{
  width:36px;height:36px;border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--canada));
  display:grid;place-items:center;
  font-family:'Bebas Neue';color:#fff;
}
.hero__author strong{color:var(--heading)}

.hero__media{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:var(--surface-2);
  box-shadow:var(--shadow-elev),0 0 0 1px var(--border-bright);
}
.hero__media img{
  display:block;width:100%;height:auto;
  aspect-ratio:1600/900;
  object-fit:cover;
}
.hero__media-badge{
  position:absolute;
  left:18px;top:18px;
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.45rem .8rem;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(8px);
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
}
.hero__media-badge::before{
  content:"";
  width:8px;height:8px;border-radius:50%;
  background:var(--canada);
  box-shadow:0 0 0 4px rgba(230,57,70,.25);
  animation:pulse 1.8s ease infinite;
}
@keyframes pulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.7;transform:scale(1.2)}
}

.hero__stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  margin-top:2rem;
}
.hero__stat{
  background:var(--surface);
  padding:1.2rem 1rem;
  text-align:center;
}
.hero__stat .n{
  font-family:'Bebas Neue';
  font-size:2.1rem;
  color:var(--accent);
  line-height:1;
  display:block;
}
.hero__stat .l{
  font-size:.72rem;
  text-transform:uppercase;
  color:var(--text-muted);
  letter-spacing:.14em;
  margin-top:.25rem;
}

@media (max-width:960px){
  .hero{padding:3rem 0}
  .hero__inner{grid-template-columns:1fr;gap:2.5rem}
  .hero__stats{grid-template-columns:repeat(2,1fr)}
}

/* =============================================================
   SECTION HEADERS
   ============================================================= */
.section-head{margin-bottom:2.5rem}
.section-head h2{text-transform:uppercase;margin-bottom:.4rem}
.section-head .lede{
  color:var(--text);
  font-size:1.08rem;
  max-width:75ch;
}

/* =============================================================
   OPERATORS — Informational comparison (NO per-row CTAs)
   ============================================================= */
.operators{display:grid;gap:1rem}
.operator{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:1.5rem;
  display:grid;
  grid-template-columns:60px 96px 1fr 200px;
  gap:1.8rem;
  align-items:center;
  position:relative;
  transition:border-color .18s ease,transform .18s ease;
}
.operator:hover{border-color:var(--border-bright);transform:translateY(-2px)}
.operator__rank{
  font-family:'Bebas Neue';
  font-size:2.8rem;
  color:var(--accent);
  line-height:1;
  text-align:center;
}
.operator__rank--top{
  color:#1a0f00;
  background:linear-gradient(180deg,var(--accent),#f3b13d);
  width:60px;height:60px;
  display:grid;place-items:center;
  border-radius:14px;
  font-size:2rem;
}
.operator__logo{
  width:96px;height:96px;
  border-radius:var(--radius);
  background:var(--surface-2);
  border:1px solid var(--border);
  overflow:hidden;
  display:grid;place-items:center;
}
.operator__logo img{width:100%;height:100%;object-fit:cover}
.operator__body h3{
  font-family:'Bebas Neue';
  font-size:1.9rem;
  margin:0 0 .4rem;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.operator__url{
  display:inline-block;
  font-family:'Manrope',monospace;
  font-size:.78rem;
  color:var(--text-muted);
  margin-bottom:.7rem;
}
.operator__features{
  list-style:none;padding:0;margin:0 0 .6rem;
  display:flex;flex-wrap:wrap;gap:.4rem;
}
.operator__features li{
  margin:0;
  background:var(--primary-soft);
  border:1px solid var(--border-bright);
  color:var(--text);
  padding:.3rem .7rem;
  border-radius:999px;
  font-size:.78rem;
  font-weight:600;
}
.operator__note{
  color:var(--text-muted);
  font-size:.92rem;
  margin:0;
}
.operator__rating{
  text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:.4rem;
}
.operator__rating .score{
  font-family:'Bebas Neue';
  font-size:2.8rem;
  color:var(--heading);
  line-height:1;
}
.operator__rating .stars{
  color:var(--accent);
  letter-spacing:.1em;
  font-size:.9rem;
}
.operator__rating .label{
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--text-muted);
}
.operator__pin{
  position:absolute;
  top:-1px;right:1.5rem;
  background:var(--canada);
  color:#fff;
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.14em;
  padding:.4rem .8rem;
  border-radius:0 0 6px 6px;
}

@media (max-width:880px){
  .operator{
    grid-template-columns:auto 80px 1fr;
    gap:1.2rem;
  }
  .operator__logo{width:80px !important;height:80px !important}
  .operator__rating{
    grid-column:1/-1;
    flex-direction:row;
    justify-content:center;
    gap:1rem;
  }
  .operator__rating .score{font-size:2rem}
}

/* =============================================================
   GENERIC PROSE CONTAINER
   ============================================================= */
.prose{
  max-width:78ch;
}
.prose p,.prose ul,.prose ol{font-size:1.02rem;line-height:1.75}
.prose h3{margin-top:2.4rem;text-transform:uppercase}
.prose h4{margin-top:2rem}

/* =============================================================
   FEATURE CARD GRID
   ============================================================= */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1rem;
}
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:1.5rem;
  position:relative;
  transition:border-color .18s ease,transform .18s ease;
}
.card:hover{border-color:var(--border-bright);transform:translateY(-2px)}
.card h3{
  font-size:1.4rem;
  text-transform:uppercase;
  margin-bottom:.5rem;
}
.card__icon{
  width:42px;height:42px;
  background:var(--primary-soft);
  border:1px solid var(--border-bright);
  color:var(--accent);
  border-radius:10px;
  display:grid;place-items:center;
  margin-bottom:1rem;
  font-family:'Bebas Neue';
  font-size:1.4rem;
}

/* =============================================================
   GROUPS GRID
   ============================================================= */
.groups{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:1.2rem;
}
.group{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:1.6rem 1.5rem;
  position:relative;
  overflow:hidden;
}
.group::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;height:3px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
}
.group--canada::before{
  background:linear-gradient(90deg,var(--canada),var(--accent));
}
.group__head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:1rem;
}
.group__letter{
  font-family:'Bebas Neue';
  font-size:2.6rem;
  color:var(--accent);
  line-height:1;
}
.group__chips{
  display:flex;flex-wrap:wrap;gap:.35rem;
  justify-content:flex-end;
}
.chip{
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  padding:.3rem .65rem;
  border-radius:999px;
  background:var(--primary-soft);
  border:1px solid var(--border-bright);
  color:var(--text);
  white-space:nowrap;
}
.chip--canada{background:rgba(230,57,70,.16);border-color:rgba(230,57,70,.4);color:#ffd1d6}
.chip--warn{background:rgba(255,184,107,.14);border-color:rgba(255,184,107,.35);color:#ffd9b3}
.chip--success{background:rgba(34,211,154,.14);border-color:rgba(34,211,154,.35);color:#a5f0d4}

.group__teams{
  list-style:none;padding:0;margin:0 0 1.2rem;
}
.group__teams li{
  display:flex;align-items:center;justify-content:space-between;
  gap:.7rem;
  padding:.6rem 0;
  margin:0;
  border-bottom:1px solid var(--border);
  font-weight:600;
  color:var(--text);
}
.group__teams li:last-child{border-bottom:none}
.group__team{display:inline-flex;align-items:center;gap:.7rem}
.group__flag{
  width:24px;height:24px;border-radius:4px;
  background:var(--surface-3);
  flex-shrink:0;
  display:grid;place-items:center;
  font-size:.65rem;
  color:var(--text-muted);
  font-weight:700;
}
.group__odds{
  font-family:'Bebas Neue';
  font-size:1.05rem;
  color:var(--accent);
  font-variant-numeric:tabular-nums;
}
.group__note{
  font-size:.88rem;
  color:var(--text-muted);
  margin:0;
  padding-top:1rem;
  border-top:1px solid var(--border);
}
.group__note strong{color:var(--heading)}

/* =============================================================
   STANDINGS PLACEHOLDER
   ============================================================= */
.standings-note{
  background:linear-gradient(135deg,var(--surface),var(--surface-2));
  border:1px solid var(--border-bright);
  border-radius:var(--radius-lg);
  padding:1.8rem;
  text-align:center;
}
.standings-note p{margin-bottom:0;color:var(--text)}
.standings-note .pulse{
  display:inline-flex;align-items:center;gap:.55rem;
  font-weight:700;color:var(--success);
  margin-bottom:.7rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.82rem;
}
.standings-note .pulse::before{
  content:"";width:10px;height:10px;border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 4px rgba(34,211,154,.18);
  animation:pulse 1.8s ease infinite;
}

/* =============================================================
   BRACKET (CSS-only two-pathway)
   ============================================================= */
.bracket{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  margin-top:1.5rem;
}
.bracket__col{
  display:flex;
  flex-direction:column;
  justify-content:space-around;
  gap:.7rem;
}
.bracket__col-label{
  font-family:'Bebas Neue';
  text-align:center;
  color:var(--accent);
  letter-spacing:.1em;
  font-size:1.05rem;
  margin-bottom:.4rem;
  text-transform:uppercase;
}
.bracket__match{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:.7rem .9rem;
  font-size:.86rem;
  position:relative;
}
.bracket__match strong{color:var(--heading);display:block}
.bracket__match span{color:var(--text-muted);font-size:.78rem}
.bracket__final{
  grid-column:1/-1;
  text-align:center;
  background:linear-gradient(135deg,var(--primary),var(--canada));
  color:#fff;
  padding:1.2rem;
  border-radius:var(--radius);
  margin-top:1rem;
  font-family:'Bebas Neue';
  font-size:1.6rem;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.bracket__final small{
  display:block;
  font-family:'Manrope',sans-serif;
  font-size:.8rem;
  text-transform:none;
  letter-spacing:0;
  font-weight:400;
  opacity:.9;
  margin-top:.3rem;
}

@media (max-width:760px){
  .bracket{grid-template-columns:1fr 1fr;gap:.6rem}
}

/* =============================================================
   TIMELINE
   ============================================================= */
.timeline{
  position:relative;
  padding-left:2rem;
  border-left:2px solid var(--border-bright);
}
.timeline__item{
  position:relative;
  padding:0 0 2.2rem 1.5rem;
}
.timeline__item::before{
  content:"";
  position:absolute;
  left:-2.55rem;top:.3rem;
  width:18px;height:18px;
  border-radius:50%;
  background:var(--surface);
  border:3px solid var(--primary);
  box-shadow:0 0 0 4px var(--bg);
}
.timeline__item--active::before{
  background:var(--accent);
  border-color:var(--accent);
  box-shadow:0 0 0 4px var(--bg),0 0 24px rgba(255,200,87,.6);
}
.timeline__item--canada::before{
  background:var(--canada);
  border-color:var(--canada);
}
.timeline__item--final::before{
  background:linear-gradient(135deg,var(--primary),var(--canada));
  border-color:var(--accent);
  width:22px;height:22px;
  left:-2.7rem;
}
.timeline__date{
  font-family:'Bebas Neue';
  color:var(--accent);
  font-size:1.4rem;
  text-transform:uppercase;
  letter-spacing:.04em;
  display:block;
  margin-bottom:.2rem;
}
.timeline__title{
  font-weight:700;
  color:var(--heading);
  font-size:1.05rem;
  margin:0 0 .3rem;
}
.timeline__detail{
  font-size:.92rem;
  color:var(--text-muted);
  margin:0;
}

/* =============================================================
   FACTS / STAT NUMBERS
   ============================================================= */
.facts{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1rem;
}
.fact{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:1.6rem;
  position:relative;
  overflow:hidden;
}
.fact::after{
  content:"";
  position:absolute;
  right:-20px;bottom:-20px;
  width:120px;height:120px;
  background:radial-gradient(circle, var(--primary-soft), transparent 70%);
  pointer-events:none;
}
.fact__n{
  font-family:'Bebas Neue';
  font-size:3.4rem;
  color:var(--accent);
  line-height:1;
  display:block;
  margin-bottom:.4rem;
}
.fact__label{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--text-muted);
  margin-bottom:.7rem;
}
.fact__body{
  font-size:.95rem;
  color:var(--text);
  margin:0;
  position:relative;z-index:1;
}

/* =============================================================
   PREDICTIONS
   ============================================================= */
.predictions{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:1.2rem;
}
.prediction{
  background:linear-gradient(180deg,var(--surface),var(--surface-2));
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:1.7rem;
  position:relative;
}
.prediction__cat{
  font-family:'Manrope';
  font-size:.74rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--accent);
  margin-bottom:.6rem;
}
.prediction__pick{
  font-family:'Bebas Neue';
  font-size:2rem;
  color:var(--heading);
  line-height:1.05;
  text-transform:uppercase;
  margin-bottom:.7rem;
}
.prediction__body{
  font-size:.94rem;
  color:var(--text);
  margin:0 0 1rem;
}
.prediction__conf{
  display:flex;align-items:center;gap:.7rem;
  font-size:.78rem;
  color:var(--text-muted);
  text-transform:uppercase;
  letter-spacing:.12em;
}
.prediction__bar{
  flex:1;
  height:6px;
  background:var(--surface-3);
  border-radius:999px;
  overflow:hidden;
}
.prediction__bar span{
  display:block;
  height:100%;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  border-radius:999px;
}

/* =============================================================
   FAQ ACCORDION  (CSS-only show/hide via .open class)
   ============================================================= */
.faq{
  display:flex;
  flex-direction:column;
  gap:.7rem;
}
.faq__item{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:border-color .18s ease;
}
.faq__item.open{border-color:var(--primary)}
.faq__q{
  background:transparent;
  border:none;
  width:100%;
  padding:1.2rem 1.4rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  text-align:left;
  font-family:'Manrope',sans-serif;
  font-weight:700;
  font-size:1.02rem;
  color:var(--heading);
  cursor:pointer;
  line-height:1.4;
}
.faq__q:hover{color:var(--accent)}
.faq__plus{
  flex-shrink:0;
  width:28px;height:28px;
  border-radius:50%;
  border:1px solid var(--border-bright);
  display:grid;place-items:center;
  position:relative;
  transition:transform .25s ease,background .25s ease,border-color .25s ease;
}
.faq__plus::before,
.faq__plus::after{
  content:"";
  position:absolute;
  background:var(--accent);
  border-radius:1px;
}
.faq__plus::before{width:12px;height:2px}
.faq__plus::after{width:2px;height:12px;transition:transform .25s ease}
.faq__item.open .faq__plus{
  background:var(--primary);
  border-color:var(--primary);
  transform:rotate(180deg);
}
.faq__item.open .faq__plus::after{transform:scaleY(0)}
.faq__a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.faq__item.open .faq__a{max-height:600px}
.faq__a-inner{
  padding:0 1.4rem 1.4rem;
  color:var(--text);
  font-size:.96rem;
  border-top:1px solid var(--border);
}
.faq__item.open .faq__a-inner{padding-top:1.2rem}

/* =============================================================
   CALLOUT (Responsible Gambling)
   ============================================================= */
.callout{
  background:
    radial-gradient(ellipse at top right, rgba(230,57,70,.18), transparent 60%),
    var(--surface);
  border:1px solid var(--border-bright);
  border-radius:var(--radius-lg);
  padding:2rem;
  position:relative;
}
.callout__head{
  display:flex;align-items:center;gap:1rem;
  margin-bottom:1.2rem;
}
.callout__icon{
  width:48px;height:48px;border-radius:12px;
  background:rgba(230,57,70,.18);
  border:1px solid rgba(230,57,70,.4);
  color:var(--canada);
  display:grid;place-items:center;
  font-size:1.4rem;
  flex-shrink:0;
}
.callout h2{
  margin:0;
  font-size:1.8rem;
  text-transform:uppercase;
}
.callout p{font-size:.98rem}
.callout__helplines{
  list-style:none;padding:0;margin:1.4rem 0 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:.7rem;
}
.callout__helplines li{
  margin:0;
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:.9rem 1rem;
}
.callout__helplines strong{display:block;color:var(--heading);font-size:.95rem;margin-bottom:.15rem}
.callout__helplines span{font-size:.85rem;color:var(--text-muted)}

/* =============================================================
   SPORTSBOOK STRIP (Rotowire-style sportsbook icon row)
   ============================================================= */
.book-strip{
  display:flex;flex-wrap:wrap;align-items:center;
  justify-content:center;
  gap:1.5rem;
  padding:1.5rem 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin:2rem 0;
}
.book-strip__label{
  font-family:'Bebas Neue';
  color:var(--text-muted);
  letter-spacing:.18em;
  font-size:.95rem;
  text-transform:uppercase;
}
.book-strip__icons{
  display:flex;flex-wrap:wrap;align-items:center;gap:1.2rem;
}
.book-strip__icon{
  width:42px;height:42px;
  border-radius:8px;
  background:var(--surface-2);
  border:1px solid var(--border);
  display:grid;place-items:center;
  font-family:'Bebas Neue';
  color:var(--text-muted);
  font-size:.85rem;
  opacity:.85;
  transition:opacity .18s ease;
}
.book-strip__icon:hover{opacity:1}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer{
  background:#080012;
  border-top:1px solid var(--border);
  padding:3.5rem 0 2rem;
  margin-top:2rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:2rem;
}
.footer-col h5{
  font-family:'Bebas Neue';
  font-size:1.15rem;
  color:var(--accent);
  margin:0 0 1rem;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.footer-col ul{list-style:none;padding:0;margin:0}
.footer-col li{margin:.5rem 0}
.footer-col a{color:var(--text-muted);font-size:.92rem}
.footer-col a:hover{color:var(--heading)}
/* Predictions footer row */
.footer-predictions-row{border-top:1px solid var(--border);margin-top:2rem;padding-top:1.8rem}
.footer-predictions-row h5{font-family:'Bebas Neue',sans-serif;font-size:1.15rem;color:var(--accent);margin:0 0 1rem;letter-spacing:.06em;text-transform:uppercase}
.footer-predictions-row ul{list-style:none;padding:0;margin:0;columns:5;column-gap:1.5rem}
.footer-predictions-row li{margin:.4rem 0;break-inside:avoid}
.footer-predictions-row a{color:var(--text-muted);font-size:.92rem;text-decoration:none}
.footer-predictions-row a:hover{color:var(--heading)}
.footer-col p{color:var(--text-muted);font-size:.92rem;margin:0 0 .8rem}
.footer-bottom{
  border-top:1px solid var(--border);
  margin-top:2.5rem;
  padding-top:1.8rem;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1rem;
  font-size:.85rem;
  color:var(--text-muted);
}
.footer-legal{font-size:.78rem;color:var(--text-muted);margin-top:1.2rem;line-height:1.7}
.age-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(230,57,70,.16);
  border:1px solid rgba(230,57,70,.4);
  color:#ffd1d6;
  padding:.4rem .8rem;
  border-radius:999px;
  font-weight:700;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.12em;
}
@media (max-width:720px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:1.5rem}
}

/* =============================================================
   UTILITIES
   ============================================================= */
.center{text-align:center}
.mt-3{margin-top:3rem}
.section-divider{
  border:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--border-bright),transparent);
  margin:0;
}

/* =============================================================
MOBILE FIX — header CTA + operator card overflow
============================================================= */
@media (max-width:600px){
.header-ctas{display:none}
.operator{
grid-template-columns:1fr !important;
gap:.9rem !important;
}
.operator__rank{
width:100%;height:auto;
border-radius:var(--radius-sm);
font-size:1.4rem;
padding:.3rem .6rem;
display:inline-flex;
align-items:center;gap:.5rem;
}
.operator__rank--top{
width:auto;height:auto;
border-radius:var(--radius-sm);
font-size:1.3rem;
padding:.35rem .7rem;
}
.operator__logo{
width:100% !important;
height:64px !important;
border-radius:var(--radius-sm);
}
.operator__logo img{object-fit:contain !important;padding:6px}
.operator__body{width:100%}
.operator__rating{grid-column:auto;flex-direction:row;justify-content:flex-start}
}

/* Print hardening — make sure key content prints */
@media print{
  .site-header,.site-footer,.ticker,.book-strip{display:none}
  body{background:#fff;color:#000}
}

/* Reduce motion */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
}

/* Operator card CTA — added by post-process */
.operator__cta{
  display:inline-block;
  margin-top:.85rem;
  padding:.55rem 1rem;
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
  white-space:nowrap;
}
.operator__rating{display:flex;flex-direction:column;align-items:center;gap:.15rem}
@media (max-width:720px){
  .operator__cta{width:100%;text-align:center}
}
