:root {
    --primary: #7c3aed;
    --primary-glow: rgba(124, 58, 237, 0.5);
    --secondary: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.5);
    --dark-bg: #0a0a0f;
    --card-bg: rgba(23, 23, 35, 0.8);
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gradient-1: linear-gradient(135deg, #7c3aed, #06b6d4);
    --gradient-2: linear-gradient(135deg, #06b6d4, #7c3aed);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.75);
    --shadow-glow: 0 0 40px var(--primary-glow);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 25px var(--primary-glow);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 25px var(--primary-glow); }
    50% { box-shadow: 0 0 45px var(--primary-glow), 0 0 60px var(--secondary-glow); }
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 16px;
    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.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before { left: 100%; }

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 40px var(--primary-glow);
    font-size: 1.2rem;
    padding: 20px 48px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px var(--primary-glow), 0 0 80px var(--secondary-glow);
}

.btn-secondary {
    background: var(--glass);
    color: var(--text);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.btn-bonus {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    font-size: 1.1rem;
    padding: 16px 32px;
    animation: bonusPulse 2s infinite;
}

@keyframes bonusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
}

.btn-bonus:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.6);
}

.btn-large {
    font-size: 1.4rem;
    padding: 24px 60px;
    border-radius: 20px;
}

.btn-full { width: 100%; }

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-30px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-badge i { color: var(--success); }

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-item { text-align: center; }

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.card:hover::before { opacity: 1; }

