/* Milo88 — Premium */
:root {
  /* base palette — deep emerald like banner backdrop */
  --bg: #052010;
  --bg-1: #083018;
  --bg-2: #0c4422;
  --bg-3: #115a2c;
  --line: rgba(140,230,90,0.12);
  --line-2: rgba(140,230,90,0.22);

  /* text */
  --fg: #f3f7e8;
  --fg-2: #d6e5c8;
  --fg-3: #9bb893;
  --fg-4: #6b8466;

  /* accents — vibrant lime/chartreuse (from banner) */
  --accent: #00ff7a;
  --accent-2: #2fd35a;
  --accent-3: #b8ff5e;

  /* premium yellow accent (banner highlight) */
  --gold: #fcdc1f;
  --gold-2: #d8b800;

  /* live chip */
  --green: #00ff7a;
  --emerald: #1a8a4a;
  --emerald-2: #0d6a36;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  --container: 1280px;
  --pad: 28px;

  --t-display: "Bricolage Grotesque", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --t-ui: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --t-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

[data-density="compact"] { --pad: 20px; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--t-ui);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
img { display: block; max-width: 100%; }

.app {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(0,255,122,0.10), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(252,220,31,0.05), transparent 70%),
    var(--bg);
  min-height: 100vh;
}

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .25s ease;
}
.btn-sm { padding: 8px 12px; font-size: 12px; }
.btn-lg { padding: 14px 22px; font-size: 14px; }
.btn-primary {
  background: linear-gradient(180deg, var(--accent-3) 0%, var(--accent) 100%);
  color: #052010;
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 8px 24px -8px rgba(0,255,122,0.5);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 12px 28px -10px rgba(0,255,122,0.7); }
.btn-ghost { color: var(--fg-2); }
.btn-ghost:hover { color: var(--fg); }
.btn-outline {
  border: 1px solid var(--line-2);
  color: var(--fg);
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }

/* ==================== Topbar ==================== */
.topbar {
  background: #050f0a;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--fg-3);
}
.topbar-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 8px var(--pad);
  display: flex; justify-content: space-between; align-items: center;
}
.tb-left, .tb-right { display: flex; gap: 14px; align-items: center; }
.tb-right a:hover { color: var(--fg); }
.tb-sep { opacity: 0.4; }
.tb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.topbar strong { color: var(--green); font-weight: 600; }

/* ==================== Header ==================== */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 26, 16, 0.78);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 14px var(--pad);
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
}
.brand img { height: 30px; width: auto; }
.nav {
  display: flex; gap: 4px; align-items: center;
  justify-self: center;
}
.nav-item {
  position: relative;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-2);
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-item:hover { color: var(--fg); background: rgba(255,255,255,0.04); }
.nav-item.has-badge { color: var(--fg); }
.nav-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #061a10;
  background: var(--accent);
  border-radius: 4px;
  vertical-align: middle;
  text-transform: uppercase;
}
.header-cta { display: flex; gap: 8px; }

/* ==================== Hero ==================== */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 80%);
}
.hero-bg-glow {
  position: absolute;
  filter: blur(80px);
  opacity: 0.55;
  border-radius: 50%;
}
.hero-bg-glow-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, var(--accent-2), transparent 60%);
  top: -120px; right: -100px;
}
.hero-bg-glow-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #1c6e3c, transparent 60%);
  bottom: -180px; left: 10%;
}

