/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #050505;
    --bg-2: #0c0c0e;
    --bg-3: #14141a;
    --surface: #17171c;
    --surface-2: #1e1e25;
    --border: rgba(212, 175, 55, 0.15);
    --border-hover: rgba(212, 175, 55, 0.45);

    --gold: #d4af37;
    --gold-light: #f4d76e;
    --gold-dark: #a07d1c;
    --gold-deep: #5c4410;
    --gold-gradient: linear-gradient(135deg, #f4d76e 0%, #d4af37 40%, #a07d1c 100%);
    --gold-shine: linear-gradient(110deg, #a07d1c 0%, #d4af37 20%, #fff3b0 40%, #d4af37 60%, #a07d1c 100%);

    --text: #ffffff;
    --text-muted: #b5b5bf;
    --text-dim: #7a7a85;
    --danger: #ff4d5e;
    --success: #3fdc8f;

    --radius: 16px;
    --radius-lg: 24px;
    --radius-sm: 10px;

    --shadow-gold: 0 20px 60px -10px rgba(212, 175, 55, 0.35);
    --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.6);

    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* ===== PARTICLES BG ===== */
#particles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* ===== UTILITIES ===== */
.gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.gold-shine {
    background: var(--gold-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    font-weight: 900;
}

@keyframes shine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: rgba(212, 175, 55, 0.06);
    margin-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(63, 220, 143, 0.08);
    border: 1px solid rgba(63, 220, 143, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 24px;
}

.badge__dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--gold {
    background: var(--gold-gradient);
    color: #1a0e00;
    box-shadow: 0 10px 30px -8px rgba(212, 175, 55, 0.5);
}

.btn--gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -5px rgba(212, 175, 55, 0.65);
}

.btn--gold:hover::before { left: 100%; }

.btn--ghost {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }

.btn i { font-size: 18px; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s;
    backdrop-filter: blur(20px);
    background: rgba(5, 5, 5, 0.6);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 5, 0.9);
    border-bottom-color: var(--border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 900;
}

.logo__img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.logo__text {
    font-size: 22px;
    letter-spacing: 3px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    transition: color 0.2s;
}

.nav__link:hover { color: var(--gold); }

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s;
}

.nav__link:hover::after { width: 100%; }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.burger span {
    width: 24px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 140px 0 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 12s ease-in-out infinite;
}

.hero__orb--1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -100px; right: -100px;
}

.hero__orb--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--gold-dark) 0%, transparent 70%);
    bottom: -50px; left: -50px;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.1); }
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 40px 24px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero__title-line {
    display: block;
    color: var(--text);
}

.hero__title-gold {
    display: block;
    background: var(--gold-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__subtitle b { color: var(--text); }

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item i {
    color: var(--gold);
    font-size: 18px;
}

/* Hero visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.hero__logo-wrap {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatLogo 6s ease-in-out infinite;
}

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

.hero__logo-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 60%);
    filter: blur(30px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero__logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.5),
        inset 0 0 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero__sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold);
    z-index: 3;
}

.hero__sparkle::before,
.hero__sparkle::after {
    content: '';
    position: absolute;
    background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
}

.hero__sparkle::before { width: 1px; height: 30px; left: 50%; top: -12px; transform: translateX(-50%); }
.hero__sparkle::after { width: 30px; height: 1px; top: 50%; left: -12px; transform: translateY(-50%); }

.hero__sparkle--1 { top: 10%; left: 10%; animation: sparkle 3s ease-in-out infinite; }
.hero__sparkle--2 { top: 70%; right: 5%; animation: sparkle 3s ease-in-out infinite 1s; }
.hero__sparkle--3 { bottom: 20%; left: 15%; animation: sparkle 3s ease-in-out infinite 2s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.3); }
}

.hero__card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(23, 23, 28, 0.9), rgba(30, 30, 37, 0.9));
    border: 1px solid var(--border-hover);
    border-radius: 14px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    z-index: 4;
    animation: cardFloat 5s ease-in-out infinite;
}

.hero__card i {
    font-size: 22px;
    color: var(--gold);
}

.hero__card-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}

.hero__card-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__card--1 { top: 15%; left: -20px; }
.hero__card--2 { bottom: 15%; right: -20px; animation-delay: -2.5s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero stats */
.hero__stats {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.03));
    position: relative;
    z-index: 2;
}

