:root {
    --bg: #07090d;
    --bg-soft: #0b0f16;
    --panel: #151820;
    --panel-light: #1b1f29;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(93, 157, 255, 0.35);
    --text: #f5f7fb;
    --muted: #b8c0cf;
    --blue: #2f8cff;
    --blue-dark: #0e5ec8;
    --gold: #f7c76a;
    --green: #34d399;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at 50% 0, #101b2b 0, #07090d 34rem);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        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: 72px 72px;
    content: "";
    opacity: 0.35;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.page {
    min-height: 100vh;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(7, 9, 13, 0.88);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    font-weight: 900;
    text-transform: uppercase;
}

.brand img {
    width: 34px;
    height: 34px;
}

.brand span {
    font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.brand strong {
    color: var(--blue);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    color: var(--text);
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: currentColor;
    content: "";
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
}

.nav-list a:hover,
.nav-list a.is-active {
    background: rgba(47, 140, 255, 0.12);
    color: var(--text);
}

.main {
    padding: 28px 0 0;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 420px;
    margin-bottom: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 78% 48%, rgba(47, 140, 255, 0.22), transparent 24rem),
        linear-gradient(90deg, #071125 0%, #08101a 48%, #05070b 100%);
    box-shadow: var(--shadow);
}

.hero__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__image img {
    width: min(50vw, 520px);
    height: min(82%, 520px);
    object-fit: contain;
    opacity: 0.48;
    filter: saturate(1.08);
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 9, 13, 0.46), rgba(7, 9, 13, 0.42) 38%, rgba(7, 9, 13, 0.94) 76%),
        linear-gradient(0deg, rgba(7, 9, 13, 0.68), rgba(7, 9, 13, 0.06));
    content: "";
}

.hero__content {
    width: min(100%, 610px);
    margin-left: auto;
    padding: clamp(36px, 6vw, 72px);
}

.hero--centered {
    min-height: 500px;
}

.hero--centered::before {
    background:
        linear-gradient(90deg, rgba(7, 9, 13, 0.82), rgba(7, 9, 13, 0.44) 50%, rgba(7, 9, 13, 0.82)),
        linear-gradient(0deg, rgba(7, 9, 13, 0.72), rgba(7, 9, 13, 0.12));
}

.hero--centered .hero__image img {
    width: min(46vw, 500px);
    height: min(78%, 500px);
    opacity: 0.3;
}

.hero--centered .hero__content {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: clamp(44px, 6vw, 76px) clamp(20px, 5vw, 56px);
    text-align: center;
}

.hero--centered .eyebrow {
    justify-content: center;
}

.hero--centered h1 {
    max-width: none;
    font-size: clamp(2.5rem, 5.6vw, 4.7rem);
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.hero--centered .hero__text {
    margin-right: auto;
    margin-left: auto;
}

.hero--centered .hero__stats {
    max-width: 640px;
    margin-right: auto;
    margin-left: auto;
}

.hero--centered .hero__actions {
    justify-content: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 18px rgba(52, 211, 153, 0.8);
    content: "";
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.1;
}

h1 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 7vw, 5.25rem);
    font-weight: 950;
}

.hero__subtitle {
    margin-top: 12px;
    color: var(--text);
    font-size: clamp(1.25rem, 3vw, 2.1rem);
    font-weight: 900;
}

.hero__text {
    max-width: 48rem;
    margin-top: 18px;
    color: var(--muted);
    font-weight: 700;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 26px 0;
}

.stat-card,
.mini-card,
.game-card,
.review-card,
.step,
.question-card,
.promo-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.stat-card {
    padding: 15px;
}

.stat-card b {
    display: block;
    color: var(--blue);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.hero__actions,
.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--blue);
    color: #ffffff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(47, 140, 255, 0.32);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    background: #4aa3ff;
}

.button--ghost {
    border-color: rgba(47, 140, 255, 0.55);
    background: rgba(7, 9, 13, 0.62);
    box-shadow: none;
}

.button--ghost:hover {
    border-color: var(--blue);
    background: rgba(47, 140, 255, 0.12);
}

.hero--promo {
    min-height: 390px;
}

.hero--promo .hero__image img {
    width: min(54vw, 560px);
    height: min(78%, 520px);
    opacity: 0.24;
}

.hero--promo::before {
    background:
        linear-gradient(90deg, rgba(7, 9, 13, 0.82), rgba(7, 9, 13, 0.38) 46%, rgba(7, 9, 13, 0.84)),
        linear-gradient(0deg, rgba(7, 9, 13, 0.74), rgba(7, 9, 13, 0.18));
}

.hero__content--center {
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: clamp(30px, 4.2vw, 42px) clamp(20px, 5vw, 54px);
    text-align: center;
}

