/* ==========================================================================
   PredictAI — shared styles
   Dark stadium theme · purple accents · bold condensed headings
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg:            #07060d;
  --bg-2:          #0d0b18;
  --surface:       #14111f;
  --surface-2:     #1b1730;
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --purple:        #8b5cf6;
  --purple-2:      #7c3aed;
  --purple-3:      #a78bfa;
  --purple-glow:   rgba(139, 92, 246, 0.45);

  --text:          #f4f2fb;
  --text-dim:      #b7b2cc;
  --text-faint:    #7d7896;

  --green:         #34d399;

  --radius:        18px;
  --radius-lg:     26px;
  --maxw:          1160px;

  --grad-purple:   linear-gradient(135deg, #7c3aed 0%, #a855f7 55%, #6d28d9 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 0.98;
  text-transform: uppercase;
  margin: 0;
}

.accent { color: var(--purple-3); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
  padding: 16px 30px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--grad-purple);
  color: #fff;
  box-shadow: 0 12px 34px -8px var(--purple-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -8px var(--purple-glow);
}
.btn-primary .arrow { transition: transform 0.2s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--purple); color: #fff; }

/* ---------- Top navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 6, 13, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.brand .dot {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--grad-purple);
  box-shadow: 0 6px 18px -4px var(--purple-glow);
  font-size: 18px;
}
.brand .ai { color: var(--purple-3); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: #fff; }

.nav-cta { padding: 11px 22px; font-size: 15px; border-radius: 11px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  width: 44px; height: 44px;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}

/* ---------- Language switcher ---------- */
.lang-switch { position: relative; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.lang-toggle:hover { color: #fff; border-color: var(--purple); }
.lang-toggle .caret { font-size: 10px; opacity: 0.7; }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.8);
  z-index: 60;
}
.lang-switch.open .lang-menu { display: flex; }
.lang-menu button {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--text-dim);
  background: none; border: none;
  padding: 11px 12px; border-radius: 9px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-menu button:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.lang-menu button.active { color: var(--purple-3); background: rgba(139, 92, 246, 0.1); }
.lang-menu .flag { font-size: 17px; }

