:root {
    --bg: #07060f;
    --bg-2: #0d0a1f;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text: #f4f1ff;
    --text-dim: #a59fc7;
    --text-mute: #6f6a8c;
    --gold: #ffd24c;
    --gold-2: #ff9a3c;
    --pink: #ff2d8a;
    --purple: #7c3aed;
    --cyan: #22d3ee;
    --green: #22c55e;
    --grad-primary: linear-gradient(135deg, #ff2d8a 0%, #7c3aed 50%, #22d3ee 100%);
    --grad-gold: linear-gradient(135deg, #ffd24c 0%, #ff9a3c 50%, #ff2d8a 100%);
    --radius: 18px;
    --radius-lg: 28px;
    --shadow-card: 0 30px 60px -25px rgba(124, 58, 237, 0.4);
    --shadow-glow: 0 0 40px rgba(255, 45, 138, 0.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

img, svg {
    display: block;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ============ ФОН ============ */
.bg-gradient {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(1200px 800px at 80% -10%, rgba(255, 45, 138, 0.18), transparent 60%),
        radial-gradient(1000px 700px at -10% 30%, rgba(124, 58, 237, 0.22), transparent 60%),
        radial-gradient(800px 600px at 50% 100%, rgba(34, 211, 238, 0.12), transparent 60%),
        linear-gradient(180deg, #07060f 0%, #0a0814 100%);
    z-index: -3;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        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: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 50%, transparent 100%);
    z-index: -2;
}

.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    animation: float 18s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--pink);
    top: -120px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--purple);
    top: 30%;
    left: -200px;
    animation-delay: -6s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--cyan);
    bottom: -100px;
    right: 30%;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 40px) scale(.95); }
}

/* ============ HEADER ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 8, 20, 0.65);
    border-bottom: 1px solid var(--border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.logo__mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--grad-gold);
    color: #1a0f00;
    display: grid;
    place-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    box-shadow: 0 8px 24px -8px rgba(255, 154, 60, 0.6);
    transition: transform .3s ease;
}

.logo:hover .logo__mark {
    transform: rotate(-8deg) scale(1.05);
}

.logo__text em {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

.nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 24px;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dim);
    position: relative;
    padding: 6px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

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

.nav a:hover::after {
    transform: scaleX(1);
}

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

.burger {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    transition: .3s;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .25s cubic-bezier(.2, .8, .2, 1);
    border: 1px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn--lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 14px;
}

.btn--primary {
    background: var(--grad-gold);
    color: #1a0f00;
    box-shadow: 0 14px 36px -14px rgba(255, 154, 60, 0.65);
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .8s ease;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px -16px rgba(255, 154, 60, 0.9);
}

.btn--primary:hover::before {
    transform: translateX(100%);
}

.btn--outline {
    background: transparent;
    border-color: var(--border-strong);
    color: var(--text);
    backdrop-filter: blur(10px);
}

.btn--outline:hover {
    border-color: var(--gold);
    background: rgba(255, 210, 76, 0.06);
    color: var(--gold);
}

.btn--ghost {
    background: transparent;
    color: var(--text-dim);
}

.btn--ghost:hover {
    color: var(--text);
    background: var(--surface);
}

/* ============ HERO ============ */
.hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 210, 76, 0.08);
    border: 1px solid rgba(255, 210, 76, 0.18);
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero__badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
}

.hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.hero__title-row {
    display: block;
    font-size: clamp(64px, 9vw, 124px);
}

.hero__title-row--accent {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero__title-sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 16px;
}

.hero__desc {
    font-size: 17px;
    color: var(--text-dim);
    margin-bottom: 32px;
    max-width: 560px;
    line-height: 1.7;
}

.hero__desc strong {
    color: inherit;
    font-weight: inherit;
}

.hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero__stats {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero__stat-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
}

.hero__stat-label {
    font-size: 12px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
    display: block;
}

/* ============ HERO VISUAL ============ */
.hero__visual {
    position: relative;
    height: 540px;
    perspective: 1200px;
}