.card-icon {
    width: 60px; height: 60px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px var(--primary-glow);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-text { color: var(--text-muted); }

/* ===== GAMES GRID ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
}

.game-image {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #1e1e2e, #2d2d44);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.game-info { padding: 16px; }
.game-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.game-provider { font-size: 0.8rem; color: var(--text-muted); }

/* ===== BONUS BANNER ===== */
.bonus-banner {
    background: var(--gradient-2);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

.bonus-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.bonus-banner .content { position: relative; z-index: 1; }
.bonus-amount {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 20px 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.bonus-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 25px 0;
}
.bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.bonus-item i { color: #fff; font-size: 1.3rem; }

/* ===== FOOTER ===== */
.footer {
    background: rgba(15, 15, 25, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
}

.payment-badge {
    background: var(--glass);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* ===== UTILITIES ===== */
.text-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.text-link:hover { color: var(--primary); text-decoration: underline; }

.lucky-up-mention {
    color: var(--secondary);
    font-weight: 700;
}

/* ===== MOBILE ===== */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
}

@media (max-width: 992px) {
    .hero-stats { gap: 25px; }
    .stat-value { font-size: 1.7rem; }
}

@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: 16px;
        display: none;
    }
    .auth-buttons.active { display: flex; }
    .hero { padding: 60px 0 40px; }
    .section { padding: 60px 0; }
    .btn { width: 100%; justify-content: center; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .bonus-banner { padding: 30px 24px; }
    .bonus-list { flex-direction: column; gap: 15px; }
}

@media (max-width: 480px) {
    .logo-text { font-size: 1.4rem; }
    .logo-icon { width: 40px; height: 40px; font-size: 1.2rem; }
    .hero-title { font-size: 2rem; }
    .btn-primary, .btn-large { font-size: 1.1rem; padding: 18px 36px; }
    .card { padding: 24px; }
    .games-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ===== LOGO STYLES ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== MOBILE LOGO ===== */
@media (max-width: 480px) {
    .logo-image { height: 40px; }
    .logo-text { font-size: 1.4rem; }
    .logo-subtext { display: none; }
}
:root {
    --primary: #7c3aed;
    --primary-glow: rgba(124, 58, 237, 0.5);
    --secondary: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.5);
    --dark-bg: #0a0a0f;
    --card-bg: rgba(23, 23, 35, 0.85);
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gradient-1: linear-gradient(135deg, #7c3aed, #06b6d4);
    --gradient-2: linear-gradient(135deg, #06b6d4, #7c3aed);
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.75);
    --shadow-glow: 0 0 40px var(--primary-glow);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--dark-bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 50%);
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 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: 46px;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
}

.logo-name {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-sub {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-toggle:active {
    background: var(--glass);
}

.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    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);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    touch-action: manipulation;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}

.btn:hover::before { left: 100%; }

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 8px 30px var(--primary-glow);
    padding: 18px 38px;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px var(--primary-glow), 0 0 60px var(--secondary-glow);
}

.btn-secondary {
    background: var(--glass);
    color: var(--text);
    border: 1.5px solid var(--glass-border);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-bonus {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 16px 34px;
    font-size: 1.1rem;
    animation: pulseBonus 2.5s infinite;
}

@keyframes pulseBonus {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(245, 158, 11, 0); }
}

.btn-large {
    font-size: 1.25rem;
    padding: 20px 44px;
    border-radius: 16px;
    font-weight: 800;
}

/* ===== HERO ===== */
.hero {
    padding: 70px 0 50px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 22px;
    color: var(--text-muted);
}

.hero-badge i { color: var(--success); }

.hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 32px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 12px 16px;
    background: var(--glass);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    min-width: 110px;
}

.stat-val {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== SECTIONS & GRIDS ===== */
.section { padding: 70px 0; }

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 36px;
}

.brand {
    color: var(--secondary);
    font-weight: 700;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.card-icon {
    width: 56px; height: 56px;
    background: var(--gradient-1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    box-shadow: 0 8px 25px var(--primary-glow);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.card p { color: var(--text-muted); font-size: 0.95rem; }

.cta-wrap { text-align: center; margin-top: 16px; }

/* ===== BONUS BANNER ===== */
.bonus-section { padding: 40px 0; }

.bonus-card {
    background: var(--gradient-2);
    border-radius: 24px;
    padding: 44px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateBg 25s linear infinite;
}

@keyframes rotateBg { to { transform: rotate(360deg); } }

.bonus-card h2 {
    position: relative; z-index: 1;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 18px;
}

.bonus-val {
    position: relative; z-index: 1;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.bonus-list {
    position: relative; z-index: 1;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
}

.bonus-list li {
    background: rgba(0,0,0,0.25);
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bonus-list i { color: #fff; }

.bonus-cta {
    position: relative; z-index: 1;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== GAMES GRID ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 16px;
    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(-5px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.25);
}

.game-img {
    width: 100%; height: 130px;
    background: linear-gradient(135deg, #1e1e2e, #2a2a40);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem;
}

.game-info { padding: 16px; text-align: center; }
.game-title { font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
.game-provider { font-size: 0.8rem; color: var(--text-muted); }

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
    margin-bottom: 45px;
}

.step-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.step-num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 50px; height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 14px;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.step-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; }
.trust-note { color: var(--text-muted); font-size: 0.9rem; margin-top: 18px; }

/* ===== FOOTER ===== */
.footer {
    background: rgba(12, 12, 20, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p { color: var(--text-muted); margin: 16px 0 20px; line-height: 1.5; }
.footer-title { font-weight: 700; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }

.pay-methods {
    display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px;
}
.pay-badge {
    background: var(--glass);
    padding: 8px 12px; border-radius: 8px; font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.88rem;
}

.age-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
    padding: 8px 14px; border-radius: 8px; font-weight: 600; margin-top: 12px;
}

/* ===== MOBILE ADAPTATION ===== */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    .hero { padding: 55px 0 40px; }
    .section { padding: 55px 0; }
    .hero-stats { gap: 16px; }
    .stat { min-width: 100px; padding: 10px 12px; }
}

@media (max-width: 768px) {
    .header { padding: 12px 0; }
    .mobile-toggle { display: block; order: 3; }
    .auth-buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;
        display: none;
        order: 4;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--glass-border);
    }
    .auth-buttons.active { display: flex; }
    .btn { width: 100%; justify-content: center; }
    
    .hero-buttons { flex-direction: column; align-items: center; gap: 14px; }
    .hero-buttons .btn { max-width: 100%; }
    .hero-stats { flex-direction: column; gap: 12px; align-items: center; }
    .stat { width: 80%; max-width: 320px; }
    
    .cards-grid, .games-grid, .steps-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-card { padding: 32px 20px; }
    .bonus-list { flex-direction: column; align-items: center; gap: 10px; }
    .bonus-list li { width: 100%; max-width: 340px; justify-content: center; }
    .bonus-cta { flex-direction: column; width: 100%; }
}

@media (max-width: 480px) {
    :root { font-size: 15px; }
    .container { padding: 0 16px; }
    .logo-img { height: 40px; }
    .logo-name { font-size: 1.4rem; }
    .logo-sub { display: none; }
    
    .hero-title { font-size: 1.85rem; }
    .hero-subtitle { font-size: 0.98rem; }
    .btn-large { font-size: 1.1rem; padding: 18px 24px; }
    
    .cards-grid, .games-grid, .steps-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title { font-size: 1.45rem; margin-bottom: 28px; }
    .card, .step-card { padding: 22px 18px; }
    .bonus-val { font-size: 2.1rem; }
    .bonus-card h2 { font-size: 1.4rem; }
}

@media (max-width: 360px) {
    .btn { padding: 14px 20px; font-size: 0.95rem; }
    .btn-large { padding: 16px 22px; font-size: 1rem; }
    .hero-badge { font-size: 0.78rem; padding: 6px 12px; }
}