*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-0: #050a14;
  --bg-1: #0a1424;
  --bg-2: #11203a;
  --line: #1f2c45;
  --line-2: #2a3c5e;
  --text: #e7ecf3;
  --text-dim: #95a3b9;
  --text-mute: #5a6a85;
  --lime: #c6ff00;
  --lime-dim: #8fb800;
  --cyan: #00e5ff;
  --amber: #ffb648;
  --danger: #ff4d6d;
  --card: #0c1730;
  --card-2: #0f1d3a;
  --radius: 4px;
}

html { color-scheme: dark; }

body {
  background:
    radial-gradient(ellipse at top, rgba(0, 229, 255, 0.07), transparent 55%),
    radial-gradient(ellipse at bottom, rgba(198, 255, 0, 0.05), transparent 55%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
  opacity: 0.6;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5.5vw, 3.6rem); line-height: 1.05; margin-bottom: 18px; }
h2 { font-size: clamp(1.4rem, 3.2vw, 2rem); margin-bottom: 18px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

p { margin-bottom: 14px; color: var(--text-dim); }
a { color: var(--lime); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--cyan); }

.mono { font-family: 'Share Tech Mono', 'Menlo', monospace; letter-spacing: 0.04em; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: relative;
  background: rgba(8, 16, 28, 0.92);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 13px;
  z-index: 60;
}
.cookie-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cookie-inner span { color: var(--text-dim); }
.cookie-banner a { border-bottom: 1px dashed var(--lime); }
.cookie-banner button {
  background: var(--lime); color: var(--bg-0); border: none;
  padding: 8px 18px; font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  cursor: pointer; border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  transition: transform 0.12s, box-shadow 0.12s;
}
.cookie-banner button:hover { transform: translateY(-1px); box-shadow: 0 0 18px rgba(198, 255, 0, 0.45); }

/* ===== Top bar / live ticker ===== */
.topbar {
  background: var(--bg-0);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-family: 'Share Tech Mono', monospace;
  color: var(--text-mute);
  padding: 7px 0;
  letter-spacing: 0.08em;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.live-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255, 77, 109, 0.12);
  color: var(--danger);
  padding: 2px 10px; border-radius: 2px;
  text-transform: uppercase; font-weight: 700;
}
.live-dot {
  width: 7px; height: 7px; background: var(--danger);
  border-radius: 50%; animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.ticker { color: var(--text-dim); }
.ticker .sep { color: var(--line-2); margin: 0 8px; }

/* ===== Header ===== */
.navbar {
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 24px;
}
.site-logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.05rem; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.site-logo:hover { color: var(--text); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 6px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  box-shadow: 0 0 12px rgba(198, 255, 0, 0.2);
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-text small {
  display: block; font-size: 10px; color: var(--lime);
  letter-spacing: 0.18em; margin-top: -2px;
}
.nav-links { display: flex; gap: 22px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600; padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--lime); border-bottom-color: var(--lime); }

/* ===== Hero ===== */
.hero {
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('./img/hero_pitch.jpg') center/cover no-repeat;
  opacity: 0.13;
  filter: grayscale(0.4) contrast(1.1) hue-rotate(180deg);
  mix-blend-mode: lighten;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 20, 0.55), rgba(5, 10, 20, 0.92));
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--cyan); margin-bottom: 18px;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: var(--cyan); display: inline-block;
}
.hero h1 .hl { color: var(--lime); }
.hero .lede { font-size: 1.05rem; max-width: 540px; margin-bottom: 28px; color: var(--text-dim); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Scoreboard preview */
.scoreboard {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
}
.scoreboard::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    180deg, rgba(0, 229, 255, 0.04) 0, rgba(0, 229, 255, 0.04) 1px,
    transparent 1px, transparent 4px
  );
  pointer-events: none;
}
.sb-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px; background: var(--bg-0);
  border-bottom: 1px solid var(--line);
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--text-mute); text-transform: uppercase;
}
.sb-head .blink { color: var(--lime); animation: pulse 1.6s infinite; }
.sb-row {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  gap: 14px; position: relative;
}
.sb-row:last-child { border-bottom: 0; }
.sb-team { display: flex; align-items: center; gap: 12px; }
.sb-team.right { justify-content: flex-end; }
.sb-flag {
  width: 38px; height: 26px; border-radius: 3px;
  background: var(--bg-2); border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--text);
}
.sb-team-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em;
}
.sb-score {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.7rem; color: var(--lime);
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(198, 255, 0, 0.45);
  min-width: 64px; text-align: center;
}
.sb-foot {
  padding: 10px 16px; font-family: 'Share Tech Mono', monospace;
  font-size: 10px; color: var(--text-mute);
  letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(0, 0, 0, 0.25); border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--bg-0);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 14px 26px; border: none; cursor: pointer;
  border-radius: var(--radius);
  transition: transform 0.12s, box-shadow 0.12s;
  position: relative;
}
.btn:hover {
  color: var(--bg-0); transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(198, 255, 0, 0.4);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  color: var(--cyan); border-color: var(--cyan);
  box-shadow: 0 6px 22px rgba(0, 229, 255, 0.25);
}
.btn-block { display: flex; width: 100%; justify-content: center; padding: 16px; }

