:root {
    --bg: #06141f;
    --bg-soft: #0b1d2d;
    --surface: rgba(16, 39, 56, 0.82);
    --surface-strong: rgba(18, 46, 66, 0.96);
    --line: rgba(159, 192, 214, 0.16);
    --text: #eff8ff;
    --muted: #9fc0d6;
    --primary: #61ead7;
    --accent: #54caca;
    --highlight: #fdf100;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    --radius: 26px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(84, 202, 202, 0.12), transparent 30%),
        radial-gradient(circle at right center, rgba(253, 241, 0, 0.08), transparent 25%),
        linear-gradient(180deg, #06141f 0%, #081824 55%, #091520 100%);
}

body.nav-open {
    overflow: hidden;
}

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

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

strong {
    color: var(--text);
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 40;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--highlight);
    color: #081824;
    font-weight: 700;
}

.skip-link:focus {
    top: 16px;
}

.site-bg {
    position: fixed;
    inset: auto;
    z-index: 0;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.75;
}

.site-bg--one {
    width: 280px;
    height: 280px;
    top: 12%;
    left: -72px;
    background: radial-gradient(circle, rgba(97, 234, 215, 0.24), transparent 70%);
}

.site-bg--two {
    width: 380px;
    height: 380px;
    right: -120px;
    bottom: 8%;
    background: radial-gradient(circle, rgba(253, 241, 0, 0.18), transparent 72%);
}

.section {
    position: relative;
    z-index: 1;
    padding: 72px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid var(--line);
    background: rgba(6, 20, 31, 0.72);
    backdrop-filter: blur(18px);
}

.topbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: clamp(176px, 22vw, 240px);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-nav a {
    color: var(--muted);
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
    transform: translateY(-1px);
}

.nav-cta {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--highlight), #ffcb4b);
    color: #081824 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.hero {
    padding-top: 54px;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 32px;
    align-items: stretch;
}

.hero__content,
.hero-card {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.94rem;
}

.breadcrumb a {
    color: var(--text);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 8px 14px;
    border: 1px solid rgba(253, 241, 0, 0.2);
    border-radius: 999px;
    background: rgba(253, 241, 0, 0.08);
    color: #fff7a8;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0 0 14px;
    line-height: 1.12;
}

h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
    font-size: 1.2rem;
}

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

.hero__lead {
    max-width: 64ch;
    font-size: 1.08rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible,
.sticky-cta:hover,
.sticky-cta:focus-visible {
    transform: translateY(-2px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--highlight), #ffcb4b);
    color: #081824;
    box-shadow: 0 20px 40px rgba(253, 241, 0, 0.16);
}

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

.btn--full {
    width: 100%;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero__meta span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 0.92rem;
}

.keyword-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.keyword-pills span,
.feature-chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-weight: 600;
}

.keyword-pills span {
    padding: 10px 14px;
    color: #d7f9f4;
}

.card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(18, 46, 66, 0.9), rgba(10, 27, 40, 0.94));
    box-shadow: var(--shadow);
}

.hero-card {
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(97, 234, 215, 0.22), transparent 70%);
}

.card__label {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(97, 234, 215, 0.1);
    color: #bffff5;
    font-size: 0.88rem;
    font-weight: 700;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0 24px;
}

.stat-card {
    min-height: 112px;
    padding: 18px 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

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

.hero-card__block {
    position: relative;
    z-index: 1;
}

.hero-card__block h2 {
    margin-top: 0;
    font-size: 1.45rem;
}

.hero-card__offer {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 1;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffffff 0 22%, var(--primary) 23% 100%);
    box-shadow: 0 0 0 4px rgba(97, 234, 215, 0.14);
}

.feature-strip {
    padding-top: 0;
}