.hero__stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat__value {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat__suffix {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--gold);
    display: inline-block;
}

.stat__label {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ===== QUICK CONTACT STRIP ===== */
.quickcontact {
    padding: 50px 0 30px;
    position: relative;
    z-index: 2;
}

.quickcontact__inner {
    max-width: 1100px;
    margin: 0 auto;
}

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

.quickcontact__eyebrow {
    margin-bottom: 14px;
}

.quickcontact__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.3px;
}

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

.qc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(23, 23, 28, 0.9), rgba(30, 30, 37, 0.9));
    border: 1px solid var(--border-hover);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    cursor: pointer;
    text-decoration: none;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.qc-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 40%; height: 200%;
    background: linear-gradient(110deg, transparent, rgba(212, 175, 55, 0.18), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.qc-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 18px 40px -10px rgba(212, 175, 55, 0.35);
}

.qc-card:hover::before { left: 120%; }

.qc-card__icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
    color: white;
    position: relative;
    z-index: 1;
}

.qc-card__icon--wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.55);
}

.qc-card__icon--tg {
    background: linear-gradient(135deg, #29B6F6, #0088CC);
    box-shadow: 0 8px 20px -4px rgba(41, 182, 246, 0.55);
}

.qc-card__info {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.qc-card__label {
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.qc-card__value {
    font-size: 17px;
    font-weight: 700;
    color: var(--gold-light);
    font-family: var(--font-display);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qc-card--tg .qc-card__value { color: #7ec9f5; }

.qc-card__action {
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.25s;
    position: relative;
    z-index: 1;
}

.qc-card:hover .qc-card__action {
    opacity: 1;
    transform: scale(1.2);
}

.qc-warning {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(255, 77, 94, 0.08), rgba(255, 77, 94, 0.03));
    border: 1px solid rgba(255, 77, 94, 0.3);
    border-left: 4px solid var(--danger);
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.qc-warning i {
    color: var(--danger);
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.qc-warning b { color: var(--text); }

@media (max-width: 900px) {
    .quickcontact__grid { grid-template-columns: 1fr; gap: 12px; }
    .quickcontact { padding: 30px 0 10px; }
    .qc-card { padding: 14px 16px; }
    .qc-card__icon { width: 46px; height: 46px; }
    .qc-card__value { font-size: 15px; }
    .qc-warning { padding: 14px 16px; font-size: 13px; }
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
    position: relative;
}

.section--dark {
    background: linear-gradient(180deg, var(--bg), var(--bg-2));
    position: relative;
}

.section--dark::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section__subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    position: relative;
    padding: 40px 32px;
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px -15px rgba(212, 175, 55, 0.25);
}

.feature:hover::before { opacity: 1; }

.feature__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--border-hover);
    border-radius: 18px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.feature__icon i {
    font-size: 28px;
    color: var(--gold);
}

.feature__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ===== GAMES ===== */
.games {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.game {
    position: relative;
    padding: 36px 28px;
    background: linear-gradient(180deg, var(--surface-2), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s;
    overflow: hidden;
    cursor: pointer;
}

.game__glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.25), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.game:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 25px 60px -10px rgba(212, 175, 55, 0.3);
}

.game:hover .game__glow { opacity: 1; }

.game__badge {
    position: absolute;
    top: 20px; right: 20px;
    padding: 4px 10px;
    background: var(--gold-gradient);
    color: #1a0e00;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 6px;
    z-index: 2;
}

.game__badge--live {
    background: linear-gradient(135deg, #ff4d5e, #d4234d);
    color: white;
    animation: blink 2s infinite;
}

.game__badge--new {
    background: linear-gradient(135deg, #3fdc8f, #1fa76c);
    color: #00200f;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.game__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--border-hover);
    border-radius: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s;
}

.game:hover .game__icon {
    transform: rotate(-8deg) scale(1.05);
}

.game__icon i {
    font-size: 36px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.game__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.game__stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.game__stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.game__stats i {
    color: var(--gold);
    font-size: 15px;
}

/* ===== BONUS ===== */
.bonus {
    padding: 80px 0;
    position: relative;
}

.bonus__card {
    position: relative;
    padding: 80px 60px;
    background: linear-gradient(135deg, #1a1410 0%, #0d0a08 100%);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.bonus__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.25), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.15), transparent 50%);
    pointer-events: none;
}

.bonus__content { position: relative; z-index: 2; }

.bonus__label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 77, 94, 0.15);
    border: 1px solid rgba(255, 77, 94, 0.4);
    color: #ff6b7a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 6px;
    margin-bottom: 20px;
    animation: blink 2.5s infinite;
}

.bonus__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
}

.bonus__text {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 480px;
}

.bonus__text b { color: var(--text); }

.bonus__features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.bonus__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.bonus__feature i {
    color: var(--gold);
    font-size: 16px;
}

.bonus__cta { box-shadow: 0 15px 40px -5px rgba(212, 175, 55, 0.5); }

.bonus__visual {
    position: relative;
    height: 300px;
    z-index: 2;
}

.bonus__coin {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    background: var(--gold-gradient);
    color: #1a0e00;
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.5),
        inset 0 -10px 20px rgba(0, 0, 0, 0.2),
        inset 0 5px 15px rgba(255, 255, 255, 0.3);
    animation: coinSpin 6s ease-in-out infinite;
}

.bonus__coin--1 {
    width: 180px; height: 180px;
    top: 40px; right: 20%;
    font-size: 42px;
}

.bonus__coin--2 {
    width: 110px; height: 110px;
    bottom: 20px; right: 5%;
    font-size: 48px;
    animation-delay: -2s;
}

.bonus__coin--3 {
    width: 90px; height: 90px;
    top: 20px; right: 55%;
    font-size: 36px;
    animation-delay: -4s;
}

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

/* ===== STEPS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px; left: 16.66%; right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
    z-index: 0;
}

.step {
    position: relative;
    padding: 48px 32px 40px;
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s;
}

.step--center {
    transform: translateY(-20px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px -15px rgba(212, 175, 55, 0.2);
}

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

.step--center:hover { transform: translateY(-28px); }

.step__number {
    position: absolute;
    top: -20px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: #1a0e00;
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    border: 4px solid var(--bg);
    box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.5);
}

.step__icon {
    width: 80px; height: 80px;
    margin: 30px auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.03));
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.4s;
}

.step:hover .step__icon {
    border-color: var(--gold);
    transform: rotate(-5deg);
}

.step__icon i {
    font-size: 36px;
    color: var(--gold);
}

.step__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== REVIEWS ===== */
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review {
    padding: 32px;
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s;
    position: relative;
}

.review::before {
    content: '"';
    position: absolute;
    top: 10px; right: 24px;
    font-family: Georgia, serif;
    font-size: 100px;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
}

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

.review__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.review__stars i {
    color: var(--gold);
    font-size: 18px;
}

.review__text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.review__avatar {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: #1a0e00;
    border-radius: 50%;
    font-weight: 800;
    font-family: var(--font-display);
    font-size: 18px;
}

.review__name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}

.review__role {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px;
}

/* ===== FAQ ===== */
.faq {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s;
    overflow: hidden;
}

.faq__item[open] {
    border-color: var(--border-hover);
    background: linear-gradient(180deg, var(--surface), rgba(212, 175, 55, 0.04));
}

.faq__item:hover {
    border-color: var(--border-hover);
}

.faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
    gap: 16px;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__icon {
    color: var(--gold);
    font-size: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq__item[open] .faq__icon { transform: rotate(180deg); }

.faq__a {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
    padding-bottom: 140px;
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.contact__card {
    position: relative;
    padding: 36px 28px;
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: default;
}

.contact__card--tg { cursor: pointer; }

.contact__card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px -15px rgba(212, 175, 55, 0.3);
}

.contact__badge {
    position: absolute;
    top: 16px; right: 16px;
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 6px;
}

.contact__badge--tg {
    background: rgba(63, 220, 143, 0.12);
    border-color: rgba(63, 220, 143, 0.3);
    color: var(--success);
}

.contact__icon {
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    transition: all 0.4s;
}

.contact__icon--wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.4);
}

.contact__icon--tg {
    background: linear-gradient(135deg, #29B6F6, #0088CC);
    color: white;
    box-shadow: 0 10px 30px -5px rgba(41, 182, 246, 0.4);
}

.contact__card:hover .contact__icon {
    transform: rotate(-5deg) scale(1.05);
}

.contact__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
}

.contact__number {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px dashed var(--border-hover);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-light);
    font-family: var(--font-display);
    letter-spacing: 1px;
    user-select: all;
}

.contact__number--link {
    font-size: 20px;
    background: rgba(41, 182, 246, 0.08);
    border-color: rgba(41, 182, 246, 0.3);
    color: #29B6F6;
    cursor: pointer;
}

.contact__number--link i { font-size: 16px; }

.contact__copy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: var(--gold-gradient);
    color: #1a0e00;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 16px;
}