/* ===== Sections ===== */
section { padding: 70px 0; }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 20px; margin-bottom: 36px; padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.section-head .eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 8px;
}
.section-head h2 { margin: 0; }
.section-head .sub { color: var(--text-mute); font-size: 13px; max-width: 380px; text-align: right; }

/* ===== Match prediction cards ===== */
.match-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.match-card {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--line-2);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.match-card:hover {
  border-color: var(--lime); transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(198, 255, 0, 0.16);
}
.match-card::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    180deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px,
    transparent 1px, transparent 3px
  );
  pointer-events: none;
}
.match-img {
  height: 130px; background-size: cover; background-position: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.match-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 20, 0.35), rgba(5, 10, 20, 0.92));
}
.match-img .group-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--bg-0); color: var(--cyan);
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em;
  padding: 4px 10px; border: 1px solid var(--cyan);
  border-radius: 2px; text-transform: uppercase; z-index: 1;
}
.match-img .stage-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0, 0, 0, 0.55); color: var(--text-dim);
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: 0.16em;
  padding: 4px 10px; border-radius: 2px;
  text-transform: uppercase; z-index: 1;
}
.match-body { padding: 22px; position: relative; z-index: 1; }
.match-teams {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 14px; margin-bottom: 18px;
}
.match-team { text-align: center; }
.match-team .flag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 38px; margin: 0 auto 10px;
  background: var(--bg-0); border: 1px solid var(--line-2);
  border-radius: 4px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 15px; font-weight: 700; color: var(--text);
  letter-spacing: 0.08em;
}
.match-team .name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text);
}
.match-team .form {
  display: flex; justify-content: center; gap: 3px; margin-top: 6px;
}
.form-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-2);
}
.form-dot.w { background: var(--lime); }
.form-dot.d { background: var(--amber); }
.form-dot.l { background: var(--danger); }
.match-score {
  font-family: 'Share Tech Mono', monospace;
  font-size: 2.4rem; color: var(--lime);
  letter-spacing: 0.06em; text-align: center;
  text-shadow: 0 0 14px rgba(198, 255, 0, 0.55);
  line-height: 1;
}
.match-score .colon { color: var(--cyan); margin: 0 6px; opacity: 0.9; }
.match-score small {
  display: block; font-size: 9px; color: var(--text-mute);
  letter-spacing: 0.18em; margin-top: 8px;
}

