*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
:root {
  --lime: #c8ef2a;
  --lime-2: #a8d117;
  --navy: #15243c;
  --navy-2: #1c3152;
  --bg: #070a10;
  --card: #101928;
  --line: rgba(255,255,255,.08);
  --text: #eef3fb;
  --muted: #93a0b5;
  --danger: #ff5b7a;
  --gold: #f4c14a;
}
body {
  font-family: "Outfit", system-ui, sans-serif;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(200,239,42,.12), transparent 55%),
    radial-gradient(700px 380px at 92% 8%, rgba(88,70,255,.18), transparent 50%),
    var(--bg);
  color: var(--text);
  min-height: 100dvh;
  line-height: 1.58;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { padding-left: 1.15em; }
.wrap { width: min(1180px, calc(100% - 28px)); margin: 0 auto; }

/* ===== HEADER ===== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7,10,16,.88);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; gap: 14px;
  min-height: 68px; padding: 8px 0;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand img { height: 40px; width: auto; max-width: min(210px, 42vw); }
.age-pill {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 28px; border-radius: 8px;
  background: #1a1014; color: var(--danger); font-weight: 800; font-size: 13px;
  border: 1px solid rgba(255,91,122,.4);
}
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link, .nav-drop-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 12px; border-radius: 10px;
  font-size: 13px; font-weight: 700; color: #d7deea;
}
.nav-link:hover, .nav-link.is-active, .nav-drop:hover .nav-drop-btn, .nav-drop.open .nav-drop-btn {
  background: rgba(255,255,255,.06); color: var(--lime);
}
.nav-drop { position: relative; }
.nav-drop-btn::after { content: "▾"; font-size: 11px; color: var(--lime); }
.nav-drop-menu {
  display: none; position: absolute; top: calc(100% - 2px); left: 0;
  min-width: 230px; padding: 8px; z-index: 60;
  background: #121a2c; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.nav-drop:hover .nav-drop-menu, .nav-drop.open .nav-drop-menu { display: grid; }
.nav-drop-menu a {
  display: block; padding: 9px 12px; border-radius: 10px;
  font-size: 13px; font-weight: 650; color: #d7deea;
}
.nav-drop-menu a:hover { background: rgba(200,239,42,.12); color: var(--lime); }
.drop-label {
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: #7e8aa0; font-weight: 800; padding: 8px 12px 4px;
}
.top-actions { display: flex; gap: 8px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 18px; border-radius: 10px; font-weight: 800; font-size: 14px;
  transition: transform .18s, filter .18s, background .18s;
}
.btn:hover { transform: translateY(-1px); }
.btn-ghost { background: var(--navy); border: 1px solid rgba(255,255,255,.12); }
.btn-lime {
  background: linear-gradient(180deg, #d8ff4a, var(--lime));
  color: #000;
  box-shadow: 0 8px 22px rgba(200,239,42,.28);
}
.panel a.btn { text-decoration: none; }
.panel a.btn-lime { color: #000; }
.btn-wide { width: 100%; }

/* ===== HERO / LOBBY ===== */
.hero {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px;
  padding: 22px 0 8px;
}
.hero-banner {
  position: relative; overflow: hidden; min-height: 280px;
  border-radius: 22px; padding: 28px 28px 24px;
  background:
    radial-gradient(540px 220px at 88% 20%, rgba(200,239,42,.22), transparent 50%),
    linear-gradient(135deg, #1a2a4a 0%, #0d1524 55%, #1b1638 100%);
  border: 1px solid var(--line);
}
.hero-banner h1, .hero-kicker {
  font-size: clamp(28px, 4vw, 44px); line-height: 1.08; font-weight: 800;
  letter-spacing: -.03em; margin-bottom: 10px;
}
.hero-kicker { margin: 0 0 10px; }
.hero-banner p { color: var(--muted); max-width: 48ch; margin-bottom: 18px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.utp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.utp-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 14px 14px 12px;
}
.utp-card b { display: block; font-size: 22px; color: var(--lime); line-height: 1.15; }
.utp-card span { color: var(--muted); font-size: 13px; font-weight: 600; }

.cats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0 8px; }
.cat {
  display: flex; align-items: center; gap: 14px;
  background: var(--navy); border-radius: 16px; padding: 16px 18px;
  border: 1px solid var(--line); font-weight: 800;
}
.cat i {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(200,239,42,.12); color: var(--lime); font-style: normal; font-size: 22px;
}

.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 12px; margin: 28px 0 14px;
}
.section-head h2 { font-size: 22px; letter-spacing: -.02em; }
.section-head a { color: var(--lime); font-weight: 700; font-size: 14px; }

.bonus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.bonus-card {
  background: var(--navy); border-radius: 16px; padding: 12px 12px 18px;
  border: 1px solid var(--line); display: grid; gap: 10px;
}
.bonus-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  background: #0b1220;
}
.bonus-ico {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(200,239,42,.14); font-size: 20px;
}
.bonus-card h3 { font-size: 16px; line-height: 1.3; }
.bonus-card p { color: var(--muted); font-size: 13px; }

.prov-row, .pay-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.prov-chip, .pay-chip {
  height: 52px; min-width: 92px; padding: 6px 10px;
  background: #0e1624; border: 1px solid var(--line); border-radius: 12px;
  display: grid; place-items: center;
}
.prov-chip img, .pay-chip img { height: 28px; width: auto; max-width: 88px; object-fit: contain; }