.card-stack {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 320px;
}

.card {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(160deg, #fff 0%, #f0f0f5 100%);
    color: #0a0a14;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow:
        0 30px 60px -20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    font-family: 'Bebas Neue', sans-serif;
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
}

.card--1 {
    transform: rotate(-14deg) translate(-90px, 20px);
    animation-delay: 0s;
}

.card--2 {
    transform: rotate(0deg) translate(0, -20px);
    z-index: 2;
    animation-delay: -2s;
}

.card--3 {
    transform: rotate(14deg) translate(90px, 20px);
    animation-delay: -4s;
}

@keyframes cardFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -14px; }
}

.card__suit {
    font-size: 22px;
    align-self: flex-start;
}

.card__suit--bottom {
    align-self: flex-end;
    transform: rotate(180deg);
}

.card__suit--red {
    color: #d4314c;
}

.card__big {
    font-size: 120px;
    line-height: 1;
    background: linear-gradient(180deg, #0a0a14, #4a4a6e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card__big--red {
    background: linear-gradient(180deg, #d4314c, #ff6a8c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coins {
    position: absolute;
    inset: 0;
}

.coin {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff5c8, #ffd24c 40%, #c98e1f 100%);
    color: #6b3e00;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 22px;
    box-shadow:
        0 12px 24px -6px rgba(255, 154, 60, 0.6),
        inset 0 -4px 8px rgba(0, 0, 0, 0.2),
        inset 0 4px 8px rgba(255, 255, 255, 0.4);
    animation: coinSpin 4s ease-in-out infinite;
}

.coin-1 { top: 10%; left: 10%; animation-delay: 0s; }
.coin-2 { top: 20%; right: 5%; animation-delay: -.8s; width: 40px; height: 40px; font-size: 18px; }
.coin-3 { bottom: 25%; left: 5%; animation-delay: -1.6s; width: 44px; height: 44px; font-size: 20px; }
.coin-4 { bottom: 10%; right: 15%; animation-delay: -2.4s; }
.coin-5 { top: 50%; right: 18%; animation-delay: -3.2s; width: 38px; height: 38px; font-size: 16px; }

@keyframes coinSpin {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.chip {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px dashed rgba(255, 255, 255, 0.3);
    animation: chipRotate 12s linear infinite;
}

.chip::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff6a8c, #ff2d8a 50%, #8b1545 100%);
    box-shadow: inset 0 -6px 10px rgba(0, 0, 0, 0.3);
}

.chip-1 {
    top: 5%;
    right: 25%;
    animation-duration: 8s;
}

.chip-2 {
    bottom: 15%;
    left: 18%;
    width: 56px;
    height: 56px;
    animation-duration: 10s;
    animation-direction: reverse;
}

.chip-2::before {
    background: radial-gradient(circle at 30% 30%, #7dd3fc, #22d3ee 50%, #0e6e80 100%);
}

.chip-3 {
    bottom: 45%;
    right: 8%;
    width: 50px;
    height: 50px;
    animation-duration: 14s;
}

.chip-3::before {
    background: radial-gradient(circle at 30% 30%, #c4b5fd, #7c3aed 50%, #3b1e80 100%);
}

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

/* ============ TICKER ============ */
.ticker {
    margin-top: 80px;
    background: linear-gradient(90deg, transparent, var(--bg-2), transparent);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.ticker__track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}

.ticker__track span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    display: inline-flex;
    align-items: center;
}

@keyframes tickerScroll {
    to { transform: translateX(-50%); }
}

/* ============ SECTION HEAD ============ */
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.section-head__kicker {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 210, 76, 0.08);
    border: 1px solid rgba(255, 210, 76, 0.18);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-head__title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.005em;
    margin-bottom: 18px;
    background: linear-gradient(180deg, #fff 0%, #b3aad6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-head__desc {
    color: var(--text-dim);
    font-size: 17px;
    line-height: 1.7;
}

.section-head__desc strong {
    color: inherit;
    font-weight: inherit;
}

/* ============ BONUSES ============ */
.bonuses {
    padding: 100px 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 50px;
}

.bonus-card {
    position: relative;
    padding: 32px 26px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), border-color .35s;
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-strong);
}

.bonus-card--featured {
    background: linear-gradient(180deg, rgba(255, 45, 138, 0.18), rgba(124, 58, 237, 0.06));
    border-color: rgba(255, 45, 138, 0.35);
    box-shadow: var(--shadow-card);
}

.bonus-card__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 18px;
    letter-spacing: 0.1em;
}