/* ---------- Language picker modal (first visit) ---------- */
.lang-modal {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(4, 3, 9, 0.82);
  backdrop-filter: blur(8px);
}
.lang-modal.show { display: flex; animation: langFade 0.25s ease; }
@keyframes langFade { from { opacity: 0; } to { opacity: 1; } }
.lang-modal-card {
  width: 100%; max-width: 420px;
  text-align: center;
  border-radius: 26px;
  padding: 40px 32px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background:
    radial-gradient(500px 260px at 50% -10%, rgba(124, 58, 237, 0.4), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg-2));
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.85);
  animation: langPop 0.3s cubic-bezier(0.2, 0.8, 0.3, 1.1);
}
@keyframes langPop { from { transform: translateY(14px) scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }
.lang-modal-badge {
  width: 60px; height: 60px; margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 28px;
  border-radius: 16px;
  background: var(--grad-purple);
  box-shadow: 0 10px 26px -8px var(--purple-glow);
}
.lang-modal-card h2 { font-size: 30px; margin-bottom: 8px; }
.lang-modal-card p { color: var(--text-dim); font-size: 16px; margin: 0 0 26px; }
.lang-modal-options { display: grid; gap: 12px; }
.lang-modal-options button {
  display: flex; align-items: center; gap: 14px;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.lang-modal-options button:hover {
  transform: translateY(-2px);
  border-color: var(--purple);
  background: rgba(139, 92, 246, 0.12);
}
.lang-modal-options .flag { font-size: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  background:
    radial-gradient(1100px 520px at 78% 8%, rgba(124, 58, 237, 0.28), transparent 60%),
    radial-gradient(900px 500px at 12% 90%, rgba(52, 211, 153, 0.10), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 40%, transparent 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-3);
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: rgba(139, 92, 246, 0.08);
  margin-bottom: 26px;
}
.eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero h1 {
  font-size: clamp(44px, 6.4vw, 82px);
  margin-bottom: 22px;
}
.hero h1 .line-2 { color: var(--purple-3); }

.hero-sub {
  font-size: 20px;
  color: var(--text-dim);
  max-width: 460px;
  margin: 0 0 34px;
}
.hero-sub b { color: var(--purple-3); font-weight: 700; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.hero-stats .stat .num {
  font-family: 'Anton', sans-serif;
  font-size: 34px;
  line-height: 1;
  color: #fff;
}
.hero-stats .stat .num span { color: var(--purple-3); }
.hero-stats .stat .lbl {
  font-size: 13px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ---------- Phone mockup ---------- */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-glow {
  position: absolute;
  inset: -10% -6% -10% -6%;
  background: radial-gradient(closest-side, rgba(124,58,237,0.5), transparent 70%);
  filter: blur(28px);
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: 310px;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(160deg, #2a2440, #100d1c);
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.06);
}
.phone-screen {
  border-radius: 34px;
  background: linear-gradient(180deg, #0b0913, #0f0c1b);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.phone-notch {
  position: absolute;
  top: 20px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px;
  background: #060510;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.scr-status {
  display: flex; justify-content: space-between;
  padding: 14px 22px 8px;
  font-size: 12px; color: var(--text-dim); font-weight: 600;
}
.scr-body { padding: 6px 16px 20px; }

.match-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
}
.match-top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--text-faint); margin-bottom: 12px;
}
.match-teams {
  display: flex; align-items: center; justify-content: space-between;
}
.team { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 74px; }
.team .flag {
  width: 34px; height: 24px; border-radius: 5px;
  background: linear-gradient(180deg,#74acdf 0 33%,#fff 33% 66%,#74acdf 66%);
}
.team .flag.hn { background: linear-gradient(180deg,#0073cf 0 33%,#fff 33% 66%,#0073cf 66%); }
.team .name { font-size: 11px; color: var(--text-dim); }
.match-score { font-family: 'Anton', sans-serif; font-size: 30px; }
.match-ht { font-size: 10px; color: var(--text-faint); text-align: center; margin-top: 4px; }

.tabs {
  display: flex; gap: 14px; font-size: 11px; color: var(--text-faint);
  padding: 4px 2px 12px; overflow-x: auto;
}
.tabs .on { color: var(--purple-3); border-bottom: 2px solid var(--purple); padding-bottom: 4px; }

.pred-card {
  background: linear-gradient(150deg, rgba(124,58,237,0.16), rgba(124,58,237,0.02));
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 12px;
}
.pred-label { font-size: 10px; letter-spacing: 1.5px; color: var(--purple-3); text-transform: uppercase; margin-bottom: 12px; }
.pred-row { display: flex; align-items: center; gap: 12px; }
.pred-trophy {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad-purple); font-size: 20px;
}
.pred-team { font-family: 'Anton', sans-serif; font-size: 20px; }
.pred-correct { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--green); }

.conf-block { margin-top: 6px; }
.conf-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.conf-top .l { font-size: 10px; letter-spacing: 1.5px; color: var(--text-faint); text-transform: uppercase; }
.conf-top .v { font-family: 'Anton', sans-serif; font-size: 22px; color: #fff; }
.conf-bar { height: 8px; border-radius: 6px; background: rgba(255,255,255,0.08); overflow: hidden; }
.conf-fill { height: 100%; width: 82%; border-radius: 6px; background: var(--grad-purple); }
.conf-tag { font-size: 10px; color: var(--green); margin-top: 5px; text-align: right; }

/* ==========================================================================
   WORLD CUP MATCH BANNER — gold + navy aesthetic
   ========================================================================== */
:root {
  --gold:     #f5c542;
  --gold-2:   #e0a827;
  --gold-3:   #fff0b8;
  --navy:     #0a1633;
  --navy-2:   #142a5c;
  --wc-red:   #c1121f;
}

.wc { padding: 70px 0 30px; }
.wc-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 46px 32px 40px;
  text-align: center;
  border: 1px solid rgba(245, 197, 66, 0.35);
  background:
    radial-gradient(700px 320px at 50% -10%, rgba(20, 42, 92, 0.9), transparent 60%),
    linear-gradient(180deg, #0c1b3d 0%, #081027 100%);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.wc-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 66, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 66, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(60% 60% at 50% 30%, #000 30%, transparent 100%);
  pointer-events: none;
}
.wc-card > * { position: relative; z-index: 1; }

.wc-head {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 22px;
}
.wc-trophy {
  font-size: 46px;
  filter: drop-shadow(0 6px 16px rgba(245, 197, 66, 0.55));
}
.wc-title { display: flex; flex-direction: column; align-items: flex-start; line-height: 0.9; }
.wc-title-1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4.4vw, 46px);
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.wc-title-2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 5.6vw, 60px);
  letter-spacing: 1px;
  background: linear-gradient(180deg, #fff3c4 0%, var(--gold) 45%, var(--gold-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.wc-meta {
  display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-bottom: 26px;
}
.wc-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid rgba(245, 197, 66, 0.4);
  background: rgba(10, 22, 51, 0.6);
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
  font-size: 20px;
  color: #fff;
}
.wc-chip em { color: var(--gold-3); font-style: normal; font-size: 15px; }
.wc-ico { font-size: 18px; }

/* Countdown */
.wc-countdown {
  display: inline-flex; align-items: flex-start; gap: 10px;
  margin-bottom: 32px;
}
.wc-unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 62px;
  padding: 12px 8px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(245, 197, 66, 0.14), rgba(245, 197, 66, 0.02));
  border: 1px solid rgba(245, 197, 66, 0.3);
}
.wc-num { font-family: 'Anton', sans-serif; font-size: 30px; color: var(--gold); line-height: 1; }
.wc-lbl {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-faint); margin-top: 6px;
}
.wc-sep { font-family: 'Anton', sans-serif; font-size: 26px; color: rgba(245,197,66,0.5); padding-top: 8px; }

