/* ============================================================
   TRENDYALPHA — "Floodlit" design system
   Dark stadium-night surfaces, lime floodlight accent,
   poster typography (Anton) + Archivo utility face,
   ticket-stub cards with notched corners, 12° diagonal energy.
   ============================================================ */
:root {
  --bg: #0B0E11;
  --bg2: #10151A;
  --panel: #141A20;
  --panel-2: #1A222A;
  --line: #232D36;
  --ink: #F2F6F3;
  --dim: #93A1AB;
  --lime: #C8F542;
  --lime-dark: #9CCB1E;
  --danger: #FF5470;
  --draw: #FFC24B;
  --radius: 14px;
  --font-d: 'Anton', Impact, sans-serif;
  --font-b: 'Archivo', -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before { /* floodlight glow */
  content: ''; position: fixed; inset: -40% -20% auto -20%; height: 90%;
  background: radial-gradient(ellipse 55% 45% at 70% 0%, rgba(200,245,66,.09), transparent 60%),
              radial-gradient(ellipse 40% 35% at 15% 5%, rgba(60,130,90,.10), transparent 60%);
  pointer-events: none; z-index: 0;
}
.grain { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, header, footer, .ticker { position: relative; z-index: 2; }
a { color: inherit; text-decoration: none; }
b { font-weight: 700; }
.lime { color: var(--lime); }
.dim { color: var(--dim); }
.small { font-size: .85rem; }
.center { text-align: center; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px 60px; }
.wrap-inner { margin-top: 56px; }

/* ---------- typography ---------- */
.mega {
  font-family: var(--font-d);
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  white-space: nowrap;
  line-height: .96;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.small-mega { font-size: clamp(2.2rem, 6vw, 4rem); }
.page-h {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: .02em;
  margin: 26px 0 6px;
  text-transform: uppercase;
}
.section-h { font-family: var(--font-d); font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: .02em; margin-bottom: 22px; }
.kicker {
  font-size: .78rem; font-weight: 800; letter-spacing: .28em; color: var(--lime);
  margin: 18px 0 8px;
}
.lede { color: var(--dim); font-size: 1.12rem; max-width: 34em; margin: 18px 0 26px; }
.dash-sub { color: var(--dim); margin-bottom: 22px; }

/* ---------- top bar ---------- */
.topbar {
  display: flex; align-items: center; gap: 26px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(11,14,17,.85);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 50;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { flex: none; }
.brand-word { font-family: var(--font-b); font-weight: 900; font-size: 1.02rem; letter-spacing: .06em; }
.brand-word em { font-style: normal; color: var(--lime); }
.brand-word.small { font-size: .9rem; }
.mainnav { display: flex; gap: 4px; flex: 1; }
.mainnav a {
  padding: 7px 13px; border-radius: 9px; font-weight: 600; font-size: .92rem; color: var(--dim);
  transition: all .15s;
}
.mainnav a:hover { color: var(--ink); background: var(--panel); }
.mainnav a.on { color: var(--bg); background: var(--lime); font-weight: 800; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.userchip { font-weight: 700; padding: 7px 12px; background: var(--panel); border-radius: 9px; border: 1px solid var(--line); }
.pass-chip {
  font-weight: 900; font-size: .74rem; letter-spacing: .12em;
  padding: 6px 10px; border-radius: 8px;
  border: 1px dashed var(--lime); color: var(--lime);
}
.pass-chip.is-alpha { background: var(--lime); color: var(--bg); border-style: solid; }
.burger { display: none; }

/* ---------- buttons ---------- */
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--lime); color: #0B0E11;
  font-family: var(--font-b); font-weight: 900; font-size: 1rem; letter-spacing: .01em;
  padding: 14px 26px; border: none; border-radius: 12px; cursor: pointer;
  box-shadow: 0 0 0 1px rgba(200,245,66,.4), 0 8px 30px -8px rgba(200,245,66,.45);
  transition: transform .15s, box-shadow .15s;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(200,245,66,.6), 0 14px 40px -8px rgba(200,245,66,.55); }
.cta-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.cta-btn.small { padding: 9px 16px; font-size: .88rem; }
.ghost-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 20px; border-radius: 12px; border: 1px solid var(--line);
  background: transparent; color: var(--ink); font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: all .15s;
}
.ghost-btn:hover { border-color: var(--lime); color: var(--lime); }
.ghost-btn.big { padding: 14px 24px; }
.wide { width: 100%; }

/* ---------- ticker ---------- */
.ticker { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--bg2); padding: 8px 0; }
.ticker-track { display: flex; gap: 26px; width: max-content; animation: tick 55s linear infinite; }
.tick { white-space: nowrap; font-size: .84rem; color: var(--dim); }
.tick b { color: var(--ink); font-weight: 700; }
.tick-meta { color: var(--dim); margin-left: 8px; font-size: .78rem; }
.tick-dot { color: var(--lime); font-size: .5rem; align-self: center; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- hero ---------- */
.hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; max-width: 1120px; margin: 0 auto; padding: 60px 20px 70px; align-items: center; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.countdown-card {
  display: inline-flex; flex-direction: column; gap: 6px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; position: relative; overflow: hidden;
}
.countdown-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--lime); }
.cd-label { font-size: .72rem; font-weight: 800; letter-spacing: .22em; color: var(--dim); }
.cd-digits { display: flex; gap: 18px; }
.cd-digits span { display: flex; flex-direction: column; align-items: center; }
.cd-digits b { font-family: var(--font-d); font-size: 2.2rem; color: var(--lime); line-height: 1; }
.cd-digits i { font-style: normal; font-size: .68rem; letter-spacing: .18em; color: var(--dim); text-transform: uppercase; }
.cd-match { font-size: .85rem; color: var(--dim); }

