/* ============================================================
   CARDSNIPER — RETRO ARCADE THEME
   CRT scanlines, neon glow, pixel borders. The pixel font
   (Press Start 2P) loads from Google Fonts; if the user is
   offline it degrades to monospace and everything still works.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

:root {
  --bg: #0a0118;
  --bg-2: #140530;
  --surface: #1b0b3a;
  --surface-2: #251252;
  --border: #4a2d8f;
  --text: #e8e3ff;
  --muted: #9d8fd0;
  --neon-pink: #ff2d95;
  --neon-cyan: #00f0ff;
  --neon-yellow: #ffe600;
  --neon-green: #39ff88;
  --danger: #ff4757;
  --pixel: 'Press Start 2P', monospace;
  --crt: 'VT323', monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--crt);
  font-size: 1.25rem;
  background:
    radial-gradient(ellipse at 50% -20%, #2a1060 0%, transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  position: relative;
}

/* CRT scanline overlay across the whole screen */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 0, 0, 0.18) 3px,
    rgba(0, 0, 0, 0) 4px
  );
  z-index: 9999;
}

a { color: var(--neon-cyan); text-decoration: none; }
a:hover { color: var(--neon-yellow); text-decoration: none; text-shadow: 0 0 8px currentColor; }

h1, h2, h3, .brand, .btn, .nav nav a {
  font-family: var(--pixel);
}
h1 { font-size: 1.6rem; line-height: 1.7; }
h2 { font-size: 1.15rem; line-height: 1.7; }
h3 { font-size: 0.8rem; line-height: 1.6; }

/* ---------- pixel border helper (chunky 8-bit frame) ---------- */
.pixel-frame {
  border: 4px solid var(--border);
  box-shadow:
    0 0 0 4px var(--bg),
    0 0 0 6px var(--border),
    0 0 24px rgba(255, 45, 149, 0.25);
  border-radius: 0;
}

