/* comeliveipl.com — dark teal scoreboard editorial */
:root{
  --primary:#32D5C0;
  --primary-dark:#27A696;
  --accent:#F9761A;
  --accent-2:#FFB347;
  --background:#031C1E;
  --surface:#092F34;
  --surface-2:#11464A;
  --surface-3:#0A3B40;
  --text:#F8FAFC;
  --muted:#CBD5E1;
  --muted-2:#94A3B8;
  --border:rgba(255,255,255,.14);
  --soft-border:rgba(255,255,255,.08);
  --danger:#EF4444;
  --success:#22C55E;
  --warning:#F59E0B;
  --gradient:linear-gradient(135deg,#031C1E 0%,#092F34 48%,#11464A 100%);
  --gradient-accent:linear-gradient(135deg,#11464A 0%,#0E6E6E 60%,#32D5C0 100%);
  --radius:14px;
  --radius-sm:8px;
  --radius-lg:20px;
  --shadow:0 10px 30px rgba(0,0,0,.45);
  --shadow-lg:0 20px 60px rgba(0,0,0,.55);
  --font:'DM Sans',system-ui,-apple-system,'Segoe UI',sans-serif;
  --container:1240px;
  --header-h:72px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font);
  font-size:17px;
  line-height:1.65;
  color:var(--text);
  background:var(--background);
  background-image:radial-gradient(1200px 600px at 80% -10%,rgba(50,213,192,.10),transparent 60%),
    radial-gradient(900px 500px at 0% 30%,rgba(249,118,26,.06),transparent 60%);
  background-attachment:fixed;
  -webkit-font-smoothing:antialiased;
  min-height:100dvh;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--primary);text-decoration:none;transition:color .2s var(--ease)}