/* Probability bar */
.prob {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 10px; margin-bottom: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.prob-bar {
  height: 6px; background: rgba(255, 255, 255, 0.04);
  border-radius: 1px; overflow: hidden; position: relative;
}
.prob-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  border-radius: 1px;
  transition: width 1.4s cubic-bezier(0.2, 0.7, 0.1, 1);
  box-shadow: 0 0 10px rgba(198, 255, 0, 0.35);
}
.prob-val { color: var(--lime); font-weight: 700; min-width: 36px; text-align: right; }
.prob.draw .prob-fill { background: linear-gradient(90deg, var(--amber), #ffd479); box-shadow: 0 0 10px rgba(255, 182, 72, 0.3); }
.prob.draw .prob-val { color: var(--amber); }
.prob.away .prob-fill { background: linear-gradient(90deg, var(--cyan), #80f3ff); box-shadow: 0 0 10px rgba(0, 229, 255, 0.3); }
.prob.away .prob-val { color: var(--cyan); }

.match-foot {
  margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line);
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.match-foot .player {
  color: var(--text); display: inline-flex; align-items: center; gap: 6px;
}
.match-foot .player svg { width: 12px; height: 12px; color: var(--lime); }
.match-analysis {
  margin-top: 14px; padding: 12px 14px;
  background: rgba(0, 229, 255, 0.04);
  border-left: 2px solid var(--cyan);
  font-size: 13px; color: var(--text-dim);
  line-height: 1.5;
}

/* ===== Method (How we pick) ===== */
.method-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.method-card {
  background: var(--card); border: 1px solid var(--line-2);
  border-radius: 6px; padding: 26px; position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.method-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.method-icon {
  width: 44px; height: 44px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--cyan);
}
.method-icon svg { width: 22px; height: 22px; }
.method-card h3 {
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.method-card p { font-size: 14px; margin: 0; }
.method-card .tag {
  position: absolute; top: 14px; right: 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; color: var(--text-mute);
  letter-spacing: 0.16em;
}

/* ===== About ===== */
.about-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center;
}
.about-text p { font-size: 1rem; }
.about-image {
  position: relative; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line-2);
}
.about-image img { width: 100%; height: auto; display: block; filter: brightness(0.75) contrast(1.05); }
.about-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 10, 20, 0.7));
  pointer-events: none;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 28px;
}
.stat {
  border: 1px solid var(--line-2); border-radius: 6px;
  padding: 18px; background: var(--card);
}
.stat .v {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.7rem; color: var(--lime);
  letter-spacing: 0.06em;
  text-shadow: 0 0 10px rgba(198, 255, 0, 0.35);
}
.stat .l {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 4px;
}