.hero-brand-mark {
    display: flex;
    justify-content: center;
    margin: 0 auto 12px;
}

.hero-brand-mark img {
    display: block;
    width: clamp(190px, 24vw, 285px);
    max-height: 58px;
    object-fit: contain;
}

.hero__content--center .eyebrow {
    justify-content: center;
}

.hero__content--center h1 {
    max-width: none;
    font-size: 2.75rem;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.hero__content--center .hero__text {
    margin-inline: auto;
    margin-top: 12px;
    color: #d8e3f5;
}

.promo-code-box {
    max-width: 860px;
    margin: 16px auto;
    padding: clamp(14px, 2vw, 16px);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgba(8, 45, 76, 0.76);
}

.promo-code-box p {
    color: #c8ddf8;
    font-weight: 900;
}

.promo-code-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
}

.promo-code-actions strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    min-height: 50px;
    padding: 12px 24px;
    border: 1px dashed #55c7ff;
    border-radius: 8px;
    color: #5bd0ff;
    font-size: clamp(1.35rem, 4vw, 2rem);
    font-weight: 950;
    letter-spacing: 0.08em;
}

.promo-code-actions .button {
    min-height: 44px;
}

.hero-main-cta {
    min-width: 210px;
}

.bonus-details {
    margin: 0 0 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(21, 24, 32, 0.98), rgba(12, 16, 24, 0.98));
    box-shadow: var(--shadow);
}

.bonus-details h2 {
    padding: 20px 24px 4px;
    font-size: clamp(1.25rem, 3vw, 1.7rem);
    font-weight: 950;
}

.bonus-details__row {
    display: grid;
    grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
    gap: 18px;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.bonus-details__row:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.bonus-details__row span,
.bonus-details__row strong {
    min-width: 0;
}

.bonus-details__row span {
    color: var(--text);
    font-weight: 800;
}

.bonus-details__row strong {
    color: #ffffff;
    font-weight: 900;
}

.section {
    margin: 28px 0;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(28, 32, 42, 0.96), rgba(17, 20, 27, 0.96));
    box-shadow: var(--shadow);
}

.section--split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 24px;
    align-items: center;
}

.section__header {
    max-width: 780px;
    margin: 0 auto 24px;
    text-align: center;
}

.section__header h2 {
    font-size: clamp(1.7rem, 4vw, 2.65rem);
    font-weight: 950;
    text-transform: uppercase;
}

.section__header p {
    margin-top: 12px;
    color: var(--muted);
    font-weight: 700;
}

.section__header--left {
    margin-left: 0;
    text-align: left;
}

.mt-18 {
    margin-top: 18px;
}

.text-blue {
    color: var(--blue);
}

.grid {
    display: grid;
    gap: 16px;
}

.grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-card,
.review-card,
.question-card {
    padding: 18px;
}

.mini-card h3,
.review-card h3,
.question-card h3 {
    font-size: 1.05rem;
    font-weight: 950;
    text-transform: uppercase;
}

.mini-card p,
.review-card p,
.question-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.game-card {
    overflow: hidden;
}

.game-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.game-card__body {
    padding: 18px;
}

.game-card__body h3 {
    font-size: 1.15rem;
    font-weight: 950;
    text-transform: uppercase;
}

.game-card__body p {
    min-height: 58px;
    margin: 8px 0 16px;
    color: var(--muted);
    font-weight: 700;
}

.steps {
    display: grid;
    gap: 12px;
}

.step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    padding: 15px;
}

.step__number {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(47, 140, 255, 0.22);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
}

.step h3 {
    font-size: 1rem;
}

.step p {
    color: var(--muted);
    font-weight: 700;
}

.brand-copy {
    color: var(--muted);
    font-weight: 700;
}

.brand-copy p + p {
    margin-top: 12px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.tag-cloud span {
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid rgba(47, 140, 255, 0.38);
    border-radius: 999px;
    background: rgba(47, 140, 255, 0.1);
    color: #dbeafe;
    font-size: 0.82rem;
    font-weight: 800;
}

.promo-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
}

.promo-panel strong {
    color: var(--blue);
    font-size: clamp(1.6rem, 4vw, 2.55rem);
}

.promo-panel p {
    color: var(--muted);
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.faq-list summary {
    padding: 16px 18px;
    font-weight: 900;
    cursor: pointer;
}

.faq-list details p {
    padding: 0 18px 18px;
    color: var(--muted);
    font-weight: 700;
}

.rating {
    display: inline-flex;
    gap: 3px;
    margin-bottom: 10px;
    color: var(--gold);
    font-weight: 900;
}

.site-footer {
    margin-top: 48px;
    padding: 34px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.24);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(28, 32, 42, 0.96), rgba(17, 20, 27, 0.96));
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 260px) minmax(280px, 420px);
    gap: 18px;
    align-items: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    max-width: 190px;
}