a:hover{color:#7AE8D8}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
h1,h2,h3,h4{font-family:var(--font);font-weight:700;line-height:1.15;letter-spacing:-.02em;color:var(--text)}
h1{font-size:clamp(32px,4.5vw,52px);letter-spacing:-.03em;line-height:1.05}
h2{font-size:clamp(26px,3vw,36px);line-height:1.12;margin-bottom:14px}
h3{font-size:clamp(20px,2vw,24px);line-height:1.25;margin-bottom:10px}
h4{font-size:18px;margin-bottom:8px}
p{margin-bottom:14px;color:var(--muted)}
.container{max-width:var(--container);margin:0 auto;padding:0 24px}

/* ============ HEADER ============ */
.site-header{
  position:sticky;top:0;z-index:250;
  background:rgba(3,28,30,.92);
  backdrop-filter:saturate(150%) blur(14px);
  -webkit-backdrop-filter:saturate(150%) blur(14px);
  border-bottom:1px solid var(--border);
  height:var(--header-h);
  display:flex;align-items:center;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;width:100%}
.brand{display:flex;align-items:center;gap:10px;flex-shrink:0}
.brand-mark{
  width:38px;height:38px;border-radius:10px;
  background:linear-gradient(135deg,#32D5C0,#27A696);
  display:grid;place-items:center;color:#031C1E;font-weight:800;font-size:18px;
  box-shadow:0 6px 20px rgba(50,213,192,.4);
  letter-spacing:-.04em;
}
.brand-name{font-weight:800;font-size:19px;letter-spacing:-.02em;color:var(--text);line-height:1}
.brand-tag{font-size:11px;color:var(--primary);font-weight:600;text-transform:uppercase;letter-spacing:.12em;margin-top:2px;display:block}
.main-nav{display:flex;align-items:center;gap:4px}
.main-nav a{
  color:var(--muted);font-weight:500;font-size:14.5px;
  padding:8px 12px;border-radius:8px;transition:all .2s var(--ease);
  position:relative;
}
.main-nav a:hover{color:var(--text);background:rgba(255,255,255,.05)}
.main-nav a.cta{
  color:#031C1E;background:var(--primary);font-weight:700;
  padding:9px 16px;border-radius:10px;margin-left:8px;
}
.main-nav a.cta:hover{background:#7AE8D8;color:#031C1E}
.header-right{display:flex;align-items:center;gap:10px}
.header-cta-ghost{
  color:var(--muted);font-size:13.5px;font-weight:600;
  padding:8px 12px;border-radius:8px;
}
.header-cta-ghost:hover{color:var(--text);background:rgba(255,255,255,.05)}
.hamburger{
  display:none;width:44px;height:44px;
  border-radius:10px;background:rgba(255,255,255,.06);
  position:relative;z-index:300;
}
.hamburger span{
  position:absolute;left:11px;right:11px;height:2px;background:var(--text);
  border-radius:2px;transition:transform .25s var(--ease),opacity .2s var(--ease),top .25s var(--ease);
}
.hamburger span:nth-child(1){top:14px}
.hamburger span:nth-child(2){top:21px}
.hamburger span:nth-child(3){top:28px}
.hamburger.is-open span:nth-child(1){top:21px;transform:rotate(45deg)}
.hamburger.is-open span:nth-child(2){opacity:0}
.hamburger.is-open span:nth-child(3){top:21px;transform:rotate(-45deg)}

/* mobile drawer */
.mobile-drawer{
  position:fixed;top:0;right:0;height:100dvh;width:min(360px,90vw);
  background:var(--surface);border-left:1px solid var(--border);
  transform:translateX(100%);transition:transform .3s var(--ease);
  z-index:200;padding:88px 24px 32px;display:flex;flex-direction:column;gap:6px;
  overflow-y:auto;
}
.mobile-drawer.is-open{transform:translateX(0)}
.mobile-drawer a{
  color:var(--text);font-weight:600;font-size:16px;
  padding:14px 12px;border-radius:10px;
  border-bottom:1px solid var(--soft-border);
}
.mobile-drawer a:hover,.mobile-drawer a:focus{background:rgba(50,213,192,.08);color:var(--primary)}
.mobile-drawer .drawer-cta{
  background:var(--primary);color:#031C1E;text-align:center;
  margin-top:14px;padding:14px;border-radius:12px;font-weight:700;
  border:none;
}
.drawer-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.6);
  opacity:0;pointer-events:none;transition:opacity .25s var(--ease);z-index:150;
}
.drawer-overlay.is-open{opacity:1;pointer-events:auto}

/* ============ LIVE TICKER ============ */
.ticker{
  background:var(--surface);border-bottom:1px solid var(--border);
  overflow:hidden;height:36px;display:flex;align-items:center;
}
.ticker-track{
  display:flex;gap:48px;white-space:nowrap;
  animation:tick 48s linear infinite;padding-left:24px;
}
.ticker-item{display:inline-flex;align-items:center;gap:8px;font-size:13px;color:var(--muted)}
.ticker-item strong{color:var(--text);font-weight:600}
.ticker-item .pill-live{
  background:var(--accent);color:#031C1E;padding:2px 7px;border-radius:4px;
  font-size:10.5px;font-weight:800;letter-spacing:.06em;
}
.ticker-item .pill-up{color:var(--success);font-weight:700}
.ticker-item .pill-down{color:var(--danger);font-weight:700}
@keyframes tick{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ============ HERO ============ */
.hero{
  position:relative;padding:64px 0 56px;
  background:linear-gradient(180deg,#031C1E 0%,#04272B 100%);
  overflow:hidden;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(800px 400px at 70% 30%,rgba(50,213,192,.18),transparent 60%);
  pointer-events:none;
}
.hero-grid{display:grid;grid-template-columns:1.15fr 1fr;gap:48px;align-items:center;position:relative}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(50,213,192,.12);color:var(--primary);
  padding:6px 14px;border-radius:999px;font-size:12.5px;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;
  border:1px solid rgba(50,213,192,.25);
}
.hero-eyebrow .pulse{width:8px;height:8px;border-radius:50%;background:var(--accent);position:relative}
.hero-eyebrow .pulse::after{
  content:"";position:absolute;inset:-4px;border-radius:50%;border:2px solid var(--accent);
  animation:pulse 1.8s var(--ease) infinite;
}
@keyframes pulse{0%{transform:scale(.8);opacity:.9}100%{transform:scale(2);opacity:0}}
.hero h1{margin:18px 0 14px}
.hero h1 .accent{color:var(--primary);font-style:italic}
.hero-lede{font-size:18px;color:var(--muted);max-width:580px;margin-bottom:24px;line-height:1.6}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:18px}
.hero-meta{display:flex;gap:18px;font-size:13px;color:var(--muted-2);flex-wrap:wrap}
.hero-meta span{display:inline-flex;align-items:center;gap:6px}
.hero-meta strong{color:var(--text);font-weight:600}
.hero-visual{
  position:relative;border-radius:var(--radius-lg);overflow:hidden;
  border:1px solid var(--border);box-shadow:var(--shadow-lg);
  aspect-ratio:4/5;
}
.hero-visual img{width:100%;height:100%;object-fit:cover}
.hero-visual::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 60%,rgba(3,28,30,.6) 100%);
  pointer-events:none;
}
.hero-scorecard{
  position:absolute;left:16px;right:16px;bottom:16px;
  background:rgba(3,28,30,.85);backdrop-filter:blur(10px);
  border:1px solid rgba(50,213,192,.35);border-radius:12px;
  padding:12px 14px;display:flex;align-items:center;justify-content:space-between;
  font-size:13px;color:var(--muted);
}
.hero-scorecard strong{color:var(--text);font-weight:700}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 22px;border-radius:12px;
  font-weight:700;font-size:15px;letter-spacing:-.01em;
  transition:all .2s var(--ease);border:1px solid transparent;
  cursor:pointer;
}
.btn-primary{background:var(--primary);color:#031C1E}
.btn-primary:hover{background:#7AE8D8;color:#031C1E;transform:translateY(-1px);box-shadow:0 10px 24px rgba(50,213,192,.35)}
.btn-secondary{background:transparent;color:var(--text);border-color:var(--border)}
.btn-secondary:hover{background:rgba(255,255,255,.06);border-color:rgba(50,213,192,.4)}
.btn-accent{background:var(--accent);color:#031C1E}
.btn-accent:hover{background:#FFA55A;color:#031C1E;transform:translateY(-1px)}
.btn-ghost{background:transparent;color:var(--primary);padding:8px 12px}
.btn-ghost:hover{background:rgba(50,213,192,.08)}

/* ============ SECTIONS ============ */
.section{padding:64px 0;position:relative}
.section-tight{padding:40px 0}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:32px;flex-wrap:wrap}
.section-head .eyebrow{font-size:12px;color:var(--primary);font-weight:700;letter-spacing:.14em;text-transform:uppercase;margin-bottom:8px;display:block}
.section-head p{max-width:520px;color:var(--muted);font-size:15.5px;margin:0}
.section-head .head-action{font-size:14px;font-weight:600;color:var(--primary);white-space:nowrap}
.section-head .head-action:hover{text-decoration:underline}

/* ============ TRUST STRIP ============ */
.trust-strip{
  background:var(--surface);
  border-top:1px solid var(--soft-border);border-bottom:1px solid var(--soft-border);
  padding:22px 0;
}
.trust-strip .grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.trust-strip .item .num{
  font-size:26px;font-weight:800;color:var(--primary);
  font-variant-numeric:tabular-nums;letter-spacing:-.02em;
}
.trust-strip .item .label{font-size:13px;color:var(--muted);margin-top:2px}

/* ============ MATCH CARD GRID ============ */
.match-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.match-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);padding:20px;
  transition:all .25s var(--ease);position:relative;overflow:hidden;
}
.match-card:hover{border-color:rgba(50,213,192,.4);transform:translateY(-2px);box-shadow:var(--shadow)}
.match-card .status{
  display:inline-flex;align-items:center;gap:6px;
  font-size:11px;font-weight:700;letter-spacing:.08em;
  padding:4px 9px;border-radius:6px;margin-bottom:14px;
}
.match-card .status.live{background:rgba(249,118,26,.15);color:var(--accent)}
.match-card .status.upcoming{background:rgba(50,213,192,.12);color:var(--primary)}
.match-card .status.finished{background:rgba(255,255,255,.06);color:var(--muted-2)}
.match-card .match-no{position:absolute;top:18px;right:18px;font-size:11px;color:var(--muted-2);font-weight:600}
.match-card .teams{display:grid;grid-template-columns:1fr auto 1fr;gap:14px;align-items:center;margin-bottom:14px}
.match-card .team{display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center}
.match-card .team-logo{
  width:48px;height:48px;border-radius:50%;
  background:linear-gradient(135deg,#11464A,#1B6970);
  display:grid;place-items:center;color:#fff;font-weight:800;font-size:14px;
  border:2px solid rgba(50,213,192,.25);
}
.match-card .team-name{font-size:13.5px;font-weight:600;color:var(--text);line-height:1.2}
.match-card .vs{color:var(--muted-2);font-size:12px;font-weight:700}
.match-card .meta{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:14px;border-top:1px solid var(--soft-border);
  font-size:12.5px;color:var(--muted-2);
}

/* live scoreboard widget */
.live-scoreboard{
  background:var(--surface-2);border:1px solid rgba(50,213,192,.3);
  border-radius:var(--radius);padding:18px;
}
.live-scoreboard .header{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px;padding-bottom:12px;border-bottom:1px solid var(--soft-border)}
.live-scoreboard .inning{
  display:flex;justify-content:space-between;align-items:center;
  padding:10px 0;border-bottom:1px dashed var(--soft-border);
  font-variant-numeric:tabular-nums;
}
.live-scoreboard .inning:last-child{border-bottom:none}
.live-scoreboard .team{font-weight:700;font-size:15px}
.live-scoreboard .score{font-weight:800;color:var(--primary);font-size:18px}
.live-scoreboard .overs{color:var(--muted-2);font-size:12.5px;margin-left:8px}

/* ============ HUB CARDS ============ */
.hub-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.hub-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);padding:22px;
  transition:all .25s var(--ease);position:relative;overflow:hidden;
  display:flex;flex-direction:column;min-height:200px;
}
.hub-card::before{
  content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--primary),transparent);
  opacity:0;transition:opacity .25s var(--ease);
}
.hub-card:hover::before{opacity:1}
.hub-card:hover{border-color:rgba(50,213,192,.4);transform:translateY(-3px);box-shadow:var(--shadow)}
.hub-card .icon{
  width:44px;height:44px;border-radius:10px;
  background:rgba(50,213,192,.12);color:var(--primary);
  display:grid;place-items:center;margin-bottom:14px;
  font-size:22px;font-weight:800;
}
.hub-card h3{font-size:17px;margin-bottom:8px;color:var(--text)}
.hub-card p{font-size:13.5px;color:var(--muted);margin-bottom:14px;flex:1}
.hub-card .card-link{font-size:13px;color:var(--primary);font-weight:700;display:inline-flex;align-items:center;gap:4px}
.hub-card .card-link:hover{text-decoration:underline}