.contact__copy:hover {
    transform: scale(1.1);
}

.contact__hint {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: auto;
}

.contact__warning {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(255, 77, 94, 0.08), rgba(255, 77, 94, 0.03));
    border: 1px solid rgba(255, 77, 94, 0.3);
    border-left: 4px solid var(--danger);
    border-radius: var(--radius);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.contact__warning i {
    color: var(--danger);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__warning b { color: var(--text); }

.warning-text {
    color: #ff6b7a !important;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--bg), #020202);
    border-top: 1px solid var(--border);
    padding: 60px 0;
}

.footer__inner {
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 520px;
}

.footer__logo {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

.footer__text {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.7;
}

.footer__age {
    display: flex;
    align-items: center;
    gap: 12px;
}

.age-badge {
    padding: 6px 12px;
    background: var(--danger);
    color: white;
    font-weight: 900;
    border-radius: 8px;
    font-size: 14px;
}

.footer__age-text {
    font-size: 12px;
    color: var(--text-dim);
    max-width: 200px;
}

.footer__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer__link:hover { color: var(--gold); }
.footer__link--static { cursor: default; }
.footer__link--static:hover { color: var(--text-muted); }

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

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

.footer__disclaimer {
    font-style: italic;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(23, 23, 28, 0.95), rgba(30, 30, 37, 0.95));
    border: 1px solid var(--border-hover);
    border-radius: 14px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast i {
    color: var(--success);
    font-size: 20px;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: #1a0e00;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 90;
    box-shadow: 0 10px 30px -5px rgba(212, 175, 55, 0.5);
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-4px);
}

.scroll-top i { font-size: 20px; }

/* ===== FLOATING CONTACT FAB (right side, green→gold) ===== */
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 95;
}