/* VS row */
.wc-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 620px;
  margin: 0 auto 30px;
}
.wc-team {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid rgba(245, 197, 66, 0.4);
  background: linear-gradient(180deg, rgba(193, 18, 31, 0.28), rgba(10, 22, 51, 0.5));
}
.wc-vs > .wc-team:last-of-type { flex-direction: row-reverse; }
.wc-flag {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  background-size: cover; background-position: center;
}
.wc-flag.pt {
  background: linear-gradient(90deg, #006600 0 40%, #d50032 40% 100%);
}
.wc-flag.es {
  background: linear-gradient(180deg, #c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75%);
}
.wc-team-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: 1px; color: #fff;
}
.wc-vs-badge {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #1a1200;
  background: linear-gradient(180deg, var(--gold-3), var(--gold), var(--gold-2));
  box-shadow: 0 8px 22px -6px rgba(245, 197, 66, 0.7);
}

.wc-pred {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 10px 14px;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}
.wc-pred-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #1a1200; background: var(--gold); padding: 4px 10px; border-radius: 6px; font-weight: 800;
}
.wc-pred-value { color: var(--text-dim); font-size: 16px; }
.wc-pred-value b { color: var(--gold); }
.wc-pred-cta { color: var(--gold-3); font-weight: 700; font-size: 15px; }
.wc-pred-cta:hover { color: #fff; }

/* Emoji flag badge for dynamically rendered teams */
.wc-flag-e {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 30px; line-height: 1;
  border: 2px solid var(--gold);
  background: rgba(10, 22, 51, 0.7);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}
/* "Next up" label above the countdown */
.wc-next {
  font-family: 'Anton', sans-serif; letter-spacing: 2px; text-transform: uppercase;
  font-size: 13px; color: var(--gold-3); margin-bottom: 14px;
}
/* Live / Full-time states in the banner */
.wc-livewrap { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 30px; }
.wc-live, .fx-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Anton', sans-serif; letter-spacing: 1.5px; text-transform: uppercase;
  font-size: 15px; color: #ff5a5a;
}
.wc-live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #ff3b3b;
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6); animation: pulse 1.5s infinite;
}
.wc-ft {
  font-family: 'Anton', sans-serif; letter-spacing: 1.5px; text-transform: uppercase;
  font-size: 15px; color: var(--text-faint);
}
.wc-score {
  font-family: 'Anton', sans-serif; font-size: 30px; color: #fff;
  padding: 2px 16px; border-radius: 10px; border: 1px solid rgba(245,197,66,0.4);
}
.wc-hit.ok { color: var(--green); } .wc-hit.no { color: #ff6b6b; }

/* Fixture-row extras */
.fx-live { font-size: 12px; }
.fx-score {
  font-family: 'Anton', sans-serif; font-size: 18px; color: #fff;
  padding: 2px 12px; border-radius: 8px; background: rgba(255,255,255,0.06);
}
.fx-hit.ok { color: var(--green); } .fx-hit.no { color: #ff6b6b; }
.fixture.is-finished { opacity: 0.62; }
.fixture.is-finished:hover { opacity: 0.85; }
.fixture.is-live { border-color: rgba(255, 59, 59, 0.5); }

/* ==========================================================================
   ROAD TO THE FINAL — fixtures list (gold + navy)
   ========================================================================== */
.fixtures { padding: 46px 0 90px; }
.fixtures .section-head { margin-bottom: 40px; }
.fixtures .section-head .kicker { color: var(--gold); }
.fixtures-list { display: grid; gap: 14px; max-width: 940px; margin: 0 auto; }

.fixture {
  display: grid;
  grid-template-columns: 190px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px 26px;
  border-radius: 16px;
  border: 1px solid rgba(245, 197, 66, 0.18);
  background: linear-gradient(180deg, rgba(20, 42, 92, 0.35), rgba(8, 16, 39, 0.5));
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.fixture:hover { border-color: rgba(245, 197, 66, 0.45); transform: translateY(-2px); }

.fx-stage { display: flex; flex-direction: column; gap: 7px; }
.fx-badge {
  align-self: flex-start;
  font-family: 'Anton', sans-serif;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold);
  padding: 4px 11px; border-radius: 6px;
  background: rgba(245, 197, 66, 0.12);
  border: 1px solid rgba(245, 197, 66, 0.3);
}
.fx-date { font-size: 12.5px; color: var(--text-faint); }

.fx-teams {
  display: flex; align-items: center; gap: 16px;
  font-family: 'Anton', sans-serif; font-size: 19px; letter-spacing: 0.5px; color: #fff;
}
.fx-team { display: flex; align-items: center; gap: 9px; }
.fx-flag { font-size: 22px; line-height: 1; }
.fx-vs { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; color: var(--gold-3); }

.fx-pick { display: flex; flex-direction: column; gap: 3px; text-align: right; min-width: 108px; }
.fx-pick-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-faint); }
.fx-pick-val { font-size: 15px; color: var(--text-dim); }
.fx-pick-val b { color: var(--gold); font-size: 16px; }