/* ============ TEAM BLOCK ============ */
.team-grid{display:grid;grid-template-columns:repeat(8,1fr);gap:12px}
.team-tile{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius-sm);padding:14px 8px;
  text-align:center;transition:all .2s var(--ease);
}
.team-tile:hover{border-color:rgba(50,213,192,.4);transform:translateY(-2px)}
.team-tile .crest{
  width:44px;height:44px;border-radius:50%;margin:0 auto 8px;
  background:linear-gradient(135deg,#11464A,#1B6970);
  display:grid;place-items:center;color:#fff;font-weight:800;font-size:13px;
  border:2px solid rgba(50,213,192,.2);
}
.team-tile .name{font-size:11.5px;font-weight:600;color:var(--text);line-height:1.2}
.team-tile .short{font-size:10px;color:var(--muted-2);margin-top:2px;text-transform:uppercase;letter-spacing:.06em}

/* ============ PREDICTIONS ============ */
.prediction-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.prediction-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);padding:22px;
  display:flex;flex-direction:column;gap:14px;
}
.prediction-card .matchup{
  display:flex;align-items:center;justify-content:space-between;
  padding-bottom:12px;border-bottom:1px solid var(--soft-border);
}
.prediction-card .matchup .teams{font-weight:700;font-size:14px;color:var(--text)}
.prediction-card .matchup .venue{font-size:11.5px;color:var(--muted-2)}
.prediction-card .pick-row{display:flex;justify-content:space-between;align-items:center;font-size:13.5px}
.prediction-card .pick-row .label{color:var(--muted)}
.prediction-card .pick-row .value{font-weight:700;color:var(--text);font-variant-numeric:tabular-nums}
.prediction-card .pick-row .winner{color:var(--primary)}
.prediction-card .confidence{
  height:6px;border-radius:3px;background:rgba(255,255,255,.06);
  overflow:hidden;margin-top:auto;
}
.prediction-card .confidence-bar{
  display:block;height:100%;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  border-radius:3px;
}
.prediction-card .conf-meta{display:flex;justify-content:space-between;font-size:11.5px;color:var(--muted-2)}

