:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --accent: #fbbf24;
    --accent-glow: rgba(251, 191, 36, 0.4);
    --bg-light: #fafafa;
    --bg-card: rgba(255, 255, 255, 0.75);
    --text: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --success: #10b981;
    --gradient-main: linear-gradient(135deg, #8b5cf6, #ec4899);
    --gradient-accent: linear-gradient(135deg, #fbbf24, #f97316);
    --glass: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.25);
    --radius: 24px;
    --radius-lg: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg-light);
    background-image: 
        radial-gradient(ellipse at top, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 18px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-badge {
    width: 54px;
    height: 54px;
    background: var(--gradient-main);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-md), 0 0 30px rgba(139, 92, 246, 0.35);
    position: relative;
    overflow: hidden;
}

.logo-badge::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.8px;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: -4px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-md);
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
    background: var(--gradient-main);
    color: white;
    font-size: 1.25rem;
    padding: 22px 52px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-lg), 0 0 70px rgba(139, 92, 246, 0.55);
}

.btn-accent {
    background: var(--gradient-accent);
    color: #1f2937;
    font-size: 1.2rem;
    padding: 20px 48px;
    box-shadow: var(--shadow-lg), 0 0 40px var(--accent-glow);
}

.btn-accent:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-lg), 0 0 70px rgba(251, 191, 36, 0.6);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    font-size: 1.45rem;
    padding: 26px 64px;
    border-radius: 22px;
    font-weight: 800;
}

.btn-full { width: 100%; }

.btn-pulse {
    animation: pulseGold 2.5s infinite;
}

@keyframes pulseGold {
    0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: var(--shadow-lg), 0 0 0 20px rgba(251, 191, 36, 0); }
}

/* ===== HERO ===== */
.hero {
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
}

.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    animation: float 10s ease-in-out infinite alternate;
}

.hero::before {
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
}

.hero::after {
    bottom: -150px; left: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes float {
    from { transform: translate(0, 0); }
    to { transform: translate(30px, -30px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.hero-badge i { color: var(--success); font-size: 1.1rem; }

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
}

.hero-title .brand {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto 42px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-bottom: 55px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.trust-item i { color: var(--primary); font-size: 1.2rem; }

/* ===== SECTIONS ===== */
.section { padding: 85px 0; }

.section-title {
    font-size: clamp(1.9rem, 4.5vw, 2.6rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 55px;
    font-size: 1.1rem;
}

.brand {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    margin-bottom: 55px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.55;
}

.cta-center { text-align: center; }

/* ===== BONUS SECTION ===== */
.bonus-section {
    padding: 20px 0 85px;
}

.bonus-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px;
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(139, 92, 246, 0.2);
    border: 2px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.bonus-header { margin-bottom: 22px; }
.bonus-label {
    display: inline-block;
    background: var(--gradient-accent);
    color: #1f2937;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.bonus-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
}

.bonus-amount {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    margin: 18px 0;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bonus-desc {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.bonus-steps {
    list-style: none;
    text-align: left;
    max-width: 550px;
    margin: 0 auto 32px;
}

.bonus-steps li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
}

.bonus-steps i {
    color: var(--success);
    margin-top: 4px;
}

.bonus-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== GAMES SHOWCASE ===== */
.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 22px;
    margin-bottom: 50px;
}

.game-showcase-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.game-showcase-card:hover {
    transform: translateY(-7px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.game-showcase-img {
    height: 130px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
}

.game-showcase-info {
    padding: 18px;
    text-align: center;
}

.game-showcase-info strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text);
}

.game-showcase-info span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gradient-main);
    color: white;
    border-radius: 16px;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.35);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.55;
}

.trust-note {
    margin-top: 22px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.trust-note i { color: var(--success); margin-right: 6px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 65px 0 35px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 42px;
    margin-bottom: 45px;
}

.footer-brand p {
    color: var(--text-light);
    margin: 18px 0;
    line-height: 1.6;
}

.age-18 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
    padding: 9px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    margin-top: 12px;
}

.footer-col h4 {
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text);
    font-size: 1.1rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 13px; }
.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.25s;
    font-size: 0.98rem;
}
.footer-links a:hover { color: var(--primary); }

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.pay-badge {
    background: var(--bg-card);
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid var(--glass-border);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-light);
    font-size: 0.93rem;
}