.fx-cta { color: var(--gold-3); font-weight: 700; font-size: 14px; white-space: nowrap; }
.fx-cta:hover { color: #fff; }

.fixture-final {
  border-color: rgba(245, 197, 66, 0.55);
  background: linear-gradient(180deg, rgba(245, 197, 66, 0.14), rgba(8, 16, 39, 0.55));
  box-shadow: 0 20px 50px -30px rgba(245, 197, 66, 0.5);
}
.fixture-final .fx-badge { background: var(--gold); color: #1a1200; border-color: var(--gold); }

@media (max-width: 720px) {
  .fixture {
    grid-template-columns: 1fr auto;
    gap: 14px 16px;
  }
  .fx-stage { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 12px; }
  .fx-teams { grid-column: 1; font-size: 17px; gap: 12px; }
  .fx-pick { grid-column: 2; text-align: right; }
  .fx-cta { grid-column: 1 / -1; }
}

/* ==========================================================================
   TRUST / FEATURE STRIP
   ========================================================================== */
.strip {
  border-top: 1px solid rgba(245, 197, 66, 0.2);
  border-bottom: 1px solid rgba(245, 197, 66, 0.2);
  background:
    radial-gradient(600px 200px at 50% 50%, rgba(20, 42, 92, 0.5), transparent 70%),
    linear-gradient(180deg, #071024 0%, #05132a 100%);
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.strip-item {
  display: flex; align-items: center; gap: 14px;
  padding: 26px 22px;
  position: relative;
}
.strip-item + .strip-item::before {
  content: "";
  position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(245, 197, 66, 0.4), transparent);
}
.strip-ico {
  flex: none;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  font-size: 22px;
  color: var(--gold);
  border: 1.5px solid rgba(245, 197, 66, 0.55);
  background: rgba(245, 197, 66, 0.08);
}
.strip-ico svg { width: 26px; height: 26px; display: block; }
.strip-txt { display: flex; flex-direction: column; line-height: 1.25; }
.strip-txt b {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
}
.strip-txt span {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--gold-3);
}

/* ---------- Section shell ---------- */
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 58px; }
.section-head .kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--purple-3); margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(34px, 4.6vw, 54px); }
.section-head p { color: var(--text-dim); font-size: 18px; margin-top: 16px; }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.feature .ico {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; font-size: 26px;
  background: rgba(139,92,246,0.14);
  border: 1px solid rgba(139,92,246,0.3);
  margin-bottom: 22px;
}
.feature h3 { font-size: 24px; margin-bottom: 12px; }
.feature p { color: var(--text-dim); font-size: 16px; margin: 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
}
.step .no {
  font-family: 'Anton', sans-serif;
  font-size: 54px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--purple);
  margin-bottom: 16px;
}
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: 16px; margin: 0; }