/* ============ NEWS GRID ============ */
.news-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:18px}
.news-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
  transition:all .25s var(--ease);display:flex;flex-direction:column;
}
.news-card:hover{border-color:rgba(50,213,192,.4);transform:translateY(-2px)}
.news-card .thumb{
  aspect-ratio:16/9;width:100%;background:var(--surface-2);
  position:relative;overflow:hidden;
}
.news-card .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.news-card:hover .thumb img{transform:scale(1.04)}
.news-card .body{padding:18px;flex:1;display:flex;flex-direction:column;gap:8px}
.news-card .cat{
  font-size:11px;color:var(--primary);font-weight:700;
  text-transform:uppercase;letter-spacing:.1em;
}
.news-card h3{font-size:17px;color:var(--text);line-height:1.3;margin:0}
.news-card .lede{font-size:13.5px;color:var(--muted);margin:0;line-height:1.55}
.news-card .meta{display:flex;justify-content:space-between;align-items:center;margin-top:auto;font-size:12px;color:var(--muted-2)}
.news-card.large h3{font-size:22px}
.news-card.large .lede{font-size:15px}

/* ============ PLAYER SPOTLIGHT ============ */
.player-row{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.player-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);padding:18px;text-align:center;
  transition:all .25s var(--ease);
}
.player-card:hover{border-color:rgba(50,213,192,.4);transform:translateY(-2px)}
.player-card .avatar{
  width:84px;height:84px;border-radius:50%;margin:0 auto 12px;
  background:linear-gradient(135deg,#1B6970,#32D5C0);
  display:grid;place-items:center;color:#031C1E;font-weight:800;font-size:26px;
  border:3px solid rgba(50,213,192,.4);position:relative;
}
.player-card .avatar .rank{
  position:absolute;top:-4px;right:-4px;background:var(--accent);
  color:#031C1E;width:26px;height:26px;border-radius:50%;
  font-size:11px;display:grid;place-items:center;font-weight:800;
}
.player-card .pname{font-weight:700;font-size:15px;color:var(--text)}
.player-card .prole{font-size:12px;color:var(--muted);margin:2px 0 10px}
.player-card .stat-row{display:flex;justify-content:space-around;font-size:11.5px;color:var(--muted-2);padding-top:10px;border-top:1px solid var(--soft-border)}
.player-card .stat-row strong{display:block;color:var(--primary);font-size:16px;font-weight:800;font-variant-numeric:tabular-nums}

/* ============ FANTASY TIPS BAND ============ */
.fantasy-band{
  background:linear-gradient(135deg,#0E3A3F 0%,#11464A 60%,#0E5A60 100%);
  padding:56px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);
}
.tip-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:32px}
.tip-card{
  background:rgba(3,28,30,.55);backdrop-filter:blur(8px);
  border:1px solid rgba(50,213,192,.25);border-radius:var(--radius);
  padding:22px;
}
.tip-card .num{
  font-size:11px;font-weight:800;color:var(--accent);
  letter-spacing:.14em;margin-bottom:10px;display:block;
}
.tip-card h3{font-size:17px;color:var(--text);margin-bottom:8px}
.tip-card p{font-size:14px;color:var(--muted);margin:0;line-height:1.55}