.bonus-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.bonus-card__val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 14px;
}

.bonus-card p {
    color: var(--text-dim);
    font-size: 14.5px;
    margin-bottom: 24px;
    line-height: 1.65;
}

.bonus-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    transition: gap .2s;
}

.bonus-card__cta:hover {
    gap: 10px;
}

.bonus-card__glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--pink), transparent 70%);
    top: -80px;
    right: -80px;
    opacity: .45;
    pointer-events: none;
}

.bonus-extras {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bonus-extra {
    display: flex;
    gap: 18px;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
}

.bonus-extra__ico {
    font-size: 32px;
    flex-shrink: 0;
}

.bonus-extra h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bonus-extra p {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.55;
}

/* ============ FEATURES ============ */
.features {
    padding: 100px 0;
}

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

.feature {
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all .35s cubic-bezier(.2, .8, .2, 1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.feature:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    background: var(--surface-2);
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 210, 76, 0.18), rgba(255, 45, 138, 0.18));
    color: var(--gold);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition: transform .35s ease;
}

.feature__icon svg {
    width: 28px;
    height: 28px;
}

.feature:hover .feature__icon {
    transform: scale(1.08) rotate(-4deg);
}

.feature h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.005em;
}

.feature p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.65;
}

/* ============ GAMES ============ */
.games {
    padding: 100px 0;
}

.games-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.games-tab {
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all .25s;
    font-family: inherit;
}

.games-tab:hover {
    color: var(--text);
    border-color: var(--border-strong);
}

.games-tab.is-active {
    background: var(--grad-gold);
    color: #1a0f00;
    border-color: transparent;
    font-weight: 700;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.game {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    transition: all .3s cubic-bezier(.2, .8, .2, 1);
    position: relative;
}

.game:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--border-strong);
    box-shadow: 0 20px 40px -20px rgba(255, 45, 138, 0.4);
}

.game__thumb {
    position: relative;
    aspect-ratio: 1 / 1.1;
    border-radius: 14px;
    background: var(--g, #222);
    margin-bottom: 14px;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.game__thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.3), transparent 50%);
}

.game__emoji {
    font-size: 64px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: transform .4s cubic-bezier(.2, .8, .2, 1);
    position: relative;
    z-index: 1;
}

.game:hover .game__emoji {
    transform: scale(1.15) rotate(-6deg);
}

.game__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.game__badge--new {
    background: var(--green);
    color: #062a14;
}

.game h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    padding: 0 4px;
}

.game__provider {
    display: block;
    font-size: 12px;
    color: var(--text-mute);
    padding: 0 4px;
    margin-bottom: 14px;
}

.game__play {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    background: var(--surface-2);
    color: var(--text);
    font-size: 13.5px;
    font-weight: 600;
    transition: all .2s;
}

.game__play:hover {
    background: var(--grad-gold);
    color: #1a0f00;
}

.games-more {
    text-align: center;
}

/* ============ PROVIDERS ============ */
.providers {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.providers__title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-mute);
    margin-bottom: 36px;
}

.providers-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.providers-marquee__track {
    display: flex;
    gap: 64px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.providers-marquee__track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    transition: color .2s;
}

.providers-marquee__track span:hover {
    color: var(--gold);
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ============ STEPS ============ */
.steps {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 56px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
    z-index: 0;
}

.step {
    position: relative;
    padding: 28px 22px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    text-align: center;
    z-index: 1;
    transition: all .3s;
}

.step:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
}