.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px var(--pad) 72px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent-3);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.hero-title {
  font-family: var(--t-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0 0 28px;
  color: var(--fg);
}
.hero-title-1 { display: block; font-weight: 400; opacity: 0.78; }
.hero-title-2 {
  display: block;
  background: linear-gradient(95deg, var(--accent-3) 0%, var(--accent) 50%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 700;
}

.hero-pitch {
  max-width: 480px;
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 12px; margin-bottom: 28px; }
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  color: var(--fg-3); font-size: 12px;
}
.hero-meta-sep { width: 3px; height: 3px; background: var(--fg-4); border-radius: 50%; }
.hero-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(77,220,140,0.12);
  color: var(--green);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* Hero — sizes display */
.hero-sizes {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-size-value {
  font-family: var(--t-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.hero-size-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-top: 6px;
}

/* Hero — landscape banner */
.hero-banner-l {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 613;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 40px 100px -24px rgba(0,0,0,0.6),
    0 0 0 1px var(--line-2),
    0 0 80px -20px var(--accent-2);
  background: #04200f;
}
.hero-banner-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-banner-img.is-active { opacity: 1; }

.hero-pager-row {
  display: flex; gap: 8px;
  justify-content: center;
}
.hero-pager-dot {
  width: 32px; height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  transition: background .25s, width .25s;
  cursor: pointer;
}
.hero-pager-dot:hover { background: rgba(255,255,255,0.32); }
.hero-pager-dot.is-active { background: var(--accent); width: 52px; }
.hero-banner-placeholder {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: rgba(255,245,232,0.92);
}
.hero-banner-placeholder-label {
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  padding: 6px 14px;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
}
.hero-banner-placeholder-size {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,245,232,0.7);
}
.hero-banner-placeholder-s .hero-banner-placeholder-label { font-size: 10px; padding: 4px 10px; letter-spacing: 0.2em; }
.hero-banner-placeholder-s .hero-banner-placeholder-size { font-size: 9px; }
.hero-banner-l-grid {
  position: relative; z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  padding: 48px 56px;
  align-items: center;
}
.hero-banner-l-copy { color: #fff5e8; }
.hero-banner-l-title {
  font-family: var(--t-display);
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  font-weight: 600;
  color: #fff;
}
.hero-banner-l-title .hero-title-1 { display: block; font-weight: 400; opacity: 0.85; }
.hero-banner-l-title .hero-title-2 {
  display: block;
  font-weight: 700;
  background: linear-gradient(95deg, #fff 0%, var(--gold) 60%, var(--accent-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-banner-l-pitch {
  max-width: 440px;
  font-size: 15px;
  color: rgba(255,245,232,0.88);
  line-height: 1.55;
  margin: 0 0 24px;
}

.hero-banner-l-feature {
  position: relative;
  display: flex; flex-direction: column;
  align-items: flex-start;
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.hero-banner-l .hero-banner-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  margin-bottom: 16px;
}
.hero-banner-l .hero-banner-headline {
  font-family: var(--t-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero-banner-l .hero-banner-sub {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,245,232,0.78);
  margin-top: 6px;
  font-weight: 600;
}
.hero-banner-l .hero-sizes {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 0;
  width: 100%;
}
.hero-banner-l .hero-size-value {
  font-family: var(--t-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}
.hero-banner-l .hero-size-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,245,232,0.7);
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-banner-l .hero-banner-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,245,232,0.85);
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Secondary banner row */
.hero-banner-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-banner-s {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 1.4;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  border: 1px solid var(--line);
  opacity: 0.78;
  transition: opacity .2s, transform .2s, border-color .2s;
}
.hero-banner-s:hover { opacity: 1; transform: translateY(-2px); }
.hero-banner-s.is-active {
  opacity: 1;
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 16px 40px -16px rgba(0,0,0,0.6);
}
.hero-banner-s-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  height: 100%;
  color: #fff5e8;
}
.hero-banner-s-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
}
.hero-banner-s-text { flex: 1; min-width: 0; }
.hero-banner-s-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(255,245,232,0.78);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-banner-s-title {
  font-family: var(--t-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-banner-s-size {
  font-family: var(--t-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-left: auto;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-banner-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 80% 10%, var(--accent) 0%, transparent 55%),
    radial-gradient(100% 80% at 10% 100%, var(--emerald) 0%, transparent 60%),
    linear-gradient(160deg, var(--accent-2) 0%, var(--emerald-2) 55%, #04200f 100%);
}
.hero-tone-emerald .hero-banner-bg {
  background:
    radial-gradient(120% 80% at 80% 10%, var(--emerald) 0%, transparent 55%),
    radial-gradient(100% 80% at 10% 100%, var(--accent-2) 0%, transparent 55%),
    linear-gradient(160deg, var(--emerald) 0%, var(--bg-2) 60%, #04200f 100%);
}
.hero-tone-gold .hero-banner-bg {
  background:
    radial-gradient(120% 80% at 80% 10%, var(--gold) 0%, transparent 55%),
    radial-gradient(100% 80% at 10% 100%, var(--accent-2) 0%, transparent 55%),
    linear-gradient(160deg, var(--gold-2) 0%, var(--accent-2) 55%, #04200f 100%);
}

.hero-banner-grain {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.hero-banner-rings {
  position: absolute;
  right: -20%; top: -20%;
  width: 120%; height: 120%;
}
.hero-banner-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
}
.hero-banner-rings span:nth-child(2) { inset: 12%; border-color: rgba(255,255,255,0.10); }
.hero-banner-rings span:nth-child(3) { inset: 24%; border-color: rgba(255,255,255,0.06); }

.hero-banner-content {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff5e8;
}
.hero-banner-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
}
.hero-banner-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,245,232,0.8);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-banner-headline {
  font-family: var(--t-display);
  font-size: clamp(64px, 9vw, 112px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero-banner-sub {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(255,245,232,0.85);
  margin-top: 8px;
  font-weight: 500;
}
.hero-banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Hero variant — bold */
.hero-bold .hero-title-1 { opacity: 1; font-weight: 700; }
.hero-bold .hero-title-2 { font-style: italic; }

.hero-pager {
  position: absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 5;
}
.hero-dot {
  width: 26px; height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  transition: background .25s, width .25s;
}
.hero-dot.is-active { background: var(--accent); width: 44px; }

/* Hero variant — bold */
.hero-bold .hero-title-1 { opacity: 1; font-weight: 700; }
.hero-bold .hero-title-2 { font-style: italic; }

/* ==================== Ticker ==================== */
.ticker {
  display: flex; align-items: center;
  background: #050f0a;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  background: rgba(0,255,122,0.06);
  border-right: 1px solid var(--line);
}
.ticker-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0,255,122,0.7);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,255,122,0.7); }
  100% { box-shadow: 0 0 0 12px rgba(0,255,122,0); }
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-rail {
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  padding: 14px 0;
}
@keyframes scroll {
  to { transform: translateX(-33.333%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: var(--fg-2);
}
.ticker-user { color: var(--fg-3); font-family: var(--t-mono); font-size: 11px; }
.ticker-game { color: var(--fg); font-weight: 500; }
.ticker-amount { color: var(--green); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ==================== Sections ==================== */
.main { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 96px 0; border-bottom: 1px solid var(--line); }
[data-density="compact"] .section { padding: 64px 0; }

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-3);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--t-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  text-wrap: pretty;
}
.section-link {
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 500;
  transition: color .15s;
}
.section-link:hover { color: var(--accent); }

/* Tabs */
.tabs {
  display: inline-flex; gap: 2px;
  padding: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.tab {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-3);
  border-radius: 999px;
  transition: color .15s, background .15s;
}
.tab:hover { color: var(--fg); }
.tab.is-active { background: var(--fg); color: var(--bg); }

/* ==================== Categories ==================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cat-grid > .cat-card-0 { grid-column: span 3; }
.cat-grid > .cat-card-1 { grid-column: span 3; }
.cat-grid > .cat-card-2 { grid-column: span 2; }
.cat-grid > .cat-card-3 { grid-column: span 2; }
.cat-grid > .cat-card-4 { grid-column: span 2; }
.cat-grid > .cat-card-5 { grid-column: span 6; }

.cat-card {
  position: relative;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.cat-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.cat-card-art { aspect-ratio: 1568 / 624; }
.cat-card-art > img { object-position: left center; }
.cat-card-body { padding: 18px 20px 20px; }
.cat-card-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.cat-card-title {
  font-family: var(--t-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.cat-card-count {
  font-family: var(--t-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.cat-card-desc {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 4px;
}
.cat-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: 12px; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: gap .15s;
}
.cat-card:hover .cat-card-cta { gap: 10px; }

/* ==================== Game grid ==================== */
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.game-card {
  display: flex; flex-direction: column;
  transition: transform .25s ease;
}
.game-card:hover { transform: translateY(-3px); }
.game-card-art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.game-card-flag {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #052010;
  background: var(--accent);
  border-radius: 4px;
  z-index: 2;
}
.game-card-hover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 8px;
  align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(6,26,16,0.4), rgba(6,26,16,0.85));
  opacity: 0;
  transition: opacity .2s;
  backdrop-filter: blur(2px);
}
.game-card:hover .game-card-hover { opacity: 1; }

.game-card-meta { padding: 14px 4px 0; }
.game-card-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.game-card-sub {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--fg-3);
  font-family: var(--t-mono);
}
.game-card-dot { width: 3px; height: 3px; background: var(--fg-4); border-radius: 50%; }
.game-card-players {
  display: flex; align-items: center; gap: 6px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--green);
}
.game-card-pulse {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}

/* ==================== Jackpot ==================== */
.jackpot {
  position: relative;
  margin: 0 var(--pad);
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
  border-top: 1px solid var(--line);
  padding: 96px 0;
  overflow: hidden;
}
.jackpot-bg {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.jackpot-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.jackpot-eyebrow {
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600; text-transform: uppercase;
  margin-bottom: 18px;
}
.jackpot-value {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--t-display);
  margin-bottom: 28px;
}
.jackpot-currency {
  font-size: 42px; color: var(--gold); font-weight: 500;
}
.jackpot-num {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff5dd 0%, var(--gold) 50%, var(--gold-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.jackpot-pools {
  display: flex; gap: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.pool-label {
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--fg-3); text-transform: uppercase;
  margin-bottom: 6px;
}
.pool-val {
  font-family: var(--t-display);
  font-size: 22px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.jackpot-pitch {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 380px;
}

/* ==================== Trust ==================== */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust-item {
  display: flex; gap: 16px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
}
.trust-item:last-child { border-right: 0; }
.trust-num {
  font-family: var(--t-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.trust-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.trust-desc {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
}

/* ==================== Providers ==================== */
.providers {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px var(--pad);
  display: flex; align-items: center; gap: 36px;
  border-bottom: 1px solid var(--line);
}
.providers-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-4);
  text-transform: uppercase;
  flex-shrink: 0;
}
.providers-row {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.provider-chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
  transition: border-color .15s, color .15s;
}
.provider-chip:hover { border-color: var(--accent); color: var(--fg); }

/* ==================== SEO Content ==================== */
.seo {
  border-top: 1px solid var(--line);
  background: #03180c;
}
.seo-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px var(--pad);
}
.seo-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent-3);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.seo-title {
  font-family: var(--t-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 40px;
  text-wrap: pretty;
  max-width: 720px;
}
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.seo-h {
  font-family: var(--t-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 24px 0 10px;
  color: var(--fg);
}
.seo-h:first-child { margin-top: 0; }
.seo-h-lg { font-size: 22px; margin-bottom: 20px; }
.seo-p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.seo-p strong { color: var(--accent-3); font-weight: 600; }
.seo-list {
  list-style: none;
  padding: 0; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.seo-list li {
  font-size: 13px;
  color: var(--fg-2);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.seo-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.seo-list strong { color: var(--fg); font-weight: 600; }

.seo-faq {
  padding-top: 40px;
  border-top: 1px solid var(--line);
  margin-bottom: 40px;
}
.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.seo-faq-item {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.015);
}
.seo-faq-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.seo-faq-a {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.55;
}

.seo-keywords {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.seo-kw-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--fg-4);
  text-transform: uppercase;
  margin-right: 8px;
}
.seo-kw {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,255,122,0.08);
  color: var(--accent-3);
  border: 1px solid rgba(0,255,122,0.18);
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .seo-grid { grid-template-columns: 1fr; gap: 32px; }
  .seo-faq-grid { grid-template-columns: 1fr; }
}

/* ==================== Footer ==================== */
.footer {
  background: #050f0a;
  border-top: 1px solid var(--line);
}
.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px var(--pad) 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.footer-brand img { height: 28px; margin-bottom: 18px; }
.footer-brand p {
  font-size: 13px; color: var(--fg-3); line-height: 1.6;
  max-width: 320px;
}
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.footer-cols > div { display: flex; flex-direction: column; gap: 10px; }
.footer-h {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--fg-4);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.footer-cols a {
  font-size: 13px;
  color: var(--fg-2);
  transition: color .15s;
}
.footer-cols a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px var(--pad);
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 11px;
  color: var(--fg-4);
  letter-spacing: 0.02em;
}

/* ==================== Placeholder ==================== */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  background-color: rgba(255,255,255,0.02);
}
.ph::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: inherit;
  pointer-events: none;
}
.ph-label {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  padding: 4px 10px;
  background: rgba(0,0,0,0.4);
  border-radius: 4px;
}
.ph-size {
  position: absolute;
  bottom: 10px; right: 10px;
  font-family: var(--t-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.42);
  padding: 3px 8px;
  background: rgba(0,0,0,0.45);
  border-radius: 3px;
}

/* ==================== Responsive ==================== */
@media (max-width: 1100px) {
  .hero-inner { padding: 40px var(--pad) 56px; }
  .hero-banner-row { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid > .cat-card-0, .cat-grid > .cat-card-1,
  .cat-grid > .cat-card-2, .cat-grid > .cat-card-3,
  .cat-grid > .cat-card-4, .cat-grid > .cat-card-5 { grid-column: span 2; }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .jackpot-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .nav, .tb-left, .tb-right, .header-cta .btn-ghost { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .jackpot-pools { flex-wrap: wrap; gap: 20px; }
}