/* ============ POINTS SYSTEM TABLE ============ */
.points-table{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
}
.points-table table{width:100%;border-collapse:collapse}
.points-table th,.points-table td{
  padding:14px 18px;text-align:left;border-bottom:1px solid var(--soft-border);
  font-size:14px;
}
.points-table th{
  background:var(--surface-2);color:var(--primary);
  font-size:12px;letter-spacing:.1em;text-transform:uppercase;font-weight:700;
}
.points-table td{color:var(--text);font-variant-numeric:tabular-nums}
.points-table td.points{color:var(--accent);font-weight:800;text-align:right}
.points-table tr:last-child td{border-bottom:none}
.points-table tr:hover td{background:rgba(50,213,192,.04)}

/* ============ APP DOWNLOAD ============ */
.app-band{
  background:linear-gradient(135deg,#11464A 0%,#0E5A60 50%,#0A3B40 100%);
  border-radius:var(--radius-lg);padding:48px;
  display:grid;grid-template-columns:1.2fr 1fr;gap:36px;align-items:center;
  border:1px solid rgba(50,213,192,.3);
  position:relative;overflow:hidden;
}
.app-band::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(400px 200px at 90% 50%,rgba(50,213,192,.18),transparent 70%);
  pointer-events:none;
}
.app-band h2{font-size:32px;color:var(--text);margin-bottom:12px}
.app-band p{color:var(--muted);font-size:15.5px;margin-bottom:20px}
.app-badges{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:18px}
.app-badge{
  background:#031C1E;border:1px solid rgba(50,213,192,.3);
  padding:10px 16px;border-radius:10px;display:inline-flex;align-items:center;gap:10px;
  font-size:13px;color:var(--text);font-weight:600;
}
.app-badge .small{font-size:10px;color:var(--muted-2);font-weight:500;display:block}
.app-visual{
  background:var(--background);border:1px solid var(--border);
  border-radius:24px;aspect-ratio:9/16;max-width:260px;margin-left:auto;
  box-shadow:var(--shadow-lg);position:relative;overflow:hidden;
}
.app-visual img{width:100%;height:100%;object-fit:cover}