.step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: #1a0f00;
    display: grid;
    place-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px -8px rgba(255, 154, 60, 0.6);
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

.register-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px 44px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 45, 138, 0.16), rgba(124, 58, 237, 0.16)),
        var(--surface);
    border: 1px solid rgba(255, 45, 138, 0.25);
    flex-wrap: wrap;
}

.register-cta h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 6px;
}

.register-cta p {
    color: var(--text-dim);
    font-size: 15px;
}

/* ============ MIRROR ============ */
.mirror {
    padding: 100px 0;
}

.mirror__card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    padding: 44px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(600px 300px at 90% 0%, rgba(34, 211, 238, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-strong);
    align-items: center;
}

.mirror__kicker {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.25);
    color: var(--cyan);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.mirror__left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
    margin-bottom: 16px;
}

.mirror__left p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.mirror__list {
    list-style: none;
    margin-bottom: 28px;
    display: grid;
    gap: 10px;
}

.mirror__list li {
    position: relative;
    padding-left: 28px;
    font-size: 14.5px;
    color: var(--text-dim);
}

.mirror__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--grad-gold);
    box-shadow: 0 0 0 4px rgba(255, 210, 76, 0.1);
}

.mirror__list li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 4px;
    font-size: 11px;
    color: #1a0f00;
    font-weight: 800;
}

.mirror__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mirror__right {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
}

.mirror__status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
}

.mirror__pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 16px var(--green);
    animation: pulse 1.5s ease-in-out infinite;
}

.mirror__url {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    word-break: break-all;
}

.mirror__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.mirror__meta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mirror__meta strong {
    font-size: 11px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.mirror__meta span {
    font-size: 15px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* ============ APP ============ */
.app {
    padding: 100px 0;
}

.app__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app__content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.05;
    margin: 18px 0 18px;
}

.app__content > p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 26px;
}

.app__features {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}

.app__features li {
    font-size: 15px;
    color: var(--text-dim);
}

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

.store {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    transition: all .25s;
}

.store:hover {
    border-color: var(--gold);
    background: rgba(255, 210, 76, 0.06);
    transform: translateY(-2px);
}

.store small {
    display: block;
    font-size: 11px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.store strong {
    font-size: 16px;
    font-weight: 700;
}

/* ============ PHONE ============ */
.app__visual {
    display: grid;
    place-items: center;
}

.phone {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(180deg, #1a1a2e, #0a0a14);
    border-radius: 44px;
    padding: 14px;
    border: 2px solid #2a2a3e;
    box-shadow:
        0 50px 100px -30px rgba(0, 0, 0, 0.6),
        0 0 80px -20px rgba(255, 45, 138, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-16px) rotate(2deg); }
}

.phone__notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #000;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.phone__screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0d0a1f, #1a0f2e);
    border-radius: 32px;
    padding: 44px 16px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.phone__top {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    text-align: center;
    margin-bottom: 18px;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.phone__balance {
    background: linear-gradient(135deg, rgba(255, 210, 76, 0.16), rgba(255, 45, 138, 0.16));
    border: 1px solid rgba(255, 210, 76, 0.3);
    border-radius: 14px;
    padding: 14px;
    text-align: center;
    margin-bottom: 16px;
}

.phone__balance small {
    display: block;
    font-size: 11px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.phone__balance span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--gold);
}

.phone__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: auto;
}

.phone__grid div {
    aspect-ratio: 1;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 28px;
    box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.2);
    animation: gridPulse 3s ease-in-out infinite;
}

.phone__grid div:nth-child(1) { animation-delay: 0s; }
.phone__grid div:nth-child(2) { animation-delay: -.4s; }
.phone__grid div:nth-child(3) { animation-delay: -.8s; }
.phone__grid div:nth-child(4) { animation-delay: -1.2s; }
.phone__grid div:nth-child(5) { animation-delay: -1.6s; }
.phone__grid div:nth-child(6) { animation-delay: -2s; }

@keyframes gridPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); filter: brightness(1.15); }
}