/* ---------- Stat band ---------- */
.band {
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(124,58,237,0.25), transparent 65%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.band-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 66px 0;
}
.band .stat { text-align: center; }
.band .stat .num {
  font-family: 'Anton', sans-serif; font-size: clamp(40px, 5vw, 62px); line-height: 1;
  background: linear-gradient(180deg, #fff, var(--purple-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.band .stat .lbl { color: var(--text-dim); font-size: 14px; text-transform: uppercase; letter-spacing: 1.2px; margin-top: 10px; }

/* ---------- CTA ---------- */
.cta-wrap { padding: 100px 0; }
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 32px;
  padding: 72px 32px;
  background:
    radial-gradient(600px 340px at 50% -10%, rgba(168,85,247,0.5), transparent 60%),
    var(--grad-purple);
  box-shadow: 0 40px 90px -30px var(--purple-glow);
}
.cta h2 { font-size: clamp(36px, 5vw, 64px); color: #fff; margin-bottom: 18px; }
.cta p { color: rgba(255,255,255,0.86); font-size: 19px; max-width: 520px; margin: 0 auto 32px; }
.cta .btn-primary { background: #0b0913; box-shadow: 0 14px 34px -10px rgba(0,0,0,0.6); }
.cta .btn-primary:hover { background: #14111f; }

/* ---------- Learn more ---------- */
.learn { padding: 100px 0; }
.learn-card {
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  border-radius: 32px;
  padding: 64px 48px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background:
    radial-gradient(620px 340px at 50% -10%, rgba(124, 58, 237, 0.4), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg-2));
  box-shadow: 0 40px 90px -40px var(--purple-glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.learn-card .kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--purple-3); margin-bottom: 16px;
}
.learn-card h2 { font-size: clamp(32px, 4.6vw, 52px); margin-bottom: 20px; }
.learn-lead {
  color: var(--text-dim); font-size: 18px; max-width: 620px; margin: 0 auto 30px;
}
.learn-lead b { color: #fff; }
.learn-list {
  list-style: none; margin: 0 auto 34px; padding: 0;
  display: inline-grid; gap: 12px; text-align: left;
}
.learn-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-dim); font-size: 16.5px;
}
.learn-list .tick {
  flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; color: #fff;
  background: var(--grad-purple);
  box-shadow: 0 4px 12px -3px var(--purple-glow);
}
.learn-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 22px;
}
.learn-email { color: var(--text-faint); font-size: 15px; margin: 0; }
.learn-email a { color: var(--purple-3); font-weight: 600; }
.learn-email a:hover { color: #fff; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer .brand { margin-bottom: 16px; }
.footer .about { color: var(--text-faint); font-size: 15px; max-width: 300px; }
.footer h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text); margin: 0 0 18px; font-weight: 700;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer ul a { color: var(--text-faint); font-size: 15px; transition: color 0.15s ease; }
.footer ul a:hover { color: var(--purple-3); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text-faint); font-size: 14px;
}
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.footer-bottom .socials a:hover { border-color: var(--purple); color: var(--purple-3); }