.fab__btn {
    position: relative;
    width: 68px; height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366 0%, #52d36a 35%, #d4af37 100%);
    color: #0a2a10;
    border-radius: 50%;
    box-shadow:
        0 12px 32px -6px rgba(37, 211, 102, 0.55),
        0 6px 20px -4px rgba(212, 175, 55, 0.4),
        0 0 0 4px rgba(212, 175, 55, 0.18);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.fab__btn:hover {
    transform: translateY(-4px) scale(1.06);
}

.fab__btn-icon {
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab__btn-icon--default { width: 28px; height: 28px; }

.fab__btn-icon--close {
    font-size: 28px;
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.fab.open .fab__btn-icon--default {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.fab.open .fab__btn-icon--close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.fab__label {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    padding: 7px 14px;
    background: linear-gradient(135deg, rgba(23, 23, 28, 0.95), rgba(30, 30, 37, 0.95));
    border: 1px solid var(--border-hover);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.fab__label::after {
    content: '';
    position: absolute;
    left: 100%; top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(30, 30, 37, 0.95);
}

.fab__btn:hover .fab__label {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
}

.fab.open .fab__label { opacity: 0; }

.fab__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #d4af37);
    opacity: 0.55;
    animation: fabPulse 2.2s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}

.fab.open .fab__pulse { animation: none; opacity: 0; }

@keyframes fabPulse {
    0% { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.9); opacity: 0; }
}

.fab__menu {
    position: absolute;
    bottom: 84px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 320px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab.open .fab__menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.fab__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(23, 23, 28, 0.98), rgba(30, 30, 37, 0.98));
    border: 1px solid var(--border-hover);
    border-radius: 14px;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    text-decoration: none;
    text-align: left;
    transition: all 0.25s;
    opacity: 0;
    transform: translateX(20px);
    width: 100%;
}

.fab.open .fab__item {
    opacity: 1;
    transform: translateX(0);
}

.fab.open .fab__item:nth-child(1) { transition-delay: 0.05s; }
.fab.open .fab__item:nth-child(2) { transition-delay: 0.1s; }
.fab.open .fab__item:nth-child(3) { transition-delay: 0.15s; }

.fab__item:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(30, 30, 37, 0.98));
    transform: translateX(-4px);
}