.footer-brand img {
    display: block;
    width: 100%;
    max-height: 38px;
    object-fit: contain;
}

.copyright {
    max-width: 280px;
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner h2 {
    margin-bottom: 12px;
    font-size: 0.98rem;
    text-transform: uppercase;
}

.footer-inner a,
.footer-inner li,
.footer-inner p {
    color: var(--muted);
    font-weight: 700;
}

.footer-inner li + li {
    margin-top: 7px;
}

.notice {
    max-width: 320px;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.loader-page {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 24px;
    background: radial-gradient(circle at 50% 20%, #13233a 0, #07090d 36rem);
    text-align: center;
}

.loader-card {
    width: min(100%, 420px);
    padding: 34px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgba(18, 22, 31, 0.92);
    box-shadow: var(--shadow);
}

.loader-ring {
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    border: 7px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin 900ms linear infinite;
}

.loader-card h1 {
    max-width: none;
    font-size: clamp(1.5rem, 5vw, 2rem);
}

.loader-card p {
    margin-top: 10px;
    color: var(--muted);
    font-weight: 800;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 16px;
        left: 16px;
        display: none;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #0b0f16;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: block;
    }

    .nav-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .nav-list a {
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.035);
    }

    .hero {
        min-height: auto;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(7, 9, 13, 0.1), rgba(7, 9, 13, 0.96) 46%),
            linear-gradient(90deg, rgba(7, 9, 13, 0.3), rgba(7, 9, 13, 0.78));
    }

    .hero__image {
        align-items: flex-start;
        padding-top: 18px;
    }

    .hero__image img {
        width: min(78vw, 360px);
        height: 240px;
        opacity: 0.44;
    }

    .hero__content {
        margin-left: 0;
        padding-top: 270px;
    }

    .hero--centered .hero__image {
        align-items: center;
        padding-top: 0;
    }

    .hero--centered .hero__image img {
        width: min(72vw, 380px);
        height: min(70%, 380px);
        opacity: 0.24;
    }

    .hero--centered .hero__content {
        width: min(100%, 760px);
        margin: 0 auto;
        padding: 46px 22px;
        text-align: center;
    }

    .hero--centered h1 {
        max-width: none;
        font-size: 3.2rem;
    }

    .hero--promo .hero__image {
        align-items: center;
        padding-top: 0;
    }

    .hero--promo .hero__image img {
        width: min(76vw, 420px);
        height: min(74%, 420px);
        opacity: 0.2;
    }

    .hero--promo .hero__content--center {
        padding: 46px 22px;
    }

    h1 {
        max-width: 12ch;
    }

    .hero__content--center h1 {
        max-width: none;
        font-size: 2.3rem;
    }

    .grid--4,
    .grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section--split {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    }

    .footer-top .notice {
        grid-column: 1 / -1;
        max-width: 520px;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .header-inner {
        min-height: 68px;
    }

    .brand {
        max-width: calc(100vw - 88px);
    }

    .brand span {
        font-size: 0.98rem;
    }

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

    .hero__content {
        padding: 238px 18px 26px;
    }

    .hero--centered {
        min-height: auto;
    }

    .hero--centered .hero__content {
        padding: 36px 16px 28px;
    }

    .hero--centered h1 {
        font-size: 2.25rem;
        line-height: 1.12;
    }

    .hero--centered .hero__text {
        margin-top: 14px;
    }

    .hero--promo .hero__content--center {
        padding: 34px 14px 24px;
    }

    .hero-brand-mark {
        margin-bottom: 10px;
    }

    .hero-brand-mark img {
        width: min(68vw, 230px);
        max-height: 48px;
    }

    .hero__content--center h1 {
        font-size: 1.78rem;
        line-height: 1.14;
    }

    .promo-code-box {
        margin: 22px auto;
    }

    .promo-code-actions strong {
        width: 100%;
    }

    .bonus-details h2 {
        padding: 18px 16px 2px;
    }

    .bonus-details__row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 14px 16px;
    }

    .hero__actions,
    .actions,
    .promo-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .section {
        padding: 20px 14px;
    }

    .section__header {
        text-align: left;
    }

    .step {
        grid-template-columns: 34px 1fr;
        padding: 13px;
    }

    .footer-inner {
        padding: 18px;
    }

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

    .footer-top {
        gap: 12px;
        align-items: start;
    }

    .footer-brand {
        max-width: 170px;
    }

    .footer-top .notice {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}