.disclaimer {
  text-align: center;
  color: var(--text-faint);
  font-size: 12.5px;
  max-width: 760px;
  margin: 22px auto 0;
  line-height: 1.6;
}

/* ---------- Legal pages ---------- */
.legal {
  padding: 70px 0 90px;
  background:
    radial-gradient(800px 400px at 80% -5%, rgba(124,58,237,0.18), transparent 60%),
    var(--bg);
}
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 14px; }
.legal .updated { color: var(--text-faint); font-size: 14px; margin-bottom: 44px; }
.legal h2 {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0;
  margin: 44px 0 14px;
  color: #fff;
}
.legal h3 {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0;
  margin: 28px 0 10px;
}
.legal p, .legal li { color: var(--text-dim); font-size: 16.5px; }
.legal ul { padding-left: 22px; display: grid; gap: 8px; }
.legal a.inline { color: var(--purple-3); text-decoration: underline; }
.legal .toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.legal .toc h4 { margin: 0 0 14px; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-faint); }
.legal .toc ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; }
.legal .toc a { color: var(--text-dim); }
.legal .toc a:hover { color: var(--purple-3); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .phone-wrap { order: -1; }
  .features, .steps { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(odd)::before { display: none; }
  .strip-item:nth-child(2n)::before { top: 20%; bottom: 20%; }
  .strip-item { padding: 20px 16px; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 22px 24px; gap: 20px;
  }
  /* Language switcher inside the mobile menu: inline, full-width */
  .nav-links.open .lang-switch { width: 100%; }
  .nav-links.open .lang-toggle { width: 100%; justify-content: center; }
  .nav-links.open .lang-menu {
    position: static; margin-top: 10px; width: 100%; min-width: 0;
  }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 56px 0 60px; }
  .wc-card { padding: 34px 18px 30px; }
  .wc-unit { min-width: 52px; padding: 10px 6px; }
  .wc-num { font-size: 24px; }
  .wc-vs { grid-template-columns: 1fr; gap: 12px; }
  .wc-vs-badge { justify-self: center; }
  .wc-team, .wc-vs > .wc-team:last-of-type { flex-direction: row; justify-content: center; }
  .strip-inner { grid-template-columns: 1fr; }
  .strip-item::before { display: none !important; }
  .strip-item + .strip-item { border-top: 1px solid rgba(245,197,66,0.15); }
  .hero-stats { gap: 22px; }
  .band-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta { padding: 52px 22px; }
  .learn-card { padding: 44px 22px; }
  .learn-actions .btn { width: 100%; justify-content: center; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
