:root {
    --bg: #090510;
    --bg2: #11081b;
    --panel: #151020;
    --panel2: #1b1229;
    --text: #f8f5fb;
    --muted: #b9adc7;
    --line: rgba(255,255,255,.10);
    --purple: #a20cff;
    --purple2: #6d20ff;
    --cyan: #56f0d0;
    --shadow: 0 18px 60px rgba(0,0,0,.35);
    --r: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at 15% -10%,rgba(132,20,255,.24),transparent 34rem),var(--bg);
    color: var(--text);
    font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
}

.wrap {
    width: min(1180px,calc(100% - 36px));
    margin: auto;
}

.skip {
    position: absolute;
    left: -9999px;
}

.skip:focus {
    left: 20px;
    top: 20px;
    z-index: 100;
    background: #fff;
    color: #000;
    padding: 8px 12px;
}

.site-head {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(9,5,16,.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.head-inner {
    height: 74px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 850;
    letter-spacing: -.02em;
}

.brand img {
    width: 42px;
    height: auto;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    gap: 5px;
}

.desktop-nav a {
    padding: 8px 10px;
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    border-radius: 10px;
}

.desktop-nav a:hover,.desktop-nav a.active {
    color: #fff;
    background: rgba(255,255,255,.06);
}

.head-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--line);
    color: #fff;
    border-radius: 12px;
    padding: 8px 11px;
    font-size: 20px;
}

.mobile-nav {
    border-top: 1px solid var(--line);
    padding: 12px 18px 18px;
}

.mobile-nav a {
    display: block;
    padding: 10px 8px;
    text-decoration: none;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .2s transform,.2s background;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg,var(--purple),var(--purple2));
    box-shadow: 0 8px 30px rgba(133,20,255,.28);
}

.btn-secondary {
    border-color: var(--line);
    background: rgba(255,255,255,.04);
}

.btn-small {
    min-height: 40px;
    padding: 0 16px;
}

.hero {
    padding: 62px 0 48px;
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: var(--cyan);
    margin-bottom: 12px;
}

.eyebrow:before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--cyan);
}

h1,h2,h3 {
    line-height: 1.08;
    margin: 0 0 16px;
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(42px,6vw,76px);
    max-width: 900px;
}

h2 {
    font-size: clamp(30px,4vw,48px);
}

h3 {
    font-size: 20px;
}

.hero-lead,.section-lead {
    color: var(--muted);
    font-size: 18px;
    max-width: 760px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 28px;
}

.hero-facts div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
}

.hero-facts strong,.hero-facts span {
    display: block;
}

.hero-facts strong {
    font-size: 18px;
}

.hero-facts span {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

.hero-panel {
    position: relative;
    min-height: 430px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: linear-gradient(160deg,rgba(164,13,255,.16),rgba(25,12,38,.86));
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 28px;
}

.hero-panel:before,.hero-panel:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
}

.hero-panel:before {
    width: 180px;
    height: 180px;
    background: rgba(109,32,255,.35);
    left: -60px;
    top: 40px;
}

.hero-panel:after {
    width: 100px;
    height: 100px;
    background: rgba(206,22,255,.55);
    right: -20px;
    top: 120px;
}

.hero-mark {
    height: 220px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mark img {
    width: min(230px,70%);
    height: auto;
    filter: drop-shadow(0 22px 45px rgba(0,0,0,.5));
}

.signal {
    position: relative;
    z-index: 2;
    margin: 4px auto 22px;
    width: max-content;
    max-width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(86,240,208,.25);
    border-radius: 999px;
    background: rgba(5,25,22,.72);
    color: #d9fff8;
    font-size: 12px;
}

.signal span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    margin-right: 7px;
    box-shadow: 0 0 14px var(--cyan);
}

.mini-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mini-grid a {
    display: block;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(8,5,14,.62);
    text-decoration: none;
}

.mini-grid b,.mini-grid span {
    display: block;
}

.mini-grid span {
    font-size: 11px;
    color: var(--muted);
    margin-top: 3px;
}

.content-block {
    padding: 70px 0;
    border-bottom: 1px solid var(--line);
}

.block-alt {
    background: rgba(255,255,255,.018);
}

.prose {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 34px;
}

.prose p {
    margin: 0;
    color: #ddd5e5;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 28px;
}