/* ---------- nav / marquee ---------- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 28px;
  border-bottom: 4px solid var(--neon-pink);
  background: linear-gradient(180deg, #1d0a40 0%, #120428 100%);
  box-shadow: 0 4px 30px rgba(255, 45, 149, 0.35);
}
.nav .brand {
  font-size: 1rem;
  color: var(--neon-yellow);
  text-shadow: 0 0 10px var(--neon-yellow), 0 0 30px rgba(255, 230, 0, 0.5);
  letter-spacing: 1px;
}
.nav .brand:hover { color: var(--neon-yellow); }
.nav .brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { width: 30px; height: 30px; flex-shrink: 0; filter: drop-shadow(0 0 6px rgba(255,45,149,0.5)); }
.nav nav { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.nav nav a {
  color: var(--muted);
  font-size: 0.6rem;
  text-transform: uppercase;
}
.nav nav a.active, .nav nav a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
}
.nav .btn-small {
  background: var(--neon-pink);
  color: #fff !important;
  padding: 8px 14px;
  text-shadow: none;
  box-shadow: 0 0 14px rgba(255, 45, 149, 0.8);
}
.nav .btn-small:hover { background: var(--neon-cyan); color: #061018 !important; }

.link-btn {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font-size: 0.6rem; font-family: var(--pixel); padding: 0; text-transform: uppercase;
}
.link-btn:hover { color: var(--neon-cyan); text-shadow: 0 0 8px var(--neon-cyan); }
.inline-form { display: inline; }

main { max-width: 1100px; margin: 0 auto; padding: 40px 24px 80px; position: relative; }

/* ---------- hero ---------- */
.hero { text-align: center; padding: 30px 0 40px; }
.hero .attract {
  font-family: var(--pixel);
  font-size: 0.65rem;
  color: var(--neon-green);
  letter-spacing: 3px;
  animation: blink 1.1s steps(1) infinite;
  margin-bottom: 22px;
}
@keyframes blink { 50% { opacity: 0; } }
.hero h1 {
  max-width: 860px;
  margin: 0 auto 24px;
  color: var(--text);
  text-shadow:
    3px 3px 0 var(--neon-pink),
    -2px -2px 0 var(--neon-cyan);
}
.hero .lead {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.35rem;
}
.cta-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  background: var(--neon-pink);
  color: #fff;
  padding: 16px 26px;
  border: none;
  font-family: var(--pixel);
  font-size: 0.7rem;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 6px 0 #a3125c, 0 0 22px rgba(255, 45, 149, 0.6);
  transition: transform 0.05s, box-shadow 0.05s;
}
.btn:hover { color: #fff; transform: translateY(2px); box-shadow: 0 4px 0 #a3125c, 0 0 22px rgba(255, 45, 149, 0.6); text-shadow: none; }
.btn-secondary {
  background: var(--surface-2);
  box-shadow: 0 6px 0 #170a35, 0 0 18px rgba(0, 240, 255, 0.25);
  color: var(--neon-cyan);
}
.btn-secondary:hover { color: var(--neon-cyan); box-shadow: 0 4px 0 #170a35, 0 0 18px rgba(0, 240, 255, 0.25); }

/* ---------- card showcase wall ---------- */
.card-wall {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 30px 0 10px;
  perspective: 900px;
}
.show-card {
  width: 158px;
  height: 222px;
  padding: 8px 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 4px solid;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 70%);
  font-family: var(--pixel);
  transition: transform 0.15s;
  position: relative;
}
.show-card:nth-child(odd) { transform: rotate(-4deg); }
.show-card:nth-child(even) { transform: rotate(3deg) translateY(10px); }
.show-card:hover { transform: rotate(0deg) scale(1.12); z-index: 2; }

.sc-top { display: flex; justify-content: space-between; align-items: center; }
.sc-set { font-size: 0.4rem; opacity: 0.8; letter-spacing: 1px; }
.show-card .sc-sport { font-size: 0.42rem; letter-spacing: 1px; opacity: 0.95; }

/* the "photo" window of the card */
.sc-photo {
  position: relative;
  flex: 1;
  border: 2px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  background: #0d0322;
}
.sc-scene { position: absolute; inset: 0; }

/* baseball: night sky over green outfield + tan infield diamond */
.sc-scene-bb {
  background:
    linear-gradient(180deg, #1a0f45 0%, #34186b 46%, #1f7a3d 46%, #17612f 72%, #b8874a 72%, #a3763e 100%);
}
.sc-scene-bb::after {
  content: '';
  position: absolute;
  left: 50%; top: 58%;
  width: 54px; height: 54px;
  transform: translateX(-50%) rotate(45deg);
  background: #c99a5b;
  border: 3px solid #e8d9b8;
}
/* basketball: court with glowing hoop arc */
.sc-scene-bk {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 122, 0, 0.85) 0 10px, transparent 11px),
    linear-gradient(180deg, #240f50 0%, #3a1670 55%, #8a5a2b 55%, #75491f 100%);
}
.sc-scene-bk::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -34px;
  width: 110px; height: 74px;
  transform: translateX(-50%);
  border: 3px solid rgba(255, 255, 255, 0.55);
  border-radius: 50% 50% 0 0;
  border-bottom: none;
}
/* football: field with yard lines */
.sc-scene-fb {
  background:
    repeating-linear-gradient(180deg, transparent 0 16px, rgba(255, 255, 255, 0.4) 16px 18px),
    linear-gradient(180deg, #240f50 0%, #33145f 34%, #1f7a3d 34%, #145c2a 100%);
}
.sc-scene-fb::after {
  content: '';
  position: absolute;
  left: 50%; top: 12%;
  width: 26px; height: 30px;
  transform: translateX(-50%);
  border: 3px solid var(--neon-yellow);
  border-top: none;
  box-shadow: 0 0 8px rgba(255, 230, 0, 0.6);
}
/* hockey: ice with center + goal lines */
.sc-scene-hk {
  background:
    linear-gradient(180deg, transparent 0 52%, #d43a3a 52% 56%, transparent 56% 72%, #2a55c9 72% 78%, transparent 78%),
    linear-gradient(180deg, #240f50 0%, #33145f 30%, #cfe6f5 30%, #b8d4ea 100%);
}
.sc-scene-hk::after {
  content: '';
  position: absolute;
  left: 50%; top: 62%;
  width: 34px; height: 34px;
  transform: translateX(-50%);
  border: 3px solid rgba(212, 58, 58, 0.8);
  border-radius: 50%;
}

/* soccer: green pitch with centre circle + halfway line */
.sc-scene-so {
  background:
    linear-gradient(180deg, #240f50 0%, #33145f 26%, #1f7a3d 26%, #145c2a 100%);
}
.sc-scene-so::after {
  content: '';
  position: absolute;
  left: 50%; top: 60%;
  width: 40px; height: 40px;
  transform: translateX(-50%);
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 -60px 0 -57px rgba(255, 255, 255, 0.5); /* faint halfway line hint */
}

/* big jersey number over the scene */
.sc-jersey {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.65), 0 0 18px currentColor;
}

/* foil shine sweeping across the photo, like a holo parallel */
.sc-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.34) 50%, transparent 58%);
  animation: foil 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes foil {
  0%, 100% { transform: translateX(-36%); }
  50% { transform: translateX(36%); }
}

/* name plate */
.sc-plate {
  background: rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.18);
  padding: 5px 4px 4px;
  text-align: center;
}
.show-card .sc-name { font-size: 0.55rem; line-height: 1.4; }
.show-card .sc-tag {
  font-family: var(--crt);
  font-size: 0.95rem;
  color: var(--neon-green);
}