.footer-bottom a { color: var(--primary); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ===== UTILITIES ===== */
.text-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s;
}
.text-link:hover { color: var(--primary-dark); }

/* ===== MOBILE ===== */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 992px) {
    .hero-trust { gap: 22px; }
    .trust-item { font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .header-content { flex-wrap: wrap; }
    .mobile-toggle { display: block; margin-left: auto; }
    .auth-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 18px;
        display: none;
    }
    .auth-buttons.active { display: flex; }
    
    .hero { padding: 70px 0 50px; }
    .section { padding: 65px 0; }
    
    .btn { width: 100%; justify-content: center; }
    .hero-buttons { flex-direction: column; align-items: center; }
    
    .bonus-card { padding: 35px 28px; }
    .bonus-actions { flex-direction: column; }
    
    .games-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .logo-text { font-size: 1.5rem; }
    .logo-badge { width: 44px; height: 44px; font-size: 1.3rem; }
    .hero-title { font-size: 2.1rem; }
    .btn-primary, .btn-large, .btn-accent { 
        font-size: 1.15rem; 
        padding: 20px 40px; 
    }
    .feature-card, .step-card { padding: 26px 22px; }
    .games-showcase { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .bonus-amount { font-size: 2.3rem; }
}
/* ===== LOGO STYLES ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-image {
    height: 54px;
    width: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md), 0 0 25px rgba(139, 92, 246, 0.3);
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(139, 92, 246, 0.5);
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.8px;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: -4px;
}

/* ===== MOBILE LOGO ===== */
@media (max-width: 480px) {
    .logo-image { height: 42px; border-radius: 10px; }
    .logo-text { font-size: 1.5rem; }
    .logo-tagline { display: none; }
}
:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --accent: #fbbf24;
    --accent-glow: rgba(251, 191, 36, 0.35);
    --bg-light: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.82);
    --text: #0f172a;
    --text-light: #64748b;
    --white: #ffffff;
    --success: #10b981;
    --gradient-main: linear-gradient(135deg, #8b5cf6, #ec4899);
    --gradient-accent: linear-gradient(135deg, #fbbf24, #f97316);
    --glass: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
    --shadow-glow: 0 0 50px rgba(139, 92, 246, 0.2);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }

body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    background: var(--bg-light);
    background-image: 
        radial-gradient(ellipse at top, rgba(139, 92, 246, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse at bottom right, rgba(236, 72, 153, 0.07) 0%, transparent 65%);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
}

.header-content {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }

.logo-img {
    height: 48px; width: auto; border-radius: 12px;
    object-fit: contain; box-shadow: var(--shadow-sm), 0 0 20px rgba(139, 92, 246, 0.25);
}

.logo-name {
    font-size: 1.75rem; font-weight: 800;
    background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -0.6px; line-height: 1.1;
}

.logo-tag {
    display: block; font-size: 0.75rem; color: var(--text-light); font-weight: 500; margin-top: 2px;
}

.mobile-toggle {
    display: none; background: none; border: none; color: var(--text);
    font-size: 1.6rem; cursor: pointer; padding: 6px;
}

.nav-buttons { display: flex; gap: 12px; align-items: center; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 30px; font-size: 1rem; font-weight: 700; text-decoration: none;
    border-radius: 14px; border: none; cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase; letter-spacing: 0.2px; touch-action: manipulation;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-main); color: white;
    box-shadow: var(--shadow-md), 0 0 35px rgba(139, 92, 246, 0.35);
    padding: 18px 36px; font-size: 1.1rem;
}

.btn-primary:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), 0 0 60px rgba(139, 92, 246, 0.5); }