/* ============ STEPS ============ */
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;counter-reset:step}
.step-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);padding:22px;position:relative;
  counter-increment:step;
}
.step-card .step-num{
  position:absolute;top:-14px;left:18px;width:32px;height:32px;
  border-radius:50%;background:var(--primary);color:#031C1E;
  display:grid;place-items:center;font-weight:800;font-size:14px;
  box-shadow:0 4px 12px rgba(50,213,192,.4);
}
.step-card h3{font-size:16px;margin-top:10px;margin-bottom:8px}
.step-card p{font-size:13.5px;color:var(--muted);margin:0}

/* ============ FAQ ============ */
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.faq-item{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);padding:20px;
}
.faq-item h3{font-size:15.5px;color:var(--text);margin-bottom:8px}
.faq-item p{font-size:14px;color:var(--muted);margin:0;line-height:1.55}

/* ============ COMPLIANCE ============ */
.compliance{
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);border-radius:var(--radius);
  padding:22px;font-size:13px;color:var(--muted-2);
}
.compliance strong{color:var(--accent)}

/* ============ FOOTER ============ */
.site-footer{
  background:#02171A;border-top:1px solid var(--border);
  padding:56px 0 24px;margin-top:32px;
}
.footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:36px;
  padding-bottom:36px;border-bottom:1px solid var(--soft-border);
}
.footer-brand p{font-size:13.5px;color:var(--muted-2);margin:14px 0 18px;max-width:320px}
.footer-col h4{font-size:13px;color:var(--primary);text-transform:uppercase;letter-spacing:.12em;margin-bottom:14px;font-weight:700}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:9px}
.footer-col a{color:var(--muted);font-size:14px}
.footer-col a:hover{color:var(--primary)}
.social-row{display:flex;gap:8px;margin-top:6px}
.social-row a{
  width:36px;height:36px;border-radius:9px;
  background:rgba(255,255,255,.05);border:1px solid var(--border);
  display:grid;place-items:center;color:var(--muted);
  font-size:14px;font-weight:700;
}
.social-row a:hover{background:var(--primary);color:#031C1E;border-color:var(--primary)}
.footer-bottom{
  padding-top:20px;display:flex;justify-content:space-between;
  font-size:12.5px;color:var(--muted-2);flex-wrap:wrap;gap:12px;
}
.footer-bottom a{color:var(--muted-2)}
.footer-bottom a:hover{color:var(--primary)}

/* ============ INLINE IMAGES ============ */
.inline-image-row{
  display:grid;grid-template-columns:1fr 1.2fr;gap:24px;
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);padding:18px;margin:28px 0;
  align-items:center;
}
.inline-image-row.flip{grid-template-columns:1.2fr 1fr}
.inline-image-row .img{
  border-radius:var(--radius-sm);overflow:hidden;aspect-ratio:4/3;
  background:var(--surface-2);
}
.inline-image-row .img img{width:100%;height:100%;object-fit:cover}
.inline-image-row .txt h3{margin-bottom:8px}
.inline-image-row .txt p{margin:0}