/* rookie-card shield */
.sc-rc {
  position: absolute;
  top: 30px; right: 2px;
  background: var(--neon-yellow);
  color: #1a1005;
  font-size: 0.42rem;
  padding: 3px 4px;
  border: 2px solid #1a1005;
  box-shadow: 0 0 10px rgba(255, 230, 0, 0.7);
}
.sc-pink { border-color: var(--neon-pink); color: var(--neon-pink); box-shadow: 0 0 18px rgba(255,45,149,0.5); }
.sc-cyan { border-color: var(--neon-cyan); color: var(--neon-cyan); box-shadow: 0 0 18px rgba(0,240,255,0.5); }
.sc-yellow { border-color: var(--neon-yellow); color: var(--neon-yellow); box-shadow: 0 0 18px rgba(255,230,0,0.5); }
.sc-green { border-color: var(--neon-green); color: var(--neon-green); box-shadow: 0 0 18px rgba(57,255,136,0.5); }

/* ---------- features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 50px 0;
}
.feature {
  background: var(--surface);
  border: 4px solid var(--border);
  padding: 24px;
  box-shadow: 6px 6px 0 #000;
}
.feature h3 { margin-top: 0; color: var(--neon-cyan); }
.feature p { color: var(--muted); }

.how { margin: 60px 0; text-align: center; }
.how h2 { color: var(--neon-yellow); text-shadow: 0 0 12px rgba(255,230,0,0.5); }
.how ol {
  color: var(--muted);
  font-size: 1.3rem;
  text-align: left;
  max-width: 640px;
  margin: 20px auto 0;
}
.how li { margin-bottom: 12px; }
.how li::marker { color: var(--neon-pink); font-family: var(--pixel); font-size: 0.8rem; }

/* ---------- auth & account ---------- */
.auth-card, .account-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--surface);
  border: 4px solid var(--border);
  box-shadow: 8px 8px 0 #000, 0 0 30px rgba(0, 240, 255, 0.15);
  padding: 32px;
}
.auth-card h1, .account-card h1 { color: var(--neon-cyan); font-size: 1rem; margin-top: 0; }
.stacked-form { display: flex; flex-direction: column; gap: 18px; margin-top: 22px; }
.stacked-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--pixel); font-size: 0.55rem;
  color: var(--muted); text-transform: uppercase;
}
.stacked-form input {
  background: #0d0322;
  border: 3px solid var(--border);
  padding: 12px;
  color: var(--neon-green);
  font-family: var(--crt);
  font-size: 1.25rem;
}
.stacked-form input:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
}
.muted { color: var(--muted); }
.muted.small { font-size: 1rem; }

