:root {
  --paper: #f6f3ec;
  --panel: #ffffff;
  --ink: #16211b;
  --dim: #66756c;
  --line: #e4ddcd;
  --accent: #ff5a1f;
  --accent-ink: #2a0f04;
  --pitch: #1f6f4a;
  --live: #d64545;
  --radius: 14px;
  --display: "Big Shoulders Display", "Noto Sans Devanagari", "Arial Narrow", sans-serif;
  --body: "Karla", "Noto Sans Devanagari", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  font-size: 16px;
}

a { color: var(--pitch); }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- ticker ---------- */
.ticker {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid #000;
}
.ticker-track {
  display: inline-block;
  padding: 9px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  animation: scroll 32s linear infinite;
}
.ticker-track span { margin: 0 28px; }
.ticker-track .live { color: var(--accent); }
.ticker-track .dot { color: var(--dim); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- header ---------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}
.logo .bit { color: var(--accent); }
.header-right { display: flex; align-items: center; gap: 22px; }
nav { display: flex; gap: 28px; }
nav a {
  color: var(--dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
nav a:hover { color: var(--ink); }

.lang-switch {
  display: flex;
  gap: 2px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch button {
  border: none;
  background: transparent;
  color: var(--dim);
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
}
.lang-switch button.on { background: var(--ink); color: var(--paper); }
.lang-switch button:hover:not(.on) { color: var(--ink); }

@media (max-width: 640px) {
  header nav { display: none; }
}

/* ---------- hero ---------- */
.hero {
  padding: 40px 24px 64px;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; padding-top: 8px; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: #ffe4d3;
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 18px;
}
.eyebrow .bell { font-size: 15px; }

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 5.6vw, 62px);
  line-height: 0.98;
  margin: 0 0 18px;
  text-wrap: balance;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--pitch);
}

.hero p.lead {
  color: var(--dim);
  font-size: 18px;
  max-width: 46ch;
  margin: 0 0 30px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  text-decoration: none;
}
.btn:hover { background: #0d1410; text-decoration: none; }
.btn.accent { background: var(--accent); color: var(--accent-ink); }
.btn.accent:hover { background: #ff6f3a; }
.btn.block { width: 100%; justify-content: center; padding: 15px; font-size: 16px; }

.trust-row {
  color: var(--dim);
  font-size: 13px;
  margin-top: 14px;
}

/* phone mock */
.phone {
  justify-self: center;
  width: 260px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 24px 48px -24px rgba(22,33,27,0.25);
}
.phone .screen-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--dim);
  padding: 2px 4px 12px;
  font-variant-numeric: tabular-nums;
}
.push {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  margin-bottom: 8px;
  font-size: 12.5px;
}
.push .who {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 3px;
}
.push .who .sq {
  width: 14px; height: 14px; border-radius: 4px; background: var(--accent); flex-shrink: 0;
}
.push .body { color: var(--dim); }
.push.now { border-color: var(--accent); background: #fff6f0; }

/* ---------- sports strip ---------- */
.sports-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  padding: 18px 24px;
}
.sports-strip .wrap {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--dim);
  letter-spacing: 0.01em;
}
.sports-strip .wrap::-webkit-scrollbar { display: none; }
.sports-strip button {
  background: none; border: none; cursor: pointer;
  font: inherit; color: inherit; padding: 4px 0; white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.sports-strip button.on { color: var(--ink); border-color: var(--accent); }

/* ---------- events ---------- */
.events { padding: 56px 24px; }
.events .head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 8px;
}
.events h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  margin: 0;
}
.events .sub { color: var(--dim); font-size: 14px; }

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.event-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.event-card .row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.event-card .league {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}
.event-card .when {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--pitch);
  display: flex;
  align-items: center;
  gap: 6px;
}
.event-card .when.live { color: var(--live); }
.event-card .when .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--live);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
@media (prefers-reduced-motion: reduce) { .pulse { animation: none; } }

.event-card .teams {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 14px;
}
.event-card .notify {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  padding: 10px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--body);
}
.event-card .notify:hover { background: var(--ink); color: var(--paper); }
.event-card .notify.on { background: var(--pitch); border-color: var(--pitch); color: #fff; }

/* ---------- how ---------- */
.how { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 56px 24px; }
.how h2 { font-family: var(--display); font-weight: 800; font-size: 28px; text-align: center; margin: 0 0 36px; }
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.how-step .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 6px;
}
.how-step h3 { font-size: 17px; margin: 0 0 6px; }
.how-step p { color: var(--dim); font-size: 14.5px; margin: 0; }

/* ---------- signup ---------- */
.signup { padding: 64px 24px; }
.signup .inner {
  max-width: 460px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
}
.signup h2 { font-family: var(--display); font-weight: 800; font-size: 27px; text-align: center; margin: 0 0 8px; }
.signup p.sub { text-align: center; color: var(--dim); margin: 0 0 26px; font-size: 14.5px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.field input[type="text"], .field input[type="email"], .field input[type="password"] {
  width: 100%;
  padding: 13px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-size: 15px;
  font-family: var(--body);
}
.field input:focus-visible { outline: 2px solid var(--accent); border-color: var(--accent); }

fieldset.sports-pick {
  border: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
fieldset.sports-pick legend { font-size: 12.5px; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; padding: 0; }
.chip {
  display: inline-flex;
  align-items: center;
}
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dim);
  cursor: pointer;
}
.chip input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.consent-row { display: flex; gap: 10px; margin: 16px 0; }
.consent-row input { margin-top: 3px; flex-shrink: 0; }
.consent-row label { font-size: 12.5px; color: var(--dim); line-height: 1.5; }
.consent-row a { color: var(--pitch); }

.form-msg { margin-top: 14px; font-size: 13.5px; text-align: center; min-height: 18px; }
.form-msg.ok { color: var(--pitch); font-weight: 600; }
.form-msg.err { color: var(--live); font-weight: 600; }

/* ---------- footer ---------- */
footer { padding: 36px 24px 56px; border-top: 1px solid var(--line); }
footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
footer .about-row { display: flex; gap: 12px; max-width: 480px; }
footer .about { color: var(--dim); font-size: 13px; line-height: 1.6; }
footer .about strong { color: var(--ink); font-family: var(--display); font-size: 15px; letter-spacing: 0.01em; }
footer .age-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
}
footer .links { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; }
footer .links a { color: var(--dim); text-decoration: none; font-weight: 600; }
footer .links a:hover { color: var(--ink); }

/* ---------- legal ---------- */
.legal-page { max-width: 720px; margin: 0 auto; padding: 56px 24px 90px; }
.legal-page h1 { font-family: var(--display); font-weight: 800; font-size: 34px; }
.legal-page h2 { font-family: var(--display); font-weight: 700; font-size: 19px; margin-top: 32px; }
.legal-page p, .legal-page li { color: var(--dim); font-size: 15px; }
.legal-page .updated { color: var(--dim); font-size: 13px; margin-bottom: 30px; }