/* ============ DATA TABLES ============ */
.data-table{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;margin:18px 0;
}
.data-table table{width:100%;border-collapse:collapse}
.data-table th,.data-table td{
  padding:12px 16px;text-align:left;font-size:13.5px;
  border-bottom:1px solid var(--soft-border);
}
.data-table th{
  background:var(--surface-2);color:var(--primary);
  font-size:11px;letter-spacing:.1em;text-transform:uppercase;font-weight:700;
}
.data-table td{color:var(--text);font-variant-numeric:tabular-nums}
.data-table tr:last-child td{border-bottom:none}
.data-table tr:hover td{background:rgba(50,213,192,.04)}

/* ============ ARTICLE ============ */
.article-wrap{max-width:780px;margin:0 auto;padding:48px 24px 32px}
.article-wrap .crumbs{font-size:13px;color:var(--muted-2);margin-bottom:18px}
.article-wrap .crumbs a{color:var(--primary)}
.article-wrap .cat-pill{
  display:inline-block;background:rgba(50,213,192,.12);color:var(--primary);
  padding:4px 10px;border-radius:6px;font-size:11.5px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;margin-bottom:14px;
}
.article-wrap h1{font-size:clamp(30px,4vw,44px);margin-bottom:14px}
.article-wrap .lede{font-size:18px;color:var(--muted);line-height:1.6;margin-bottom:24px}
.article-wrap .byline{
  display:flex;align-items:center;gap:14px;font-size:13px;color:var(--muted-2);
  padding-bottom:20px;border-bottom:1px solid var(--soft-border);margin-bottom:24px;
}
.article-wrap .byline .avatar{
  width:36px;height:36px;border-radius:50%;
  background:linear-gradient(135deg,#11464A,#32D5C0);color:#031C1E;
  display:grid;place-items:center;font-weight:800;font-size:13px;
}
.article-wrap .banner{
  aspect-ratio:16/9;border-radius:var(--radius);overflow:hidden;
  margin-bottom:32px;border:1px solid var(--border);
}
.article-wrap .banner img{width:100%;height:100%;object-fit:cover}
.article-body{font-size:17px;line-height:1.75}
.article-body h2{font-size:24px;margin:32px 0 14px;color:var(--text)}
.article-body h3{font-size:19px;margin:24px 0 10px;color:var(--text)}
.article-body p{color:var(--muted);margin-bottom:16px}
.article-body ul,.article-body ol{margin:0 0 18px 22px;color:var(--muted)}
.article-body li{margin-bottom:8px}
.article-body strong{color:var(--text)}
.article-body blockquote{
  border-left:3px solid var(--primary);
  padding:8px 0 8px 18px;margin:24px 0;
  font-style:italic;color:var(--muted);font-size:17px;
}
.article-body figure{margin:24px 0}
.article-body figure img{border-radius:var(--radius);border:1px solid var(--border);width:100%}
.article-body figcaption{font-size:13px;color:var(--muted-2);margin-top:8px;text-align:center}
.article-body figure.article-hero{margin:0 0 28px}
.article-body figure.article-hero img{aspect-ratio:16/12;object-fit:cover;max-height:520px}

/* Homepage feature row (used inside sections to show two planned images side by side) */
.homepage-feature-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:24px}
.homepage-feature-image{position:relative;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:var(--surface)}
.homepage-feature-image img{width:100%;height:100%;aspect-ratio:16/9;object-fit:cover;display:block}