.banner { padding: 14px 16px; margin-bottom: 16px; border: 3px solid; font-size: 1.15rem; }
.banner-error { background: rgba(255, 71, 87, 0.12); border-color: var(--danger); color: #ff9aa5; }
/* Neutral/positive notice: "account created", "no payment was taken". Uses the
   same box as the error banner so nothing shifts, just a calmer palette. */
.banner:not(.banner-error):not(.banner-success) {
  background: rgba(0, 229, 255, 0.10); border-color: var(--neon-cyan, #00e5ff); color: #9fe9f5;
}

/* ---------- pricing ---------- */
.pricing { text-align: center; padding: 20px 0; }
.pricing h1 { color: var(--neon-yellow); text-shadow: 3px 3px 0 var(--neon-pink); }
.price-card {
  max-width: 400px;
  margin: 36px auto 0;
  background: var(--surface);
  border: 4px solid var(--neon-yellow);
  box-shadow: 8px 8px 0 #000, 0 0 30px rgba(255, 230, 0, 0.3);
  padding: 32px;
}
.price-amount { font-family: var(--pixel); font-size: 2rem; color: var(--neon-green); margin-bottom: 24px; text-shadow: 0 0 16px rgba(57,255,136,0.6); }
.price-amount span { font-size: 0.7rem; color: var(--muted); }
.price-features { list-style: none; padding: 0; text-align: left; color: var(--muted); margin-bottom: 28px; font-size: 1.2rem; }
.price-features li { padding: 10px 0; border-bottom: 2px dashed var(--border); }
.price-features li::before { content: '▸ '; color: var(--neon-pink); }

/* ---------- deal feed ---------- */
.deals-header { margin-bottom: 20px; text-align: center; }

/* sport filter tabs on the deal feed */
.sport-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 26px;
}
.sport-tab {
  font-family: var(--pixel);
  font-size: 0.55rem;
  color: var(--muted);
  background: var(--surface);
  border: 3px solid var(--border);
  padding: 10px 14px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.12s, border-color 0.12s, box-shadow 0.12s;
}
.sport-tab:hover { color: var(--neon-cyan); border-color: var(--neon-cyan); text-decoration: none; }
.sport-tab.active {
  color: var(--neon-yellow);
  border-color: var(--neon-yellow);
  box-shadow: 0 0 14px rgba(255, 230, 0, 0.4);
}
.tab-count {
  font-size: 0.5rem;
  background: #000;
  color: var(--neon-green);
  border: 2px solid currentColor;
  padding: 2px 5px;
}
.deals-header h1 { color: var(--neon-cyan); text-shadow: 3px 3px 0 #000, 0 0 18px rgba(0,240,255,0.6); }
.deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.deal-grid.blurred { filter: blur(5px); pointer-events: none; user-select: none; opacity: 0.55; }
.deal-card {
  background: var(--surface);
  border: 4px solid var(--border);
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.deal-card:hover { border-color: var(--neon-green); box-shadow: 6px 6px 0 #000, 0 0 22px rgba(57,255,136,0.45); }
.deal-card img { width: 100%; height: 180px; object-fit: contain; background: #fff; border-bottom: 4px solid var(--border); }
.img-placeholder {
  width: 100%; height: 180px; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-family: var(--pixel); font-size: 0.6rem;
  border-bottom: 4px solid var(--border);
}
.deal-info { padding: 14px 16px; }
.deal-info h3 { font-family: var(--crt); font-size: 1.15rem; margin: 0 0 10px; line-height: 1.3; }
.deal-info h3 a { color: var(--text); }
.deal-info h3 a:hover { color: var(--neon-cyan); }
.deal-prices { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; gap: 8px; }
.price-now { font-family: var(--pixel); font-size: 1rem; color: var(--neon-green); text-shadow: 0 0 10px rgba(57,255,136,0.7); }
.price-comp { font-size: 0.95rem; color: var(--muted); text-align: right; }
.deal-pct {
  display: inline-block;
  background: #000;
  border: 2px solid var(--neon-yellow);
  color: var(--neon-yellow);
  padding: 4px 10px;
  font-family: var(--pixel);
  font-size: 0.55rem;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(255,230,0,0.7);
}
.deal-meta { font-size: 0.95rem; color: var(--muted); }

/* ---------- paywall = INSERT COIN screen ---------- */
.paywall { text-align: center; padding: 20px 0; }
.paywall h2 {
  color: var(--neon-pink);
  text-shadow: 0 0 14px rgba(255,45,149,0.7);
}
.paywall .insert-coin {
  font-family: var(--pixel);
  font-size: 0.85rem;
  color: var(--neon-yellow);
  letter-spacing: 2px;
  animation: blink 1s steps(1) infinite;
  margin: 26px 0;
  text-shadow: 0 0 14px rgba(255,230,0,0.8);
}
.paywall-cta { margin-top: 28px; }

/* ---------- status pills ---------- */
.status-pill {
  padding: 4px 12px;
  font-family: var(--pixel);
  font-size: 0.55rem;
  border: 2px solid;
  text-transform: uppercase;
}
.status-active, .status-trialing { border-color: var(--neon-green); color: var(--neon-green); text-shadow: 0 0 8px rgba(57,255,136,0.7); }
.status-none, .status-canceled, .status-past_due { border-color: var(--danger); color: #ff9aa5; }

/* --- consent checkboxes --- */
.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--crt);
  font-size: 1.05rem;
  color: var(--muted);
  text-align: left;
  line-height: 1.4;
}
.checkbox-label input[type="checkbox"] { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; }
.checkbox-label a { color: var(--neon-cyan); }
.checkout-form { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.checkout-form .consent { background: #0d0322; border: 2px solid var(--border); padding: 12px; }

/* --- legal document pages --- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--crt);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text);
}
.legal h1 { color: var(--neon-cyan); text-shadow: 2px 2px 0 #000; }
.legal h2 { color: var(--neon-yellow); font-size: 0.95rem; margin-top: 34px; }
.legal p, .legal li { color: #cfc7ef; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--neon-cyan); }
.legal-meta { color: var(--muted); font-size: 1rem; border-left: 3px solid var(--border); padding-left: 12px; }
.legal strong, .legal em { color: var(--text); }

/* --- account danger zone --- */
.danger-zone { margin-top: 26px; border-color: var(--danger); }
.danger-zone h2 { color: var(--danger); font-size: 0.9rem; margin-top: 0; }
.danger-zone form { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.btn-danger { background: var(--danger); box-shadow: 0 6px 0 #7a1f28; }
.btn-danger:hover { box-shadow: 0 4px 0 #7a1f28; }

footer {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  padding: 26px;
  border-top: 4px solid var(--border);
  margin-top: 40px;
}
.footer-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-family: var(--pixel);
  font-size: 0.55rem;
  text-transform: uppercase;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--neon-cyan); text-shadow: 0 0 8px var(--neon-cyan); }
.cookie-note { font-size: 0.75rem; opacity: 0.85; margin-top: 8px; }
.cookie-note a { color: var(--muted); text-decoration: underline; }

/* ============================================================
   RESPONSIVE / MOBILE
   ============================================================ */

/* Never allow sideways scroll from rotated cards or wide headings. */
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; }

/* Tablets and small laptops */
@media (max-width: 900px) {
  main { padding: 28px 18px 64px; }
  .features { gap: 18px; }
}

/* Phones */
@media (max-width: 640px) {
  body { font-size: 1.1rem; }

  /* headings: the pixel font is wide, so scale everything down hard */
  h1 { font-size: 1.05rem; line-height: 1.6; }
  h2 { font-size: 0.85rem; }
  .hero h1 { font-size: 1rem; text-shadow: 2px 2px 0 var(--neon-pink), -1px -1px 0 var(--neon-cyan); }
  .hero .lead { font-size: 1.15rem; }
  .hero .attract { font-size: 0.5rem; letter-spacing: 1px; }
  .deals-header h1 { font-size: 0.8rem; line-height: 1.7; }
  .how h2, .pricing h1, .legal h1 { font-size: 1rem; }

  /* nav: stack the brand over a wrapping row of links, centred */
  .nav { flex-direction: column; gap: 10px; padding: 14px 14px; text-align: center; }
  .nav .brand { font-size: 0.85rem; }
  .nav nav { justify-content: center; gap: 14px; row-gap: 8px; }
  .nav nav a { font-size: 0.5rem; }

  /* buttons full-width-ish and tappable */
  .btn { padding: 14px 20px; font-size: 0.65rem; }
  .cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-row .btn { width: 100%; box-sizing: border-box; }

  /* showcase cards: smaller, no rotation (avoids overflow), centred */
  .card-wall { gap: 16px; padding: 20px 0 6px; }
  .show-card { width: 132px; height: 188px; }
  .show-card:nth-child(odd), .show-card:nth-child(even) { transform: none; }
  .show-card:hover { transform: scale(1.06); }

  /* deal feed: single column, comfortable */
  .deal-grid { grid-template-columns: 1fr; gap: 16px; }
  .deal-prices { flex-direction: column; align-items: flex-start; gap: 2px; }
  .price-comp { text-align: left; }

  /* sport tabs: tighter, still tappable */
  .sport-tabs { gap: 8px; }
  .sport-tab { font-size: 0.5rem; padding: 9px 10px; }

  /* cards / panels: full width with sensible padding */
  .auth-card, .account-card, .price-card { padding: 22px; }
  .feature { padding: 20px; }

  /* legal docs: readable body size */
  .legal { font-size: 1.1rem; }
  .footer-links { gap: 12px; font-size: 0.5rem; }
}

/* Very small phones */
@media (max-width: 380px) {
  .deals-header h1 { font-size: 0.68rem; }
  .show-card { width: 118px; height: 168px; }
  .sport-tab { font-size: 0.46rem; padding: 8px; }
}

/* pricing amount: keep the price from overflowing its card on phones */
@media (max-width: 640px) {
  .price-amount { font-size: 1.5rem; overflow-wrap: break-word; line-height: 1.4; }
}
@media (max-width: 380px) {
  .price-amount { font-size: 1.2rem; }
}

/* ---------- player alerts ---------- */
.watch-list { list-style: none; padding: 0; margin: 18px 0 0; }
.watch-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 3px solid var(--border);
}
.watch-row:last-child { border-bottom: none; }
.watch-main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.watch-main strong { color: var(--neon-green); font-size: 1.2rem; overflow-wrap: anywhere; }
.banner-success { background: rgba(53, 196, 106, 0.12); border-color: var(--neon-green); color: #8ef0b0; }
.help-details { margin-top: 20px; border-top: 3px solid var(--border); padding-top: 14px; }
.help-details summary { cursor: pointer; color: var(--neon-cyan); font-size: 1.05rem; }
.help-details p { font-size: 1rem; color: var(--muted); }
.help-details code { overflow-wrap: anywhere; }

/* ---------- launch-offer popup ----------
   Hidden until app.js reveals it, so a visitor who already dismissed it never
   sees a flash of it on load. No inline styles anywhere: the site's CSP has no
   'unsafe-inline' in style-src, which is why the progress meter uses the
   pre-baked .pmeter-* width classes below rather than a style attribute. */
.promo-overlay[hidden] { display: none; }
.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 0, 12, 0.82);
  overflow-y: auto;
  animation: promo-fade 0.22s ease-out;
}
@keyframes promo-fade { from { opacity: 0; } to { opacity: 1; } }

.promo-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: auto;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 4px solid var(--neon-pink);
  box-shadow: 0 0 60px rgba(255, 45, 149, 0.45), 0 0 0 4px rgba(10, 1, 24, 0.9);
  padding: 34px 28px 26px;
  text-align: center;
}

.promo-close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--crt);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.promo-close:hover { color: var(--neon-pink); }

.promo-eyebrow {
  margin: 0 0 14px;
  font-family: var(--pixel);
  font-size: 0.48rem;
  letter-spacing: 0.12em;
  color: var(--neon-cyan);
}
.promo-title {
  margin: 0 0 14px;
  font-family: var(--pixel);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--neon-yellow);
  text-shadow: 0 0 18px rgba(255, 230, 0, 0.55);
}
.promo-lede { margin: 0 0 20px; color: var(--text); font-size: 1.1rem; }
.promo-lede b { color: var(--neon-green); }

.promo-codebox {
  border: 3px dashed var(--neon-yellow);
  background: rgba(255, 230, 0, 0.07);
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.promo-codelabel {
  font-family: var(--pixel);
  font-size: 0.44rem;
  letter-spacing: 0.16em;
  color: var(--neon-yellow);
}
.promo-code {
  font-family: var(--pixel);
  font-size: 1.35rem;
  color: var(--neon-yellow);
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
  text-shadow: 0 0 16px rgba(255, 230, 0, 0.6);
}
.promo-copy {
  background: none;
  border: 2px solid var(--border);
  color: var(--muted);
  font-family: var(--crt);
  font-size: 1rem;
  padding: 5px 14px;
  cursor: pointer;
}
.promo-copy:hover { color: var(--neon-cyan); border-color: var(--neon-cyan); }

.promo-pricing { margin: 18px 0 14px; color: var(--muted); font-size: 1.15rem; }
.promo-pricing s { opacity: 0.7; }
.promo-pricing b { color: var(--neon-green); font-size: 1.5rem; margin: 0 6px; }

.promo-meter {
  height: 16px;
  border: 2px solid var(--border);
  background: rgba(10, 1, 24, 0.7);
  overflow: hidden;
}
.promo-meter-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
  box-shadow: 0 0 18px rgba(255, 45, 149, 0.6);
}
/* One class per 5% step, because a style attribute would be blocked by CSP. */
.pmeter-0 { width: 0; }
.pmeter-5 { width: 5%; }
.pmeter-10 { width: 10%; }
.pmeter-15 { width: 15%; }
.pmeter-20 { width: 20%; }
.pmeter-25 { width: 25%; }
.pmeter-30 { width: 30%; }
.pmeter-35 { width: 35%; }
.pmeter-40 { width: 40%; }
.pmeter-45 { width: 45%; }
.pmeter-50 { width: 50%; }
.pmeter-55 { width: 55%; }
.pmeter-60 { width: 60%; }
.pmeter-65 { width: 65%; }
.pmeter-70 { width: 70%; }
.pmeter-75 { width: 75%; }
.pmeter-80 { width: 80%; }
.pmeter-85 { width: 85%; }
.pmeter-90 { width: 90%; }
.pmeter-95 { width: 95%; }
.pmeter-100 { width: 100%; }

.promo-left { margin: 10px 0 20px; color: var(--muted); font-size: 1.05rem; }
.promo-left b { color: var(--neon-pink); font-size: 1.3rem; }

.promo-cta { width: 100%; }
.promo-dismiss {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--crt);
  font-size: 1.05rem;
  text-decoration: underline;
  cursor: pointer;
}
.promo-dismiss:hover { color: var(--text); }