.card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: linear-gradient(160deg,rgba(255,255,255,.05),rgba(255,255,255,.025));
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.card p {
    margin: 0;
    color: var(--muted);
}

.card a {
    color: #e5c6ff;
}

.table-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--r);
    margin-top: 26px;
    background: rgba(255,255,255,.025);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

th,td {
    text-align: left;
    padding: 15px 16px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #c9bbd8;
    background: rgba(255,255,255,.035);
}

td {
    color: #e8e0ef;
}

tr:last-child td {
    border-bottom: 0;
}

.steps {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.steps li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
}

.steps li>span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg,var(--purple),var(--purple2));
    font-weight: 900;
}

.steps h3 {
    margin-bottom: 6px;
}

.steps p {
    margin: 0;
    color: var(--muted);
}

.checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.checklist li {
    position: relative;
    padding: 16px 16px 16px 46px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--cyan);
    font-weight: 900;
}

.callout {
    padding: 24px;
    border: 1px solid rgba(164,13,255,.32);
    border-radius: var(--r);
    background: linear-gradient(135deg,rgba(164,13,255,.10),rgba(86,240,208,.04));
    max-width: 900px;
}

.callout strong {
    color: #e5c2ff;
}

.callout p {
    margin: 8px 0 0;
    color: #ded3e7;
}

.faq {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.faq details {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
    padding: 0 18px;
}

.faq summary {
    cursor: pointer;
    font-weight: 750;
    padding: 17px 0;
}

.faq details div {
    color: var(--muted);
    padding: 0 0 18px;
}

.section-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.searchbox {
    display: grid;
    gap: 7px;
    min-width: 280px;
    color: var(--muted);
    font-size: 12px;
}

.searchbox input {
    background: #100a18;
    border: 1px solid var(--line);
    color: #fff;
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 14px;
    margin-top: 26px;
}

.game-card {
    border: 1px solid var(--line);
    border-radius: 17px;
    overflow: hidden;
    background: var(--panel);
}

.game-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.28/1;
    object-fit: cover;
    background: #1b1028;
}

.game-card>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 11px;
}

.game-card strong {
    font-size: 12px;
    line-height: 1.25;
}

.game-card a {
    font-size: 11px;
    color: #d8b9f4;
}

.provider-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px;
}

.provider-pills span {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.03);
    color: #ded3e7;
    font-size: 13px;
}

.center {
    text-align: center;
    margin-top: 28px;
}

.site-foot {
    padding: 55px 0 25px;
    background: #07040b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .7fr 1fr;
    gap: 34px;
}

.footer-grid>div {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-grid p,.footer-grid a {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #fff;
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.foot-brand img {
    height: auto;
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    margin-top: 34px;
    padding-top: 20px;
    color: var(--muted);
    font-size: 13px;
}

.age {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
}

@media (max-width:980px) {
    .desktop-nav {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-panel {
        min-height: 340px;
    }
    .cards {
        grid-template-columns: 1fr 1fr;
    }
    .game-grid {
        grid-template-columns: repeat(4,1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .prose {
        grid-template-columns: 1fr;
    }
}

@media (max-width:640px) {
    .wrap {
        width: min(100% - 24px,1180px);
    }
    .site-head .brand span {
        display: none;
    }
    .head-inner {
        height: 64px;
    }
    .hero {
        padding: 38px 0 34px;
    }
    .hero-grid {
        gap: 28px;
    }
    .hero-panel {
        min-height: 280px;
        padding: 18px;
    }
    .hero-mark {
        height: 130px;
    }
    .hero-mark img {
        width: 130px;
    }
    .signal {
        font-size: 10px;
    }
    .mini-grid {
        gap: 8px;
    }
    .mini-grid a {
        padding: 10px;
    }
    .hero-facts {
        grid-template-columns: 1fr 1fr;
    }
    .hero-facts div:last-child {
        grid-column: 1/-1;
    }
    .content-block {
        padding: 52px 0;
    }
    .cards,.checklist {
        grid-template-columns: 1fr;
    }
    .section-row {
        display: block;
    }
    .searchbox {
        min-width: 0;
        margin-top: 22px;
    }
    .game-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .head-actions .btn {
        display: none;
    }
    h1 {
        font-size: 42px;
    }
    .hero-lead,.section-lead {
        font-size: 16px;
    }
}
