:root {
    --bg: #0d0d0d;
    --bg-soft: #141414;
    --card: #1c1c1c;
    --card-hover: #222222;
    --text: #f5f5f5;
    --muted: #9e9e9e;
    --muted-soft: #6e6e6e;
    --line: #282828;
    --brand: #f8ff13;
    --brand-dark: #d8df00;
    --max: 1180px;
    --radius: 14px;
    --radius-sm: 9px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--brand);
    color: #0d0d0d;
    font-weight: 700;
}
.skip-link:focus { top: 16px; }

/* ── Layout ─────────────────────────────────────────────── */

.container,
.top-note .inner,
.nav {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
}

/* ── Top bar ─────────────────────────────────────────────── */

.top-note {
    background: #0a0a0a;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.top-note .inner {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 9px 0;
    text-align: center;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 26px;
    border-radius: 999px;
    background: var(--brand);
    color: #0d0d0d;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
}

/* ── Header ─────────────────────────────────────────────── */

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(13, 13, 13, 0.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.logo-mark img {
    width: 36px;
    height: 36px;
    display: block;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--muted);
    transition: color 0.18s ease;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }

/* ── Typography ─────────────────────────────────────────── */

h1, h2, h3 {
    margin: 0 0 16px;
    color: var(--text);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

h1 { font-size: clamp(36px, 5.2vw, 60px); }
h2 { font-size: clamp(26px, 3.4vw, 42px); }
h3 { font-size: 20px; }

p { margin: 0 0 16px; color: var(--muted); }
strong { color: var(--text); }

.lead {
    color: #c2c2c2;
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.55;
    margin: 0 0 16px;
}

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    cursor: pointer;
}
.btn:hover { background: #242424; border-color: #3a3a3a; }

.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
    color: #0d0d0d;
}
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #0d0d0d; }

.btn-ghost { background: transparent; }

/* ── Hero ────────────────────────────────────────────────── */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 580px;
    padding: 80px 0 64px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(248, 255, 19, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 20% 100%, rgba(248, 255, 19, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 100%, rgba(248, 255, 19, 0.03) 0%, transparent 60%),
        linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    width: 100%;
    padding: 0 16px;
}

.hero-label {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero h1 { margin-bottom: 20px; }

.hero .lead {
    max-width: 600px;
    margin: 0 auto 28px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-age {
    display: inline-block;
    margin-top: 24px;
    padding: 5px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-soft);
    font-size: 12px;
}

/* ── Inner page hero (smaller) ───────────────────────────── */

.hero-inner {
    min-height: 280px;
    padding: 56px 0 48px;
}

/* ── Breadcrumb ──────────────────────────────────────────── */

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--muted-soft);
    font-size: 13px;
    margin-bottom: 16px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--muted-soft); }

/* ── Sections ────────────────────────────────────────────── */

section { padding: 60px 0; }

.section-head { max-width: 720px; margin-bottom: 32px; }
.section-head p { font-size: 17px; }

/* ── Grids ───────────────────────────────────────────────── */

.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Cards ───────────────────────────────────────────────── */