/* ticket stack art */
.hero-art { display: flex; justify-content: center; }
.ticket-stack { position: relative; width: 320px; height: 400px; }
.ticket {
  position: absolute; width: 290px; padding: 18px 20px;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 12px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.7);
}
.ticket.t1 { top: 0; left: 0; transform: rotate(-6deg); border-color: rgba(200,245,66,.35); }
.ticket.t2 { top: 140px; left: 34px; transform: rotate(3deg); }
.ticket.t3 { top: 272px; left: 6px; transform: rotate(-2deg); }
.tk-head { font-size: .68rem; font-weight: 900; letter-spacing: .24em; color: var(--lime); display: block; margin-bottom: 10px; }
.tk-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: .95rem; padding: 3px 0; }
.tk-row.dim { color: var(--dim); }
.tk-score { font-family: var(--font-d); font-size: 1.3rem; color: var(--ink); letter-spacing: .05em; }
.tk-pts { display: block; margin-top: 10px; font-size: .75rem; font-weight: 800; letter-spacing: .14em; color: var(--dim); }

/* ---------- steps / cards ---------- */
.steps { padding-top: 30px; }
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.step-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; position: relative; overflow: hidden;
  transition: transform .18s, border-color .18s;
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(200,245,66,.45); }
.step-card::after {
  content: ''; position: absolute; right: -30px; top: -30px; width: 90px; height: 90px;
  background: rgba(200,245,66,.06); transform: rotate(12deg);
}
.step-num { font-family: var(--font-d); font-size: 2rem; color: rgba(200,245,66,.35); display: block; margin-bottom: 10px; }
.step-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.step-card p { color: var(--dim); font-size: .95rem; }

/* ---------- panels & layout ---------- */
.panel {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; margin-bottom: 18px;
}
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.panel h2 { font-size: 1.1rem; font-weight: 800; }
.center-panel { text-align: center; padding: 48px 24px; }
.dash-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; align-items: start; }
.dash-side { display: flex; flex-direction: column; gap: 0; }
.dash-head { margin-bottom: 20px; }
.empty { color: var(--dim); padding: 14px 0; font-size: .95rem; }
.flash {
  background: rgba(255,84,112,.12); border: 1px solid rgba(255,84,112,.4); color: #ffb3c0;
  border-radius: 10px; padding: 12px 16px; margin-bottom: 18px; font-size: .92rem;
}

/* stat tiles */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; margin-bottom: 24px; }
.stat-tile {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.st-num { font-family: var(--font-d); font-size: 2.4rem; line-height: 1; display: block; }
.st-num i { font-style: normal; font-size: 1.2rem; color: var(--dim); }
.st-label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); font-weight: 700; }
.stat-tile.flame.hot .st-num { color: var(--lime); }