.btn-accent {
    background: var(--gradient-accent); color: #1f2937;
    box-shadow: var(--shadow-md), 0 0 30px var(--accent-glow);
    padding: 16px 34px; font-size: 1.1rem; animation: pulseAcc 2.5s infinite;
}

@keyframes pulseAcc {
    0%, 100% { box-shadow: var(--shadow-md), 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: var(--shadow-md), 0 0 0 14px rgba(251, 191, 36, 0); }
}

.btn-outline {
    background: var(--white); color: var(--primary); border: 2px solid var(--primary);
    font-weight: 600; box-shadow: var(--shadow-sm);
}

.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-3px); }

.btn-large { font-size: 1.3rem; padding: 22px 48px; border-radius: 18px; font-weight: 800; }

/* ===== HERO ===== */
.hero {
    padding: 75px 0 55px; text-align: center; position: relative;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 20px; background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 50px; font-size: 0.88rem; font-weight: 600; margin-bottom: 24px;
    box-shadow: var(--shadow-sm); backdrop-filter: blur(10px);
}

.hero-badge i { color: var(--success); }

.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.8rem); font-weight: 800; line-height: 1.08;
    margin-bottom: 22px;
}

.hero-title .brand {
    background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-light);
    max-width: 700px; margin: 0 auto 34px; line-height: 1.5;
}

.hero-btns {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 42px;
}

.hero-trust {
    display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; padding-top: 18px;
}

.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--text-light); }
.trust-item i { color: var(--primary); font-size: 1.15rem; }

/* ===== SECTIONS ===== */
.section { padding: 75px 0; }

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 800; text-align: center;
    margin-bottom: 20px; color: var(--text);
}

.section-sub {
    text-align: center; color: var(--text-light); max-width: 640px; margin: 0 auto 48px; font-size: 1.05rem;
}

.brand-text {
    background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700;
}

/* ===== FEATURES GRID ===== */
.feat-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px; margin-bottom: 45px;
}

.feat-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 22px; padding: 30px; backdrop-filter: blur(12px);
    transition: all 0.3s ease; box-shadow: var(--shadow-sm);
}

.feat-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg), var(--shadow-glow); border-color: var(--primary); }

.feat-icon { font-size: 2rem; margin-bottom: 16px; }
.feat-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.feat-card p { color: var(--text-light); line-height: 1.55; font-size: 0.96rem; }

.cta-center { text-align: center; }

/* ===== BONUS CARD ===== */
.bonus-sec { padding: 30px 0 75px; }

.bonus-card {
    background: var(--white); border-radius: 26px; padding: 44px 36px; text-align: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow); border: 2px solid var(--glass-border);
    position: relative; overflow: hidden;
}

.bonus-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: var(--gradient-accent);
}

.bonus-label {
    display: inline-block; background: var(--gradient-accent); color: #1f2937;
    padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: 0.88rem; margin-bottom: 14px;
}

.bonus-card h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; margin-bottom: 16px; }

.bonus-amount {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 800; margin: 18px 0;
    background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.bonus-desc { color: var(--text-light); margin-bottom: 26px; font-size: 1.02rem; }

.bonus-list { list-style: none; text-align: left; max-width: 520px; margin: 0 auto 30px; }
.bonus-list li { padding: 9px 0; display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-weight: 500; }
.bonus-list i { color: var(--success); margin-top: 4px; }

.bonus-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== GAMES ===== */
.games-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 20px; margin-bottom: 45px;
}

.game-card {
    background: var(--bg-card); border-radius: 18px; overflow: hidden;
    border: 1px solid var(--glass-border); text-decoration: none; color: inherit;
    transition: transform 0.25s, box-shadow 0.25s;
}

.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.game-img {
    height: 125px; background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex; align-items: center; justify-content: center; font-size: 2.6rem;
}

.game-info { padding: 16px; text-align: center; }
.game-info strong { display: block; font-size: 0.96rem; margin-bottom: 3px; }
.game-info span { font-size: 0.82rem; color: var(--text-light); }

