/* MatchGrid landing — Eightsy-inspired billiard club aesthetic */
:root {
  --felt: #0a5c3a;
  --felt-deep: #063d27;
  --felt-dark: #042818;
  --ink: #0c0a08;
  --panel: #16110c;
  --panel2: #211a13;
  --line: #3d3223;
  --text: #f2ece1;
  --muted: #b8a989;
  --gold: #c9a227;
  --gold-soft: #e0c35a;
  --gold-dim: #8a7018;
  --cream: #f7f1e4;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .45);
  --max: 1160px;
  --font: "Barlow", system-ui, sans-serif;
  --display: "Barlow Condensed", "Barlow", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .25s, box-shadow .25s, backdrop-filter .25s;
}
.site-header.scrolled {
  background: rgba(12, 10, 8, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201, 162, 39, .15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 4px 14px rgba(201, 162, 39, .4));
}
.logo-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-text span { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--cream); }
.nav-cta {
  color: var(--ink) !important;
  background: var(--gold);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--gold-soft) !important; transform: translateY(-1px); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  flex-shrink: 0;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 7px;
  border-radius: 8px;
  transition: background .2s, transform .1s;
}
.lang-btn svg {
  display: block;
  width: 24px;
  height: 16px;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28), 0 1px 3px rgba(0,0,0,.5);
}
.lang-btn:hover { transform: scale(1.1); }
.lang-btn.active { background: rgba(201, 162, 39, .35); box-shadow: 0 0 0 1px var(--gold); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  place-items: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  transition: .2s;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform .2s, background .2s, box-shadow .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a1405;
  box-shadow: 0 10px 30px rgba(201, 162, 39, .28);
}
.btn-gold:hover { box-shadow: 0 14px 36px rgba(201, 162, 39, .4); }
.btn-ghost {
  border: 1px solid rgba(242, 236, 225, .25);
  color: var(--cream);
  background: rgba(255,255,255,.03);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.mt-btn { margin-top: 28px; }

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(10, 92, 58, .55), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 162, 39, .12), transparent 50%),
    linear-gradient(165deg, #041a10 0%, var(--ink) 45%, #120e0a 100%);
}
.hero-glow {
  position: absolute;
  width: 520px; height: 520px;
  right: 8%; top: 15%;
  background: radial-gradient(circle, rgba(10, 92, 58, .5), transparent 70%);
  filter: blur(20px);
  animation: pulse-glow 8s ease-in-out infinite;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
.hero-ball {
  position: absolute;
  border-radius: 50%;
  box-shadow: inset -6px -8px 16px rgba(0,0,0,.45), 0 8px 20px rgba(0,0,0,.35);
}
.hero-ball.b1 {
  width: 56px; height: 56px;
  background: radial-gradient(circle at 35% 30%, #e8c84a, #a07a12 60%, #5c4508);
  right: 18%; top: 28%;
  animation: float 7s ease-in-out infinite;
}
.hero-ball.b2 {
  width: 34px; height: 34px;
  background: radial-gradient(circle at 35% 30%, #3ecf7a, #0a5c3a 65%, #042818);
  right: 28%; bottom: 22%;
  animation: float 9s ease-in-out infinite reverse;
}
.hero-ball.b3 {
  width: 22px; height: 22px;
  background: radial-gradient(circle at 35% 30%, #fff, #ccc 50%, #666);
  right: 12%; bottom: 38%;
  animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 162, 39, .6);
  animation: ping 2s ease infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(201, 162, 39, .55); }
  70% { box-shadow: 0 0 0 12px rgba(201, 162, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); }
}

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 34em;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 162, 39, .18);
}
.hero-stats li { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero-stats span { font-size: .82rem; color: var(--muted); }

/* Preview card */
.preview-card {
  background: linear-gradient(160deg, #241c14 0%, #15100c 100%);
  border: 1px solid rgba(201, 162, 39, .22);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.03) inset;
  transform: perspective(900px) rotateY(-6deg) rotateX(3deg);
  transition: transform .4s ease;
}
.preview-card:hover { transform: perspective(900px) rotateY(-2deg) rotateX(1deg); }
.preview-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.preview-top .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #3d3223;
}
.preview-top .dot:nth-child(1) { background: #c0392b; }
.preview-top .dot:nth-child(2) { background: var(--gold); }
.preview-top .dot:nth-child(3) { background: var(--felt); }
.preview-title {
  margin-left: auto;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.match-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.player { display: flex; align-items: center; gap: 10px; }
.player.right { justify-content: flex-end; }
.seed {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--felt);
  display: grid; place-items: center;
  font-size: .75rem;
  font-weight: 800;
  color: #fff;
}
.name { font-weight: 700; font-size: .98rem; }
.score {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
}
.score span { color: var(--muted); font-size: 1.1rem; }
.match-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: var(--muted);
}
.tag.gold {
  background: rgba(201, 162, 39, .12);
  border-color: rgba(201, 162, 39, .35);
  color: var(--gold-soft);
}
.bracket-mini {
  display: flex;
  gap: 14px;
  justify-content: center;
  padding: 16px;
  background: rgba(10, 92, 58, .18);
  border-radius: 12px;
  border: 1px solid rgba(10, 92, 58, .35);
}
.bm-col { display: flex; flex-direction: column; justify-content: space-around; gap: 8px; }
.bm-slot {
  width: 42px; height: 18px;
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  font-size: .55rem;
  font-weight: 800;
  display: grid; place-items: center;
  color: var(--muted);
  letter-spacing: .06em;
}
.bm-slot.on { background: var(--felt); color: #fff; }
.bm-slot.gold { background: var(--gold); color: #1a1405; }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 34px;
  border: 2px solid rgba(201, 162, 39, .35);
  border-radius: 12px;
}
.scroll-hint span {
  display: block;
  width: 3px; height: 8px;
  margin: 6px auto 0;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 1.6s ease infinite;
}
@keyframes scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* —— Strip —— */
.strip {
  background: linear-gradient(90deg, var(--felt-dark), var(--felt), var(--felt-dark));
  border-top: 1px solid rgba(201, 162, 39, .25);
  border-bottom: 1px solid rgba(201, 162, 39, .25);
  padding: 18px 0;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}
.strip .sep { color: var(--gold); font-size: .55rem; opacity: .85; }

/* —— Sections —— */
.section { padding: 100px 0; position: relative; }
.section-dark {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(10, 92, 58, .25), transparent 60%),
    var(--panel);
}
.section-felt {
  background:
    linear-gradient(180deg, rgba(6, 61, 39, .35), transparent 40%),
    var(--ink);
}
.section-live {
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(201, 162, 39, .1), transparent 55%),
    linear-gradient(165deg, #07160e, var(--ink) 55%, #120e0a);
  border-top: 1px solid rgba(201, 162, 39, .15);
  border-bottom: 1px solid rgba(201, 162, 39, .15);
}
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.light { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-lead { color: var(--muted); font-size: 1.05rem; max-width: 36em; }
.section-head.light .section-lead { margin-left: auto; margin-right: auto; }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: linear-gradient(165deg, #1e1710, #14100c);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.feature:hover {
  border-color: rgba(201, 162, 39, .45);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(10, 92, 58, .25);
  border: 1px solid rgba(10, 92, 58, .4);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--cream);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.feature p { color: var(--muted); font-size: .95rem; }

/* Disciplines */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.disc {
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(201, 162, 39, .15);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.disc:hover {
  border-color: rgba(201, 162, 39, .45);
  background: rgba(10, 92, 58, .2);
}
.disc-ball {
  width: 44px; height: 44px;
  border-radius: 50%;
  margin: 0 auto 14px;
  box-shadow: inset -4px -5px 10px rgba(0,0,0,.4), 0 4px 12px rgba(0,0,0,.3);
  display: block;
}
.disc-ball.snooker { background: radial-gradient(circle at 32% 28%, #ff6b5b, #b71c1c 55%, #5a0a0a); }
.disc-ball.snooker6 { background: radial-gradient(circle at 32% 28%, #ffd54f, #f9a825 55%, #7a5600); }
.disc-ball.snooker10 { background: radial-gradient(circle at 32% 28%, #81c784, #2e7d32 55%, #0d3d12); }
.disc-ball.eight { background: radial-gradient(circle at 32% 28%, #555, #111 50%, #000); box-shadow: inset -4px -5px 10px rgba(0,0,0,.5), 0 4px 12px rgba(0,0,0,.3), inset 0 0 0 6px #fff; }
.disc-ball.nine { background: radial-gradient(circle at 32% 28%, #ffeb3b, #fbc02d 55%, #8a6d00); }
.disc-ball.ten { background: radial-gradient(circle at 32% 28%, #64b5f6, #1565c0 55%, #0a2f5c); }
.disc-ball.multi { background: conic-gradient(#c0392b, #c9a227, #2e7d4f, #4a7dbd, #c0392b); }
.disc-ball.dart { background: radial-gradient(circle at 32% 28%, #f5f5f5, #9e9e9e 40%, #212121 42%, #111); }
.disc strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.disc em { font-style: normal; font-size: .82rem; color: var(--muted); }

/* Split layouts */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-copy { order: 2; }
.split.reverse .split-visual { order: 1; }

.check-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--cream);
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--felt);
  box-shadow: inset 0 0 0 4px rgba(201, 162, 39, .35);
}

.bracket-showcase {
  background: linear-gradient(160deg, #1a241c, #100e0a);
  border: 1px solid rgba(10, 92, 58, .45);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.bs-label {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: 22px;
}
.bs-lanes { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 12px; }
.bs-lane {
  background: rgba(0,0,0,.25);
  border-radius: 12px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid transparent;
}
.bs-lane.r1 { border-color: rgba(201, 162, 39, .35); background: rgba(10, 92, 58, .2); }
.bs-lane span {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 4px;
}
.bs-lane i {
  display: block;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
}
.bs-lane i.hot { background: linear-gradient(90deg, var(--felt), #1a8a52); }
.bs-lane i.gold { background: linear-gradient(90deg, var(--gold-dim), var(--gold)); }
.bs-note {
  margin-top: 18px;
  font-size: .88rem;
  color: var(--muted);
  text-align: center;
}

/* Rankings */
.rank-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.rank-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.rank-card h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.rank-card p { font-size: .88rem; color: var(--muted); line-height: 1.5; }

.leaderboard {
  background: linear-gradient(180deg, #1c1610, #120e0a);
  border: 1px solid rgba(201, 162, 39, .28);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lb-head, .lb-row {
  display: grid;
  grid-template-columns: 48px 1fr 72px;
  gap: 8px;
  padding: 14px 22px;
  align-items: center;
}
.lb-head {
  background: rgba(10, 92, 58, .45);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.lb-row {
  border-top: 1px solid rgba(61, 50, 35, .6);
  font-weight: 600;
}
.lb-row span:first-child { color: var(--muted); font-family: var(--display); font-size: 1.1rem; }
.lb-row span:last-child {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold);
  text-align: right;
}
.lb-row.top {
  background: linear-gradient(90deg, rgba(201, 162, 39, .12), transparent);
}
.lb-row.top span:first-child { color: var(--gold); }

/* Live scoreboard visual */
.live-board {
  background: linear-gradient(180deg, #0b3d27 0%, #07301e 100%);
  border: 1px solid rgba(201, 162, 39, .45);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(10, 92, 58, .25);
  position: relative;
}
.live-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, .05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.lb-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(201, 162, 39, .3);
  position: relative;
}
.live-tag {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .18em;
  font-size: .8rem;
  color: #1a1405;
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 6px;
  animation: ping 2s ease infinite;
}
.lb-game {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .85rem;
  color: #eafff3;
}
.lb-clock {
  margin-left: auto;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .08em;
}
.lb-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 30px 22px;
  position: relative;
}
.lb-player {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}
.lb-player:last-child { justify-items: end; text-align: right; }
.lb-avatar {
  grid-row: 1 / 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e8a55, #0a5c3a);
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.lb-name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #fff;
}
.lb-score {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(201, 162, 39, .35);
}
.lb-vs {
  font-family: var(--display);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.4);
}
.lb-frame {
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(0,0,0,.3);
  padding: 10px 20px;
  border-top: 1px solid rgba(201, 162, 39, .25);
  position: relative;
}
.lb-next {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.45);
  border-top: 1px solid rgba(201, 162, 39, .25);
  position: relative;
}
.lb-next-label {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--gold);
  padding: 3px 8px;
  border: 1px solid rgba(201, 162, 39, .4);
  border-radius: 6px;
}

/* CTA */
.cta-section { padding-top: 40px; padding-bottom: 110px; }
.cta-card {
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(10, 92, 58, .4), transparent 55%),
    linear-gradient(165deg, #1a2418, #120e0a 60%, #1a150e);
  border: 1px solid rgba(201, 162, 39, .3);
  border-radius: 24px;
  padding: clamp(40px, 8vw, 72px) 28px;
  box-shadow: var(--shadow);
}
.cta-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.cta-card h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 32em;
  margin: 0 auto 32px;
}
.cta-note {
  margin-top: 18px;
  font-size: .9rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 32px;
  background: #0a0806;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-brand .logo-text { font-size: 1.3rem; display: inline-block; margin-bottom: 8px; }
.footer-brand p { color: var(--muted); font-size: .9rem; max-width: 28em; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  justify-content: flex-end;
  font-weight: 600;
  color: var(--muted);
}
.footer-links a:hover { color: var(--gold); }
.copy {
  grid-column: 1 / -1;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid rgba(61, 50, 35, .5);
  font-size: .82rem;
  color: var(--muted);
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 420px; margin: 0 auto; }
  .preview-card { transform: none; }
  .preview-card:hover { transform: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .disc-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-copy,
  .split.reverse .split-visual { order: unset; }
  .hero { min-height: auto; padding-top: 110px; }
  .scroll-hint { display: none; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 76px 16px auto;
    background: rgba(18, 14, 10, .97);
    border: 1px solid var(--line);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; border-radius: 10px; }
  .nav a:hover { background: rgba(255,255,255,.04); }
  .nav-cta { text-align: center; margin-top: 8px; }
  .features-grid { grid-template-columns: 1fr; }
  .rank-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .hero-stats { gap: 18px; }
  .hero h1 { font-size: 2.5rem; }
}