/* fixture lines */
.fixline-list { list-style: none; }
.fixline { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.fixline:last-child { border-bottom: none; }
.fl-team { display: flex; align-items: center; gap: 10px; min-width: 0; }
.fl-team b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; font-size: .95rem; }
.fl-team.away { justify-content: flex-end; text-align: right; }
.fl-mid { font-size: .8rem; color: var(--dim); font-weight: 700; white-space: nowrap; padding: 4px 10px; background: var(--bg2); border-radius: 8px; }
.fl-mid.ft { color: var(--ink); font-family: var(--font-d); font-size: 1.05rem; letter-spacing: .06em; }
.fl-day { font-size: .74rem; font-weight: 900; letter-spacing: .2em; color: var(--lime); padding: 16px 0 6px; text-transform: uppercase; }
.roundel { flex: none; filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }

/* ---------- comp tabs & round nav ---------- */
.comp-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0; }
.tab {
  padding: 9px 16px; border-radius: 10px; border: 1px solid var(--line);
  font-weight: 700; font-size: .88rem; color: var(--dim); transition: all .15s;
}
.tab:hover { color: var(--ink); border-color: var(--dim); }
.tab.on { background: var(--lime); color: var(--bg); border-color: var(--lime); font-weight: 900; }
.round-nav { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.round-label { font-family: var(--font-d); letter-spacing: .12em; font-size: 1.15rem; }

/* ---------- prediction cards ---------- */
.pred-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 90px; }
.pred-card {
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: border-color .2s;
}
.pred-card.dirty { border-color: var(--lime); }
.pred-card.locked { opacity: .72; }
.pc-meta { display: flex; justify-content: space-between; font-size: .76rem; color: var(--dim); font-weight: 700; letter-spacing: .06em; margin-bottom: 10px; }
.lock-tag { color: var(--danger); letter-spacing: .18em; }
.lock-tag.ft { color: var(--ink); }
.pc-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; }
.pc-team { display: flex; align-items: center; gap: 10px; font-size: 1rem; min-width: 0; }
.pc-team b { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pc-team.away { justify-content: flex-end; text-align: right; }
.pc-score { display: flex; align-items: center; gap: 8px; }
.pc-dash { font-family: var(--font-d); color: var(--dim); font-size: 1.4rem; }
.stepper { display: flex; align-items: center; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.stepper input {
  width: 44px; text-align: center; background: transparent; border: none; color: var(--ink);
  font-family: var(--font-d); font-size: 1.5rem; padding: 8px 0; outline: none;
}
.stp {
  width: 34px; height: 46px; background: transparent; border: none; color: var(--dim);
  font-size: 1.2rem; font-weight: 900; cursor: pointer; transition: all .12s;
}
.stp:hover:not(:disabled) { color: var(--lime); background: rgba(200,245,66,.08); }
.stp:disabled { opacity: .3; cursor: not-allowed; }
.save-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: flex-end; gap: 18px;
  padding: 14px 22px; background: rgba(11,14,17,.92); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.split-bar { display: flex; height: 20px; border-radius: 6px; overflow: hidden; margin-top: 12px; font-size: .68rem; font-weight: 800; }
.sb { display: flex; align-items: center; justify-content: center; min-width: 34px; color: #0B0E11; }
.sb.h { background: var(--lime); }
.sb.d { background: var(--draw); }
.sb.a { background: #7FD4FF; }
.split-teaser { margin-top: 12px; font-size: .8rem; }
.split-teaser a { color: var(--dim); border-bottom: 1px dashed var(--dim); }
.split-teaser a:hover { color: var(--lime); border-color: var(--lime); }

/* ---------- streak ---------- */
.streak-hero { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: stretch; margin-bottom: 18px; }
.streak-count {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 40px;
}
.streak-count.hot { border-color: rgba(200,245,66,.5); box-shadow: 0 0 50px -18px rgba(200,245,66,.5); }
.sc-flame { font-size: 2rem; }
.sc-num { font-family: var(--font-d); font-size: 4.4rem; line-height: 1; color: var(--lime); }
.sc-label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); font-weight: 700; }
.streak-match { margin-bottom: 0; }
.sm-teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; margin: 16px 0 8px; }
.sm-team { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.sm-vs { font-family: var(--font-d); font-size: 1.4rem; color: var(--dim); }
.pick-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; margin: 18px 0 8px; }
.pick-btn {
  padding: 14px 10px; border-radius: 12px; border: 1px solid var(--line); background: var(--bg2);
  color: var(--ink); font-weight: 800; font-size: .92rem; cursor: pointer; transition: all .15s;
  display: flex; flex-direction: column; gap: 2px; align-items: center;
}
.pick-btn span { font-size: .68rem; letter-spacing: .2em; color: var(--dim); }
.pick-btn:hover { border-color: var(--lime); }
.pick-btn.on { background: var(--lime); color: var(--bg); border-color: var(--lime); }
.pick-btn.on span { color: rgba(11,14,17,.7); }
.streak-flame { font-size: 2.2rem; margin-bottom: 6px; }
.streak-panel { text-align: center; }
.streak-panel .streak-flame b { font-family: var(--font-d); font-size: 2rem; color: var(--lime); }

/* ---------- boards & tables ---------- */
.board { list-style: none; }
.board li { display: flex; align-items: center; gap: 14px; padding: 10px 8px; border-bottom: 1px solid var(--line); }
.board li:last-child { border: none; }
.board li.me { background: rgba(200,245,66,.07); border-radius: 8px; }
.b-rank { font-family: var(--font-d); font-size: 1.1rem; color: var(--dim); width: 30px; text-align: center; flex: none; }
.b-rank.gold { color: var(--lime); }
.b-name { flex: 1; font-weight: 700; }
.b-detail { font-size: .8rem; }
.b-pts { font-family: var(--font-d); font-size: 1.3rem; color: var(--lime); }
.board.big li { padding: 13px 10px; }
.alpha-badge {
  font-style: normal; background: var(--lime); color: var(--bg); font-weight: 900;
  border-radius: 5px; padding: 1px 5px; font-size: .72rem; vertical-align: middle;
}
.league-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.league-table th { font-size: .7rem; letter-spacing: .12em; color: var(--dim); text-transform: uppercase; padding: 8px 6px; text-align: center; }
.league-table td { padding: 9px 6px; text-align: center; border-top: 1px solid var(--line); }
.league-table .tl { text-align: left; }
.team-cell { display: flex; align-items: center; gap: 9px; font-weight: 600; }
.league-table .pts { font-family: var(--font-d); font-size: 1.05rem; color: var(--lime); }
tr.zone-cl td:first-child { box-shadow: inset 3px 0 0 var(--lime); }
tr.zone-rel td:first-child { box-shadow: inset 3px 0 0 var(--danger); }
.form-cell .f {
  display: inline-flex; width: 18px; height: 18px; border-radius: 5px; font-style: normal;
  font-size: .62rem; font-weight: 900; align-items: center; justify-content: center; margin: 0 1px;
}
.f.W { background: var(--lime); color: var(--bg); }
.f.D { background: var(--draw); color: var(--bg); }
.f.L { background: var(--danger); color: #fff; }
.table-panel { overflow-x: auto; }

/* ---------- leagues ---------- */
.league-list { list-style: none; margin-bottom: 14px; }
.league-list a { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 10px; border-bottom: 1px solid var(--line); transition: background .12s; border-radius: 8px; }
.league-list a:hover { background: var(--bg2); }
.league-list li:last-child a { border: none; }
.invite-card {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  background: linear-gradient(160deg, rgba(200,245,66,.12), var(--panel));
  border: 1px dashed rgba(200,245,66,.5); border-radius: var(--radius);
  padding: 18px 22px; margin: 18px 0;
}
.invite-code { font-family: var(--font-d); font-size: 2.2rem; letter-spacing: .3em; color: var(--lime); display: block; }
.invite-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- premium ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; margin: 26px 0; max-width: 720px; }
.price-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; position: relative; }
.price-card.featured { border-color: var(--lime); box-shadow: 0 0 60px -22px rgba(200,245,66,.55); }
.pc-tag { position: absolute; top: -11px; left: 22px; background: var(--lime); color: var(--bg); font-size: .68rem; font-weight: 900; letter-spacing: .14em; padding: 3px 10px; border-radius: 6px; }
.price-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.price { color: var(--dim); margin-bottom: 16px; }
.price span { font-family: var(--font-d); font-size: 2.6rem; color: var(--ink); margin-right: 4px; }
.tick-list { list-style: none; margin: 14px 0 22px; }
.tick-list li { padding: 6px 0 6px 26px; position: relative; color: var(--dim); font-size: .95rem; }
.tick-list li::before { content: '✓'; position: absolute; left: 2px; color: var(--lime); font-weight: 900; }
.premium-tease { margin-top: 50px; }
.pt-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center;
  background: linear-gradient(140deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 20px; padding: 40px;
  position: relative; overflow: hidden;
}
.pt-inner::after { content: 'α'; position: absolute; right: -20px; bottom: -70px; font-family: var(--font-d); font-size: 20rem; color: rgba(200,245,66,.05); }
.pt-price { text-align: center; }
.pt-big { font-family: var(--font-d); font-size: 4.6rem; color: var(--lime); display: block; line-height: 1; }
.pt-per { color: var(--dim); letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; font-weight: 800; }
.pt-alt { display: block; color: var(--dim); margin-top: 8px; font-size: .9rem; }