.phone__btn {
    background: var(--grad-gold);
    color: #1a0f00;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    margin-top: 14px;
    box-shadow: 0 8px 24px -6px rgba(255, 154, 60, 0.55);
}

/* ============ PAYMENTS ============ */
.payments {
    padding: 100px 0;
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.pay-card {
    padding: 24px;
    text-align: center;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--text-dim);
    transition: all .3s;
}

.pay-card:hover {
    background: var(--surface-2);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
}

/* ============ SEO BLOCK ============ */
.seo-block {
    padding: 80px 0;
}

.seo-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 48px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
}

.seo-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 22px;
    background: linear-gradient(180deg, #fff 0%, #b3aad6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 14px;
    color: var(--text);
    letter-spacing: -0.005em;
}

.seo-content p {
    color: var(--text-dim);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.seo-content strong {
    color: inherit;
    font-weight: inherit;
}

/* ============ FAQ ============ */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all .3s;
}

.faq-item[open] {
    border-color: rgba(255, 210, 76, 0.3);
    background: var(--surface-2);
}

.faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 16px;
    font-weight: 600;
    transition: color .2s;
}

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

.faq-item summary:hover {
    color: var(--gold);
}

.faq-item__arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface-2);
    flex-shrink: 0;
    position: relative;
    transition: transform .3s;
}

.faq-item__arrow::before,
.faq-item__arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 2px;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: transform .3s ease;
    border-radius: 2px;
}

.faq-item__arrow::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__arrow::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-item[open] .faq-item__arrow {
    background: rgba(255, 210, 76, 0.16);
}

.faq-item__body {
    padding: 0 28px 24px;
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
    animation: faqOpen .4s ease;
}

@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ FOOTER ============ */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
    margin-top: 80px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
}

.footer__brand p {
    color: var(--text-dim);
    font-size: 14px;
    margin: 18px 0 22px;
    line-height: 1.65;
    max-width: 380px;
}

.footer__age {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer__age span {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 2px solid var(--pink);
    color: var(--pink);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 13px;
}

.footer__age small {
    color: var(--text-mute);
    font-size: 12px;
    line-height: 1.5;
}

.footer__col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 700;
}

.footer__col a {
    display: block;
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 10px;
    transition: color .2s, padding-left .2s;
}

.footer__col a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--text-mute);
    font-size: 13px;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
    .nav { display: none; }
    .burger { display: flex; }
    .header__cta .btn--ghost { display: none; }

    .nav.is-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-2);
        padding: 18px 24px;
        gap: 12px;
        border-bottom: 1px solid var(--border);
    }

    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { height: 420px; }
    .hero__stats { grid-template-columns: repeat(2, 1fr); }

    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .games-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }

    .mirror__card { grid-template-columns: 1fr; padding: 30px; }
    .app__inner { grid-template-columns: 1fr; }
    .app__visual { order: -1; }

    .payments-grid { grid-template-columns: repeat(3, 1fr); }
    .bonus-extras { grid-template-columns: 1fr; }

    .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
    .hero { padding: 50px 0 40px; }
    .hero__title-row { font-size: 70px; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { justify-content: center; }
    .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .hero__stat-num { font-size: 26px; }

    .ticker { margin-top: 50px; }

    .bonuses, .features, .games, .steps, .mirror, .app, .payments, .faq { padding: 70px 0; }

    .bonus-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .game__emoji { font-size: 48px; }
    .steps-grid { grid-template-columns: 1fr; }

    .register-cta { padding: 28px; flex-direction: column; align-items: stretch; text-align: center; }
    .register-cta .btn { width: 100%; }

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

    .seo-content { padding: 28px 22px; }
    .seo-content h2 { font-size: 30px; }
    .seo-content h3 { font-size: 19px; }

    .footer__top { grid-template-columns: 1fr; gap: 28px; }
    .footer__bottom { flex-direction: column; text-align: center; }

    .phone { width: 240px; height: 480px; }
    .card-stack { width: 160px; height: 230px; }
    .card__big { font-size: 90px; }
}