.feature-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.feature-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 66px;
    padding: 16px;
    text-align: center;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.card-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.section--split {
    padding-top: 16px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.split-layout--reverse {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.narrative {
    padding-top: 8px;
}

.card--accent {
    background: linear-gradient(180deg, rgba(253, 241, 0, 0.11), rgba(12, 31, 46, 0.94));
}

.card--glow {
    background: linear-gradient(180deg, rgba(97, 234, 215, 0.14), rgba(12, 31, 46, 0.94));
}

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0 20px;
}

.faq-item summary {
    position: relative;
    padding: 20px 34px 20px 0;
    list-style: none;
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 0 0 20px;
}

.cta-band__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border: 1px solid rgba(253, 241, 0, 0.16);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(253, 241, 0, 0.08), rgba(97, 234, 215, 0.08));
    box-shadow: var(--shadow);
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.site-footer {
    position: relative;
    z-index: 1;
    padding: 32px 0 96px;
    border-top: 1px solid var(--line);
    background: rgba(6, 20, 31, 0.72);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding-bottom: 24px;
}

.footer__logo {
    width: min(220px, 100%);
    margin-bottom: 16px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.footer__bottom p,
.footer__bottom a {
    color: var(--muted);
}

.support-link-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-link-card__label {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(97, 234, 215, 0.1);
    color: #bffff5;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
}

.support-link-card__link {
    margin-top: auto;
    color: #fff7a8;
    font-weight: 800;
}

.support-link-card__link:hover,
.support-link-card__link:focus-visible {
    color: var(--highlight);
}

/* Top bonus boxes - conversion */
.bonus-boxes {
    padding-top: 0;
}

.bonus-boxes__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.bonus-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 26px;
    border: 1px solid rgba(253, 241, 0, 0.2);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(253, 241, 0, 0.1), rgba(12, 31, 46, 0.95));
    box-shadow: var(--shadow);
}

.bonus-box__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(253, 241, 0, 0.25);
    color: #081824;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bonus-box h3 {
    margin: 0;
    font-size: 1.35rem;
    color: var(--text);
}

.bonus-box p {
    margin: 0;
    flex: 1;
    color: var(--muted);
    font-size: 0.98rem;
}

/* Why players join */
.why-join__list {
    max-width: 680px;
    margin: 0 0 28px;
    padding: 0 0 0 24px;
    list-style: none;
}

.why-join__list li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.55;
}

.why-join__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(97, 234, 215, 0.2);
}

.why-join__cta {
    margin-top: 8px;
}

/* Popular games */
.popular-games__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.game-card {
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(18, 46, 66, 0.9), rgba(10, 27, 40, 0.94));
    border: 1px solid var(--line);
}

.game-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: var(--highlight);
}

.game-card p {
    margin: 0;
    font-size: 0.94rem;
    color: var(--muted);
}

.popular-games__cta {
    text-align: center;
}

.cta-band--alt .cta-band__wrap {
    background: linear-gradient(135deg, rgba(97, 234, 215, 0.08), rgba(253, 241, 0, 0.06));
    border-color: rgba(97, 234, 215, 0.2);
}

.sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 35;
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--highlight), #ffcb4b);
    color: #081824;
    font-weight: 900;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

@media (max-width: 960px) {
    .hero__grid,
    .split-layout,
    .split-layout--reverse,
    .card-grid--three,
    .card-grid--two,
    .card-grid--four,
    .feature-strip__grid,
    .footer__grid,
    .cta-band__wrap,
    .bonus-boxes__grid,
    .popular-games__grid {
        grid-template-columns: 1fr;
    }

    .cta-band__wrap,
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(8, 24, 36, 0.98);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 10px 4px;
    }

    .nav-cta {
        width: 100%;
        margin-top: 6px;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 56px 0;
    }

    .bonus-box,
    .game-card {
        padding: 20px;
    }

    .popular-games__grid {
        gap: 16px;
    }

    h1 {
        max-width: none;
        font-size: clamp(2.2rem, 10vw, 3.3rem);
    }

    h2 {
        font-size: clamp(1.65rem, 7vw, 2.4rem);
    }

    .card,
    .cta-band__wrap {
        padding: 22px;
    }

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

    .hero__actions,
    .cta-band__actions {
        width: 100%;
    }

    .hero__actions .btn,
    .cta-band__actions .btn {
        width: 100%;
    }

    .sticky-cta {
        display: inline-flex;
    }

    .site-footer {
        padding-bottom: 116px;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