/* ===== STEPS ===== */
.steps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px; margin-bottom: 45px;
}

.step-card {
    background: var(--white); border-radius: 22px; padding: 32px 24px; text-align: center;
    border: 1px solid var(--glass-border); box-shadow: var(--shadow-sm); transition: all 0.3s ease;
}

.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; background: var(--gradient-main); color: white;
    border-radius: 16px; font-size: 1.35rem; font-weight: 800; margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.step-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { color: var(--text-light); line-height: 1.55; font-size: 0.95rem; }

.trust-note { margin-top: 20px; color: var(--text-light); font-size: 0.92rem; }
.trust-note i { color: var(--success); margin-right: 5px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--white); border-top: 1px solid var(--glass-border);
    padding: 60px 0 32px; margin-top: 70px;
}

.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 38px; margin-bottom: 42px;
}

.footer-brand p { color: var(--text-light); margin: 16px 0; line-height: 1.55; }
.age-18 {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(239, 68, 68, 0.1); color: #dc2626; padding: 8px 16px;
    border-radius: 10px; font-weight: 600; font-size: 0.9rem; margin-top: 10px;
}

.footer-col h4 { font-weight: 700; margin-bottom: 20px; color: var(--text); font-size: 1.05rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: var(--text-light); text-decoration: none; transition: color 0.2s; font-size: 0.96rem; }
.footer-links a:hover { color: var(--primary); }

.pay-methods { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.pay-badge {
    background: var(--bg-card); padding: 8px 12px; border-radius: 10px;
    font-size: 0.86rem; font-weight: 500; border: 1px solid var(--glass-border);
}

.footer-bottom {
    text-align: center; padding-top: 28px; border-top: 1px solid var(--glass-border);
    color: var(--text-light); font-size: 0.9rem;
}

.footer-bottom a { color: var(--primary); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ===== MOBILE ADAPTATION ===== */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    .hero { padding: 60px 0 45px; }
    .section { padding: 60px 0; }
    .hero-trust { gap: 20px; }
}

@media (max-width: 768px) {
    .header { padding: 14px 0; }
    .mobile-toggle { display: block; order: 3; }
    .nav-buttons {
        width: 100%; flex-direction: column; gap: 12px; display: none;
        order: 4; margin-top: 12px; padding-top: 14px;
        border-top: 1px solid var(--glass-border);
    }
    .nav-buttons.active { display: flex; }
    .btn { width: 100%; justify-content: center; }
    
    .hero-btns { flex-direction: column; align-items: center; gap: 14px; }
    .hero-btns .btn { max-width: 100%; }
    .hero-trust { flex-direction: column; gap: 14px; align-items: center; }
    
    .feat-grid, .games-grid, .steps-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-card { padding: 30px 18px; }
    .bonus-list { padding: 0 10px; }
    .bonus-actions { flex-direction: column; width: 100%; }
}

@media (max-width: 480px) {
    :root { font-size: 15px; }
    .container { padding: 0 16px; }
    .logo-img { height: 42px; border-radius: 10px; }
    .logo-name { font-size: 1.45rem; }
    .logo-tag { display: none; }
    
    .hero-title { font-size: 1.9rem; }
    .hero-sub { font-size: 0.98rem; }
    .btn-large { font-size: 1.1rem; padding: 18px 26px; }
    
    .feat-grid, .games-grid, .steps-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title { font-size: 1.5rem; margin-bottom: 26px; }
    .feat-card, .step-card { padding: 24px 18px; }
    .bonus-amount { font-size: 2.2rem; }
    .bonus-card h2 { font-size: 1.35rem; }
    .bonus-list li { font-size: 0.9rem; }
}

@media (max-width: 360px) {
    .btn { padding: 14px 18px; font-size: 0.92rem; }
    .btn-large { padding: 16px 20px; font-size: 0.98rem; }
    .hero-badge { font-size: 0.76rem; padding: 6px 14px; }
    .hero-trust, .trust-item { font-size: 0.88rem; }
}