.games-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.game-card {
  background: var(--card); border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); font-size: 12px; font-weight: 700;
}
.game-card span.name { display: block; padding: 8px 8px 10px; color: #dbe3f0; }
.game-cover { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.game-cover img { width: 100%; height: 100%; object-fit: cover; }
.game-play {
  position: absolute; inset: auto 10px 10px auto;
  background: var(--lime); color: #11180a; font-weight: 800;
  font-size: 11px; padding: 5px 8px; border-radius: 8px;
}

.legal-strip {
  display: flex; gap: 14px; align-items: flex-start;
  margin: 28px 0; padding: 16px; border-radius: 16px;
  background: #161018; border: 1px solid rgba(255,91,122,.28);
}
.legal-strip .plus {
  min-width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; font-weight: 900; color: var(--danger);
  background: #241018; border: 1px solid rgba(255,91,122,.4);
}
.legal-strip p { color: #d7c8ce; font-size: 14px; }

/* ===== ARTICLE ===== */
.panel {
  background: rgba(16,25,40,.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 28px 36px;
  margin-bottom: 40px;
}
.updated { color: var(--lime); font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.panel h1 {
  font-size: clamp(26px, 3.4vw, 38px); line-height: 1.15;
  letter-spacing: -.03em; margin-bottom: 14px;
}
.panel h2 {
  font-size: 22px; margin: 30px 0 12px; letter-spacing: -.02em;
  padding-top: 8px; border-top: 1px solid var(--line);
}
.panel h2:first-of-type { border-top: 0; }
.panel h3 { font-size: 17px; margin: 18px 0 8px; color: #f2f6ff; }
.panel p { color: #d5dce8; margin-bottom: 12px; }
.panel a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.panel li { margin: 6px 0; color: #d5dce8; }
.toc {
  background: #0c1422; border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 18px; margin: 18px 0 8px;
}
.toc strong { display: block; margin-bottom: 8px; }
.toc ol { display: grid; gap: 6px; padding-left: 1.3em; }
.toc a { color: #dbe6f8; text-decoration: none; font-weight: 650; }
.toc a:hover { color: var(--lime); }
.table-wrap { overflow-x: auto; margin: 12px 0 16px; border-radius: 14px; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 14px; }
th, td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: #152338; color: var(--lime); font-weight: 750; }
tr:last-child td { border-bottom: 0; }
table.bonus-pick { min-width: 640px; }
table.bonus-pick .btn {
  min-width: 0; height: 36px; padding: 0 12px; font-size: 12px; white-space: nowrap;
}
.callout {
  background: rgba(200,239,42,.08); border: 1px solid rgba(200,239,42,.28);
  border-radius: 14px; padding: 12px 14px; margin: 12px 0 16px; color: #e7efd4;
}
.responsible-play {
  margin-top: 28px; padding: 18px; border-radius: 16px;
  background: #161018; border: 1px solid rgba(255,91,122,.28);
}
.rp-title { color: var(--danger); font-weight: 800; margin-bottom: 8px; }

.faq-item { margin-bottom: 6px; }

/* ===== FOOTER / CONTACT ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 80px;
  background: #080b12;
}
.footer-logo img { height: 42px; width: auto; margin-bottom: 18px; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 22px;
  margin: 22px 0;
}
.footer h3 { font-size: 14px; margin-bottom: 10px; color: var(--lime); }
.footer p, .footer a { color: var(--muted); font-size: 14px; display: block; margin: 5px 0; }
.footer a:hover { color: var(--text); }
.gcb {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  background: #101820; border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 12px; font-weight: 800; color: var(--text);
}
.gcb small { color: var(--muted); font-weight: 600; }
.footer-note { color: #8e97a8; font-size: 13px; line-height: 1.55; }
.contact-box {
  display: grid; gap: 6px; background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 16px;
}

.cookie {
  position: fixed; right: 16px; bottom: 16px; z-index: 80;
  width: min(420px, calc(100% - 24px));
  background: #121a2c; border: 1px solid var(--line); border-radius: 16px;
  padding: 16px; box-shadow: 0 16px 50px rgba(0,0,0,.45);
}
.cookie.is-hidden { display: none; }
.cookie h2 { font-size: 16px; margin-bottom: 8px; }
.cookie p { color: var(--muted); font-size: 13px; margin-bottom: 12px; }
.cookie a { color: var(--lime); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-set { display: none; margin-top: 12px; }
.cookie-set.open { display: grid; gap: 8px; }
.sw { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; }

.burger { display: none; }

@media (max-width: 980px) {
  .hero, .bonus-grid, .footer-grid, .utp-grid, .cats { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
  .main-nav.open {
    display: grid; position: absolute; top: 68px; left: 0; right: 0;
    background: #0c121c; border-bottom: 1px solid var(--line); padding: 10px 16px 16px;
  }
  .burger { display: inline-flex; width: 42px; height: 42px; border-radius: 10px; background: var(--navy); align-items: center; justify-content: center; margin-left: auto; }
  .table-wrap { overflow: visible; border: 0; }
  table, thead, tbody, th, td, tr { display: block; min-width: 0; }
  thead { position: absolute; left: -9999px; }
  table tr {
    background: #0c1422; border: 1px solid var(--line); border-radius: 12px;
    margin-bottom: 8px; padding: 12px;
  }
  table td { border: 0; padding: 5px 0; }
  table td::before {
    content: attr(data-label);
    display: block; color: var(--lime); font-weight: 750; font-size: 12px;
  }
  .panel { padding: 18px 16px 24px; }
}
@media (max-width: 640px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .top-actions .btn-ghost { display: none; }
  .hero-banner { min-height: 220px; padding: 20px; }
}