/* ===== Subscribe / Contact ===== */
.subscribe-wrap {
  background:
    linear-gradient(180deg, rgba(0, 229, 255, 0.04), rgba(198, 255, 0, 0.03)),
    var(--card);
  border: 1px solid var(--line-2);
  border-radius: 8px; padding: 0;
  overflow: hidden; position: relative;
}
.subscribe-wrap::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    180deg, rgba(255, 255, 255, 0.022) 0, rgba(255, 255, 255, 0.022) 1px,
    transparent 1px, transparent 4px
  );
  pointer-events: none;
}
.subscribe-head {
  padding: 20px 32px; border-bottom: 1px solid var(--line);
  background: var(--bg-0);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.subscribe-head .blink { color: var(--lime); animation: pulse 1.6s infinite; }
.subscribe-body { padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.subscribe-body h2 { margin-bottom: 12px; }
.subscribe-body .subtitle { color: var(--text-dim); margin-bottom: 22px; font-size: 14px; }
.subscribe-body ul {
  list-style: none; padding: 0; margin: 0;
}
.subscribe-body ul li {
  display: flex; gap: 10px; padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px; color: var(--text-dim);
}
.subscribe-body ul li:last-child { border-bottom: 0; }
.subscribe-body ul li svg { width: 16px; height: 16px; color: var(--lime); flex-shrink: 0; margin-top: 2px; }

.form-group { margin-bottom: 14px; }
label { display: block; font-size: 11px; color: var(--text-mute); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.14em; font-family: 'Share Tech Mono', monospace; }
input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%; padding: 12px 14px;
  background: var(--bg-0);
  border: 1px solid var(--line-2);
  color: var(--text); font-size: 14px;
  font-family: 'Inter', sans-serif;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input::placeholder { color: var(--text-mute); }
input:focus { border-color: var(--lime); box-shadow: 0 0 0 2px rgba(198, 255, 0, 0.15); }
.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 18px 0; font-size: 12px;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px; width: 16px; height: 16px;
  accent-color: var(--lime); cursor: pointer; flex-shrink: 0;
}
.form-consent label {
  margin: 0; text-transform: none; letter-spacing: 0; font-family: inherit;
  color: var(--text-dim); font-size: 12px; cursor: pointer;
}
.form-consent a { color: var(--lime); }
.success-message {
  display: none; margin-top: 16px; padding: 14px;
  background: rgba(198, 255, 0, 0.08); color: var(--lime);
  border: 1px solid rgba(198, 255, 0, 0.3);
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; text-align: center;
  border-radius: var(--radius);
}
.success-message.show { display: block; }

/* ===== Footer ===== */
.footer {
  padding: 36px 0 50px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
  font-size: 13px; color: var(--text-mute);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 24px; align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .logo-mark { width: 30px; height: 30px; }
.footer-links { display: flex; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.footer-links a {
  color: var(--text-mute); font-family: 'Share Tech Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.footer-links a:hover { color: var(--lime); }
.copyright {
  margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line);
  text-align: center; font-family: 'Share Tech Mono', monospace;
  font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ===== Legal pages ===== */
.legal-content {
  max-width: 780px; padding-top: 20px;
}
.legal-content h1 {
  margin-bottom: 8px; font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.legal-content .legal-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px; color: var(--cyan);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 14px;
}
.legal-content .legal-meta {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.1em; margin-bottom: 32px; padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.legal-content h2 {
  margin-top: 36px; font-size: 1.2rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--lime);
}
.legal-content h2::before {
  content: '> '; color: var(--cyan); font-family: 'Share Tech Mono', monospace;
}
.legal-content ul, .legal-content ol {
  margin: 12px 0 14px 22px; color: var(--text-dim);
}
.legal-content li { margin-bottom: 8px; }
.legal-content p { font-size: 15px; }
.legal-content a { border-bottom: 1px dashed var(--lime); }

/* tips list */
.tips-list { list-style: none; padding: 0; margin: 24px 0 0; counter-reset: tip; }
.tips-list li {
  counter-increment: tip;
  background: var(--card); border: 1px solid var(--line-2);
  border-radius: 6px; padding: 22px 24px 22px 70px;
  margin-bottom: 14px; position: relative;
}
.tips-list li::before {
  content: counter(tip, decimal-leading-zero);
  position: absolute; left: 22px; top: 22px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.3rem; color: var(--lime);
  text-shadow: 0 0 10px rgba(198, 255, 0, 0.4);
}
.tips-list li strong {
  display: block; font-family: 'Space Grotesk', sans-serif;
  color: var(--text); margin-bottom: 6px; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.tips-list li span { color: var(--text-dim); font-size: 14px; line-height: 1.6; }

/* ===== Mobile ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .match-grid { grid-template-columns: 1fr; }
  .subscribe-body { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 720px) {
  section { padding: 50px 0; }
  .nav-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .nav-links { gap: 14px; flex-wrap: wrap; }
  .nav-links a { font-size: 11px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head .sub { text-align: left; }
  .method-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .subscribe-body { padding: 24px; }
  .subscribe-head { padding: 16px 22px; }
  .topbar .ticker { display: none; }
}

@media (max-width: 460px) {
  h1 { font-size: 1.75rem; }
  .match-teams { gap: 8px; }
  .match-team .flag { width: 48px; height: 32px; font-size: 13px; }
  .match-score { font-size: 1.9rem; }
  .match-body { padding: 18px; }
}