.fab__item-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    color: white;
}

.fab__item-icon--wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 6px 16px -4px rgba(37, 211, 102, 0.5);
}

.fab__item-icon--tg {
    background: linear-gradient(135deg, #29B6F6, #0088CC);
    box-shadow: 0 6px 16px -4px rgba(41, 182, 246, 0.5);
}

.fab__item-info {
    flex: 1;
    min-width: 0;
}

.fab__item-label {
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.fab__item-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-light);
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

.fab__item--tg .fab__item-value {
    color: #29B6F6;
}

.fab__item-action {
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.2s;
}

.fab__item:hover .fab__item-action {
    opacity: 1;
    transform: scale(1.15);
}

/* Scroll-top стек над FAB */
.scroll-top {
    bottom: 104px !important;
}

@media (max-width: 480px) {
    .fab { bottom: 20px; right: 20px; }
    .fab__btn { width: 60px; height: 60px; }
    .fab__btn-icon--default { width: 24px; height: 24px; }
    .fab__btn-icon--close { font-size: 24px; }
    .fab__label { display: none; }
    .fab__menu {
        width: calc(100vw - 40px);
        max-width: 320px;
        bottom: 76px;
    }
    .scroll-top { width: 44px; height: 44px; bottom: 90px !important; right: 20px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero__content { order: 2; }
    .hero__visual { order: 1; min-height: 360px; }
    .hero__logo-wrap { width: 280px; height: 280px; }
    .hero__subtitle, .hero__trust { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__trust { justify-content: center; }

    .features { grid-template-columns: repeat(2, 1fr); }
    .games { grid-template-columns: repeat(2, 1fr); }
    .reviews { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; gap: 16px; }

    .bonus__card { grid-template-columns: 1fr; padding: 48px 32px; }
    .bonus__visual { height: 220px; }

    .footer__inner { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .nav, .header__cta { display: none; }
    .burger { display: flex; }

    .nav.open {
        display: flex;
        position: fixed;
        top: 68px; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        padding: 24px;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
    }

    .nav.open .nav__link {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
    }

    .hero { padding-top: 100px; min-height: auto; }
    .hero__container { padding: 20px; }
    .hero__card { display: none; }
    .hero__logo-wrap { width: 220px; height: 220px; }
    .hero__actions .btn { width: 100%; }
    .hero__stats { margin-top: 40px; padding: 24px 0; }
    .hero__stats-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat { padding: 12px; border-right: none; border-bottom: 1px solid var(--border); }
    .stat:nth-child(n+3) { border-bottom: none; }

    .section { padding: 80px 0; }
    .section__head { margin-bottom: 48px; }
    .features, .games, .steps, .contact__grid { grid-template-columns: 1fr; }

    .steps::before { display: none; }
    .step--center { transform: none; }

    .bonus__card { padding: 40px 24px; }
    .bonus__visual { height: 180px; }
    .bonus__coin--1 { width: 130px; height: 130px; font-size: 32px; }
    .bonus__coin--2 { width: 80px; height: 80px; font-size: 36px; }
    .bonus__coin--3 { width: 70px; height: 70px; font-size: 28px; }

    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom-inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 40px; }
    .section__title { font-size: 32px; }
    .bonus__title { font-size: 32px; }
    .hero__trust { gap: 16px; }
    .btn--lg { padding: 15px 24px; font-size: 14px; }
    .feature, .game, .step, .review, .contact__card { padding: 28px 24px; }
}

/* ===== ANIMATIONS ON SCROLL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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