/* Trust-strip expansion: image + caption side by side under the stat strip */
.trust-strip-media{display:grid;grid-template-columns:1fr 1.2fr;gap:24px;align-items:center;margin-top:24px;padding:18px;border:1px solid var(--border);border-radius:var(--radius);background:var(--surface)}
.trust-strip-media img{width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;border-radius:calc(var(--radius) - 4px)}
.trust-strip-caption{font-size:14px;line-height:1.6;color:var(--muted)}

/* Weather watch card */
.weather-card{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:center;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:var(--surface)}
.weather-image{height:100%}
.weather-image img{width:100%;height:100%;aspect-ratio:16/9;object-fit:cover;display:block}
.weather-body{padding:24px}
.weather-body h3{margin:8px 0 10px;color:var(--text);font-size:20px}
.weather-body p{color:var(--muted);font-size:15px;line-height:1.55;margin-bottom:14px}

/* Fantasy band lead image */
.fantasy-band-image{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;margin-bottom:24px;max-width:560px}
.fantasy-band-image img{width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;display:block}

@media (max-width: 899px){
  .homepage-feature-row{grid-template-columns:1fr;gap:14px}
  .trust-strip-media{grid-template-columns:1fr;gap:14px}
  .weather-card{grid-template-columns:1fr}
  .fantasy-band-image{max-width:100%}
}
.article-body .pull-quote{
  background:var(--surface);border:1px solid var(--border);
  border-left:3px solid var(--accent);
  padding:18px 20px;border-radius:var(--radius-sm);margin:24px 0;
  font-size:16px;color:var(--text);font-weight:600;
}

/* ============ SCROLL OFFSETS ============ */
section[id],div[id]{scroll-margin-top:calc(var(--header-h) + 16px)}

/* ============ MOBILE ============ */
@media (max-width:1024px){
  .hero-grid{grid-template-columns:1fr;gap:32px}
  .hero-visual{aspect-ratio:16/10;max-width:560px;margin:0 auto}
  .match-grid,.prediction-grid,.tip-grid{grid-template-columns:repeat(2,1fr)}
  .hub-grid,.team-grid{grid-template-columns:repeat(4,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px}
}
@media (max-width:768px){
  body{font-size:16px}
  .main-nav{display:none}
  .header-cta-ghost{display:none}
  .hamburger{display:grid;place-items:center}
  .hero{padding:48px 0 40px}
  .hero h1{font-size:32px}
  .hero-lede{font-size:16px}
  .match-grid,.prediction-grid,.tip-grid,.hub-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:repeat(4,1fr)}
  .player-row,.steps-grid{grid-template-columns:repeat(2,1fr)}
  .news-grid{grid-template-columns:1fr}
  .faq-grid{grid-template-columns:1fr}
  .app-band{grid-template-columns:1fr;padding:32px}
  .app-visual{margin:0 auto;max-width:200px}
  .inline-image-row,.inline-image-row.flip{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:24px}
  .trust-strip .grid{grid-template-columns:repeat(2,1fr);gap:18px}
  .section{padding:48px 0}
  .section-head{margin-bottom:24px}
  .news-card.large h3{font-size:18px}
  h2{font-size:24px}
  .article-wrap{padding:32px 20px 24px}
  .article-wrap h1{font-size:28px}
  .article-wrap .lede{font-size:16px}
}
@media (max-width:430px){
  .hero{padding:36px 0 32px}
  .hero h1{font-size:28px}
  .team-grid{grid-template-columns:repeat(3,1fr)}
  .btn{padding:12px 18px;font-size:14px}
  .match-card{padding:16px}
  .hub-card{padding:18px}
  .container{padding:0 18px}
}

/* reduce-motion */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms !important;transition-duration:.01ms !important}
}