.card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    transition: background 0.18s ease, border-color 0.18s ease;
}
.card:hover { background: var(--card-hover); border-color: #363636; }

.card small {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.card h3 { margin-bottom: 10px; }

/* ── Accent-border card ──────────────────────────────────── */

.card-accent {
    padding: 28px 28px 28px 32px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--brand);
    border-radius: var(--radius);
    background: var(--card);
}

.card-accent-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Two-column explainer ────────────────────────────────── */

.explainer {
    display: grid;
    grid-template-columns: 0.38fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 32px 0;
    border-top: 1px solid var(--line);
}
.explainer:first-of-type { border-top: none; padding-top: 0; }

.explainer-label {
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 10px;
}

.explainer h3 { font-size: 22px; margin-bottom: 0; }

/* ── Bonus mechanics block ───────────────────────────────── */

.bonus-block {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.bonus-block-head {
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}
.bonus-block-head h3 { margin: 0; font-size: 18px; }

.bonus-row {
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    gap: 20px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    align-items: start;
}
.bonus-row:last-child { border-bottom: none; }

.bonus-term {
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.bonus-def {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ── List ────────────────────────────────────────────────── */

.list {
    margin: 10px 0 0;
    padding-left: 20px;
    color: var(--muted);
}
.list li { margin: 7px 0; line-height: 1.55; }

/* ── Checklist ───────────────────────────────────────────── */

.checklist {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}
.checklist li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
    content: "✓";
    color: var(--brand);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Warning list ────────────────────────────────────────── */

.warn-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}
.warn-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}
.warn-list li:last-child { border-bottom: none; }
.warn-list li::before {
    content: "⚠";
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Notice ──────────────────────────────────────────────── */

.notice {
    padding: 20px 24px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--brand);
    border-radius: var(--radius);
    background: var(--card);
}
.notice p:last-child { margin-bottom: 0; }

/* ── Responsible gaming ──────────────────────────────────── */

.rg-notice {
    padding: 18px 22px;
    border: 1px solid #2a2200;
    border-left: 3px solid #f59e0b;
    border-radius: var(--radius);
    background: #111000;
}
.rg-notice p { color: #a37b00; margin: 0; font-size: 14px; }
.rg-notice a { color: #f59e0b; text-decoration: underline; }

/* ── Comparison table ────────────────────────────────────── */

.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.compare-col { padding: 0; }
.compare-col:first-child { border-right: 1px solid var(--line); }

.compare-head {
    padding: 16px 20px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}

.compare-row {
    padding: 13px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}
.compare-row:last-child { border-bottom: none; }

/* ── Payment table ───────────────────────────────────────── */

.pay-inline{display:flex;flex-wrap:wrap;gap:10px;margin:14px 0}
.pay-inline img{height:28px;width:auto}

.pay-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 14px;
}
.pay-table th {
    padding: 13px 16px;
    background: var(--bg-soft);
    color: var(--muted-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
.pay-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    vertical-align: top;
}
.pay-table tr:last-child td { border-bottom: none; }
.pay-table td:first-child { color: var(--text); font-weight: 600; }

/* ── Steps ───────────────────────────────────────────────── */

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    counter-increment: step;
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    color: var(--brand);
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}
.steps li strong { display: block; color: var(--text); margin-bottom: 4px; }
.steps li p { margin: 0; font-size: 14px; color: var(--muted); }

/* ── FAQ ─────────────────────────────────────────────────── */

.faq details {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--card);
}
.faq details + details { margin-top: 10px; }
.faq summary {
    cursor: pointer;
    color: var(--text);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq summary::after {
    content: "+";
    color: var(--brand);
    font-size: 20px;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] { background: var(--card-hover); }
.faq details p { margin: 14px 0 0; font-size: 15px; }

/* ── Footer ──────────────────────────────────────────────── */

footer {
    padding: 44px 0;
    border-top: 1px solid var(--line);
    background: #0a0a0a;
    color: var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 0.8fr);
    gap: 28px;
    margin-bottom: 32px;
}

footer h3 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-soft);
    margin: 0 0 14px;
}

.footer-links {
    display: grid;
    gap: 9px;
    font-size: 14px;
}
.footer-links a { color: var(--muted); transition: color 0.18s; }
.footer-links a:hover { color: var(--text); }

.footer-desc { color: var(--muted); font-size: 14px; margin: 8px 0 0; line-height: 1.6; }

.pay-crypto-cards {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--line);
}

.pay-crypto-cards li { display: flex; }

.pay-crypto-cards img {
    height: 26px;
    width: auto;
}

.legal {
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted-soft);
    font-size: 13px;
    line-height: 1.7;
}

/* ── Performance ─────────────────────────────────────────── */

main > section:not(.hero):not(.hero-inner) {
    content-visibility: auto;
    contain-intrinsic-size: 500px;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 880px) {
    .nav { flex-direction: column; align-items: flex-start; gap: 12px; }
    .nav-links { gap: 12px; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .explainer { grid-template-columns: 1fr; gap: 16px; }
    .card-accent-inner { grid-template-columns: 1fr; gap: 24px; }
    .compare { grid-template-columns: 1fr; }
    .compare-col:first-child { border-right: none; border-bottom: 1px solid var(--line); }
    .bonus-row { grid-template-columns: 1fr; gap: 6px; }

    section { padding: 44px 0; }

    .hero { min-height: 480px; padding: 64px 0 52px; }
    .hero-inner { min-height: 200px; padding: 44px 0 36px; }
}

@media (max-width: 640px) {
    .container, .top-note .inner, .nav { width: min(100% - 24px, var(--max)); }
    .top-note .inner { align-items: flex-start; text-align: left; }

    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 320px; }

    .footer-grid { grid-template-columns: 1fr; }

    .pay-table { font-size: 13px; }
    .pay-table th, .pay-table td { padding: 10px 12px; }
}

@media (max-width: 420px) {
    h1 { font-size: clamp(30px, 9vw, 38px); }
    .hero { min-height: 440px; }
}

.nav-links a.nav-off { color: var(--brand); font-weight: 700; }
.nav-links a.nav-off:hover { color: var(--brand-dark); }
