:root {
  --bg-0: #0a0f0a;
  --bg-1: #0d1410;
  --surface: #16201a;
  --surface-2: #1a2a20;
  --border: #1f3027;
  --primary: #00e83e;
  --primary-2: #4cd137;
  --primary-light: #a4ff8c;
  --text: #e8f5ec;
  --muted: #8aa090;
  --danger: #ff3b3b;
  --shadow-glow: 0 0 0 1px rgba(0, 232, 62, 0.35), 0 8px 24px rgba(0, 232, 62, 0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1240px;
  --header-h: 64px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 50% -120px, rgba(0, 232, 62, 0.12), transparent 60%),
    var(--bg-0);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary-light); text-decoration: none; }
a:hover { color: var(--primary); }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }

@media (min-width: 900px) {
  .container { padding: 0 24px; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 14, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; height: var(--header-h);
}
.logo { display: inline-flex; align-items: center; gap: 8px; }
.logo img { height: 32px; width: auto; }
.logo-text {
  font-weight: 800; letter-spacing: 0.5px; font-size: 18px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.nav-desktop { display: none; }
.nav-desktop ul {
  display: flex; gap: 20px; list-style: none; padding: 0; margin: 0;
}
.nav-desktop a {
  color: var(--text); font-size: 14px; font-weight: 500; padding: 8px 4px;
  text-transform: uppercase; letter-spacing: 0.6px;
}
.nav-desktop a:hover { color: var(--primary); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; border-radius: 999px; font-weight: 700;
  font-size: 14px; letter-spacing: 0.6px; text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
}
.btn--play, .btn--primary {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #061a0a; box-shadow: 0 6px 18px rgba(0, 232, 62, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--play:hover, .btn--primary:hover { transform: translateY(-1px); filter: brightness(1.05); color: #061a0a; }
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn--sm { padding: 8px 14px; font-size: 12px; }

.header-cta { display: inline-flex; gap: 8px; align-items: center; }
.burger {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface);
}
.burger span {
  display: block; width: 18px; height: 2px; background: var(--primary);
  position: relative; border-radius: 2px;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  background: var(--primary); border-radius: 2px;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

@media (min-width: 1024px) {
  .nav-desktop { display: block; }
  .burger { display: none; }
}

.mobile-drawer {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: none;
}
.mobile-drawer[open] { display: block; }
.mobile-drawer-inner {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(86vw, 340px);
  background: var(--bg-1); border-left: 1px solid var(--border);
  padding: 16px; display: flex; flex-direction: column; gap: 8px;
  transform: translateX(0);
}
.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.mobile-drawer ul { list-style: none; padding: 0; margin: 0; }
.mobile-drawer li a {
  display: block; padding: 14px 12px; color: var(--text);
  border-bottom: 1px solid var(--border); font-weight: 600;
}
.mobile-drawer li a:hover { color: var(--primary); }
.drawer-close {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1; background: var(--surface);
}

/* ============ HERO ============ */
.hero {
  padding: 28px 0 8px;
}
.hero-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 320px 1fr; }
}
.hero-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-1) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.hero-bonus {
  text-align: center;
}
.hero-bonus .amount {
  display: block;
  font-size: 36px; font-weight: 800; line-height: 1.1;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 60%, var(--primary-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-bonus .amount-sub { font-size: 14px; color: var(--muted); margin-top: 4px; display: block; }
.hero-bonus .label-line { font-size: 13px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }
.hero-banner {
  display: block; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.hero-banner img { width: 100%; }

.hero-headline {
  display: flex; flex-direction: column; gap: 6px;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 700; color: var(--primary);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.hero-title {
  font-size: 28px; font-weight: 800; line-height: 1.15; margin: 0;
}
.hero-sub {
  color: var(--muted); font-size: 15px; line-height: 1.55;
}
@media (min-width: 900px) {
  .hero-title { font-size: 36px; }
}

.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  margin-top: 8px;
}
@media (min-width: 600px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}
.stat-pill {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 12px; text-align: center;
}
.stat-pill .num { font-weight: 800; color: var(--primary); font-size: 18px; display: block; }
.stat-pill .lbl { font-size: 12px; color: var(--muted); }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px;
}

/* ============ SECTION ============ */
.section { padding: 28px 0; }
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.section-title {
  font-size: 20px; font-weight: 800; margin: 0; letter-spacing: 0.4px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-title::before {
  content: ""; width: 6px; height: 22px; border-radius: 3px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
}

.exclusive-strip {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: rgba(0, 232, 62, 0.12); color: var(--primary);
  font-size: 11px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
}

/* ============ TILE GRID ============ */
.grid-tiles {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) { .grid-tiles { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 900px) { .grid-tiles { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .grid-tiles { grid-template-columns: repeat(5, 1fr); } }

.tile {
  position: relative; display: block;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  aspect-ratio: 4 / 3;
}
.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .25s ease;
}
.tile:hover {
  border-color: var(--primary); box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.tile:hover img { transform: scale(1.04); }
.tile::after {
  content: "Play"; position: absolute; left: 8px; bottom: 8px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color: #061a0a; font-size: 11px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  opacity: 0; transform: translateY(6px); transition: .2s ease;
}
.tile:hover::after { opacity: 1; transform: translateY(0); }

/* Provider tile (text label) */
.provider-tile {
  position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #0e1a13 0%, #0a1410 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 16 / 10; padding: 12px;
  font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--primary-light);
  transition: border-color .15s, box-shadow .15s, transform .15s;
  text-align: center; font-size: 14px;
}
.provider-tile small {
  display: block; font-size: 10px; color: var(--muted);
  letter-spacing: 1.4px; margin-top: 6px;
}
.provider-tile:hover {
  border-color: var(--primary); box-shadow: var(--shadow-glow);
  transform: translateY(-2px); color: var(--primary);
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(0,232,62,0.05), rgba(0,232,62,0.0));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 12px;
}
.trust-strip img { width: 100%; height: auto; }

/* ============ SEO CONTENT ============ */
.seo-content {
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 880px;
}
.seo-content h1 {
  font-size: 30px; line-height: 1.2; margin: 0 0 18px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.seo-content h2 {
  font-size: 23px; line-height: 1.25; margin: 32px 0 12px;
  border-left: 4px solid var(--primary); padding-left: 12px;
}
.seo-content h3 { font-size: 18px; margin: 22px 0 10px; color: var(--primary-light); }
.seo-content h4 { font-size: 16px; margin: 18px 0 8px; }
.seo-content p { line-height: 1.7; margin: 0 0 14px; color: #d8e7dd; }
.seo-content strong { color: var(--text); }
.seo-content ul, .seo-content ol { padding-left: 22px; margin: 0 0 16px; line-height: 1.7; }
.seo-content li { margin-bottom: 6px; }
.seo-content ul li::marker { color: var(--primary); }
.seo-content a { color: var(--primary); border-bottom: 1px dashed rgba(0,232,62,0.4); }
.seo-content a:hover { color: var(--primary-light); border-bottom-color: var(--primary); }

@media (min-width: 900px) {
  .seo-content h1 { font-size: 36px; }
  .seo-content h2 { font-size: 26px; }
}

.table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border); border-radius: var(--radius);
  margin: 16px 0;
}
.seo-content table {
  width: 100%; border-collapse: collapse; min-width: 520px;
  font-size: 14px;
}
.seo-content thead th {
  background: linear-gradient(180deg, rgba(0,232,62,0.15), rgba(0,232,62,0.05));
  color: var(--primary); text-align: left; padding: 12px;
  font-weight: 700; letter-spacing: 0.4px; border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.seo-content tbody td {
  padding: 11px 12px; border-bottom: 1px solid var(--border);
  color: #d8e7dd; vertical-align: top;
}
.seo-content tbody tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.seo-content tbody tr:hover td { background: rgba(0,232,62,0.04); }

.seo-content details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px; margin: 8px 0;
}
.seo-content details[open] { border-color: rgba(0,232,62,0.4); }
.seo-content summary {
  cursor: pointer; font-weight: 700; color: var(--text);
  list-style: none; position: relative; padding-right: 28px;
}
.seo-content summary::-webkit-details-marker { display: none; }
.seo-content summary::after {
  content: "+"; position: absolute; right: 0; top: -2px;
  color: var(--primary); font-size: 22px; line-height: 1; transition: transform .2s;
}
.seo-content details[open] summary::after { content: "−"; }

/* ============ FOOTER ============ */
.site-footer {
  margin-top: 56px;
  background: var(--bg-1); border-top: 1px solid var(--border);
  padding: 32px 0 24px;
}
.footer-trust {
  display: flex; justify-content: center; padding: 8px 0 18px;
}
.footer-trust img { max-width: 700px; width: 100%; opacity: 0.95; }
.footer-badges {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  padding: 8px 0 18px;
}
.footer-badges img { height: 56px; width: auto; }
.footer-social {
  display: flex; gap: 10px; justify-content: center;
  margin: 12px 0 18px;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary); font-weight: 700;
  transition: border-color .15s, color .15s;
}
.footer-social a:hover { border-color: var(--primary); color: var(--primary-light); }
.footer-meta {
  text-align: center; color: var(--muted); font-size: 13px; line-height: 1.6;
}
.footer-meta .age {
  display: inline-block; padding: 2px 8px; border: 1px solid var(--primary);
  color: var(--primary); border-radius: 999px; font-weight: 800;
  font-size: 11px; margin-right: 8px;
}

/* ============ 404 ============ */
.page-404 {
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px 16px;
}
.page-404 .code {
  font-size: 84px; font-weight: 900; line-height: 1;
  background: linear-gradient(180deg, var(--primary-light), var(--primary), var(--primary-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-404 h1 { margin: 12px 0 6px; }
.page-404 p { color: var(--muted); margin: 0 0 20px; }

/* ============ MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