/* ---------- forms ---------- */
.stack-form { display: flex; flex-direction: column; gap: 14px; margin: 14px 0; }
.stack-form label { display: flex; flex-direction: column; gap: 6px; font-size: .82rem; font-weight: 700; letter-spacing: .06em; color: var(--dim); text-transform: uppercase; }
.stack-form input {
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 14px; color: var(--ink); font-size: 1rem; font-family: var(--font-b); outline: none;
  transition: border-color .15s;
}
.stack-form input:focus { border-color: var(--lime); }
.auth-wrap { display: flex; justify-content: center; padding-top: 40px; }
.auth-panel { width: 100%; max-width: 440px; padding: 34px; }

/* ---------- ads ---------- */
.adslot {
  position: relative; margin: 26px auto; max-width: 1120px;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px;
  background: var(--bg2);
}
.adslot-tag { position: absolute; top: -9px; left: 16px; background: var(--bg); border: 1px solid var(--line); color: var(--dim); font-size: .62rem; font-weight: 900; letter-spacing: .2em; padding: 1px 8px; border-radius: 5px; }
.adslot.house { display: flex; align-items: center; gap: 18px; transition: border-color .15s; }
.adslot.house:hover { border-color: var(--lime); }
.adslot.house .adslot-tag { color: var(--lime); border-color: rgba(200,245,66,.4); }
.adslot.house strong { display: block; }
.adslot.house span:not(.adslot-tag):not(.house-cta) { color: var(--dim); font-size: .88rem; }
.house-cta { margin-left: auto; color: var(--lime); font-weight: 800; white-space: nowrap; }