.promo-fine {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.85;
}

/* Small phones: the popup has to fit without the CTA falling off-screen. */
@media (max-width: 480px) {
  .promo-box { padding: 28px 18px 20px; }
  .promo-title { font-size: 0.9rem; line-height: 1.8; }
  .promo-code { font-size: 1rem; }
  .promo-lede, .promo-pricing { font-size: 1rem; }
}

/* ---------- launch-offer strip on the pricing page ---------- */
.promo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 620px;
  margin: 0 auto 22px;
  padding: 14px 18px;
  border: 3px dashed var(--neon-yellow);
  background: rgba(255, 230, 0, 0.07);
  color: var(--text);
  font-size: 1.05rem;
  text-align: center;
}
.promo-strip-tag {
  font-family: var(--pixel);
  font-size: 0.44rem;
  letter-spacing: 0.14em;
  color: var(--neon-yellow);
}
.promo-code-inline {
  font-family: var(--pixel);
  font-size: 0.72rem;
  color: var(--neon-yellow);
  overflow-wrap: anywhere;
}

/* --- landing proof strip ------------------------------------------------ */
/* Most visitors arrive from a short video, on a phone, and give the page a
   couple of seconds. The evidence therefore has to sit on the first screen
   alongside the headline, which means this strip keeps three columns at every
   width -- stacking it into full-width boxes pushed the real finds below the
   fold, which is the whole problem it exists to solve. */
.statstrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 700px;
  margin: 0 auto 30px;
}
.statstrip .stat {
  background: var(--surface);
  border: 3px solid var(--border);
  box-shadow: 4px 4px 0 #000;
  padding: 14px 8px;
  text-align: center;
}
.statstrip .stat b {
  display: block;
  font-family: var(--pixel);
  font-size: 1.05rem;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57, 255, 136, 0.45);
  line-height: 1.3;
  margin-bottom: 9px;
}
.statstrip .stat span {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.25;
}
/* The hero paragraph is the main thing competing with the proof for the first
   screen, so it gets tighter here than the site-wide .lead. */
.hero .lead-tight {
  font-size: 1.2rem;
  max-width: 560px;
  margin-bottom: 26px;
}
.proof { margin: 46px 0 10px; }
.proof .filter-label { text-align: center; margin-bottom: 18px; }
.proof > .muted:last-child { text-align: center; margin-top: 22px; }

@media (max-width: 480px) {
  .statstrip { gap: 7px; }
  .statstrip .stat { padding: 11px 5px; }
  .statstrip .stat b { font-size: 0.78rem; margin-bottom: 7px; }
  .statstrip .stat span { font-size: 0.8rem; }
  .hero .lead-tight { font-size: 1.08rem; margin-bottom: 22px; }
}