/* ---------- misc ---------- */
.final-cta { text-align: center; padding: 70px 20px 90px; }
.final-cta .cta-btn { margin-top: 26px; }
.foot-note { color: var(--dim); font-size: .88rem; margin-top: 6px; }
.footer { border-top: 1px solid var(--line); background: var(--bg2); }
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 36px 20px; display: grid; gap: 20px; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; font-size: .9rem; color: var(--dim); }
.foot-links a:hover { color: var(--lime); }
.foot-legal { color: #5A6870; font-size: .78rem; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-art { display: none; }
  .dash-grid { grid-template-columns: 1fr; }
  .streak-hero { grid-template-columns: 1fr; }
  .pt-inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .mega { white-space: normal; }
  .mainnav {
    position: fixed; top: 61px; left: 0; right: 0; z-index: 49;
    background: rgba(11,14,17,.97); flex-direction: column; padding: 14px;
    border-bottom: 1px solid var(--line); display: none;
  }
  .mainnav.open { display: flex; }
  .burger { display: flex; flex-direction: column; gap: 4px; background: none; border: 1px solid var(--line); border-radius: 9px; padding: 9px; cursor: pointer; }
  .burger span { width: 18px; height: 2px; background: var(--ink); }
  .userchip { display: none; }
  .hide-s { display: none; }
  .pc-row { grid-template-columns: 1fr; gap: 10px; }
  .pc-team.away { justify-content: flex-start; flex-direction: row-reverse; }
  .pc-score { justify-content: center; }
  .cd-digits b { font-size: 1.7rem; }
}
