    :root {
        --bg: #0a0e1a;
        --surface: #0f1420;
        --card: #121a2a;
        --text: #ffffff;
        --muted: #9aa7ce;
        --accent: #ff6b9d;
        --accent-2: #4fd4ff;
        --accent-3: #ffd700;
        --success: #29d398;
        --radius: 16px;
        --radius-lg: 22px;
        --shadow: 0 10px 30px rgba(0, 0, 0, .5);
    }

    * {
        box-sizing: border-box;
    }

    html,
    body {
        height: 100%;
    }

    body {
        margin: 0;
        font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
        background: var(--bg);
        color: var(--text);
        line-height: 1.45;
        position: relative;
    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.15), transparent),
            radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
            radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.2), transparent),
            radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent),
            radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.15), transparent);
        background-repeat: repeat;
        background-size: 200px 100px;
        z-index: -1;
        animation: stars 20s linear infinite;
    }

    @keyframes stars {
        0% { transform: translateY(0); }
        100% { transform: translateY(-100px); }
    }

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

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 16px;
    }

    /* Header */
    header {
        position: sticky;
        top: 0;
        z-index: 50;
        backdrop-filter: saturate(1.2) blur(8px);
        background: linear-gradient(180deg, rgba(10, 14, 26, 0.95), rgba(10, 14, 26, 0.8));
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px;
    }

    .header-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .logo {
        display: flex;
        align-items: center;
        font-weight: 800;
        letter-spacing: 1px;
        font-size: 24px;
        color: var(--text);
    }

    .logo-text {
        background: linear-gradient(135deg, var(--accent-2), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .search-container {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 999px;
        padding: 8px 16px;
        gap: 8px;
    }

    .search-input {
        background: none;
        border: none;
        color: var(--text);
        font-size: 14px;
        outline: none;
        width: 200px;
    }

    .search-input::placeholder {
        color: var(--muted);
    }

    .search-btn {
        background: none;
        border: none;
        color: var(--muted);
        cursor: pointer;
        padding: 4px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .search-btn:hover {
        color: var(--accent-2);
        background: rgba(79, 212, 255, 0.1);
    }

    .search-btn svg {
        width: 16px;
        height: 16px;
    }

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

    .bonus-badge {
        background: var(--accent);
        color: white;
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        padding: 10px 16px;
        border-radius: 999px;
        color: var(--text);
        font-weight: 600;
        transition: .25s ease;
        background: transparent;
        cursor: pointer;
    }

    .btn:hover {
        transform: translateY(-1px);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .btn-outline {
        border: 1.5px solid var(--accent-2);
        color: var(--accent-2);
        background: rgba(79, 212, 255, 0.08);
    }

    .btn-primary {
        background: var(--accent);
        border: none;
        color: white;
    }

    .btn-primary:hover {
        background: #ff5a8a;
        transform: translateY(-1px);
    }

    /* Banner Slider */
.banner-slider {
    position: relative;
    height: 400px;
    margin: 20px 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    position: relative;
    width: 33.333%;
    height: 100%;
    overflow: hidden;
}

.banner-slide[data-slide="1"] {
    background-image: url('images/banner1.webp'); 
    background-size: cover;
    background-position: center;
}

.banner-slide[data-slide="2"] {
    background-image: url('images/banner3.webp');
    background-size: cover;
    background-position: center;
}

.banner-slide[data-slide="3"] {
    background-image: url('images/banner2.webp'); 
    background-size: cover;
    background-position: center;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 40px;
}

.banner-text {
    flex: 1;
    max-width: 500px;
}

.main-headline {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: var(--text);
}

.sub-headline {
    font-size: 18px;
    color: var(--muted);
    margin: 0 0 24px 0;
    font-weight: 500;
    line-height: 1.4;
}

.btn-bonus {
    background: linear-gradient(135deg, var(--accent-2), #878bff);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 8px 25px rgba(79, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(79, 212, 255, 0.4);
}

.banner-image {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 4;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-2);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Slider States */
.slider-track[data-current="1"] {
    transform: translateX(0);
}

.slider-track[data-current="2"] {
    transform: translateX(-33.333%);
}

.slider-track[data-current="3"] {
    transform: translateX(-66.666%);
}

/* Animations */
@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes comet {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

    /* Game Categories */
    .game-categories {
        margin: 30px 0;
    }

    .categories-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .section-title {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 24px;
        font-weight: 800;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .heart-icon {
        width: 24px;
        height: 24px;
        color: var(--accent);
    }

    .view-all {
        color: var(--accent-2);
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .view-all:hover {
        color: var(--accent);
    }

    .categories-list {
        display: flex;
        align-items: center;
        gap: 16px;
        overflow: auto;
        padding: 10px 2px 14px;
        scrollbar-width: none;
    }

    .categories-list::-webkit-scrollbar {
        display: none;
    }

    .cat {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        color: var(--muted);
        white-space: nowrap;
        transition: .2s;
        cursor: pointer;
        font-weight: 500;
    }

    .cat svg {
        width: 18px;
        height: 18px;
        opacity: .9;
    }

    .cat:hover {
        color: var(--text);
        border-color: rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.08);
    }

    .cat.active {
        background: white;
        color: var(--bg);
        border-color: white;
        font-weight: 600;
    }

    .more-categories {
        background: rgba(79, 212, 255, 0.1);
        border-color: rgba(79, 212, 255, 0.3);
        color: var(--accent-2);
    }

    .search-cat, .providers-cat {
        background: rgba(255, 107, 157, 0.1);
        border-color: rgba(255, 107, 157, 0.3);
        color: var(--accent);
    }

    /* Games Grid */
    .games-section {
        margin: 30px 0;
    }

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

    .game {
        position: relative;
        aspect-ratio: 1;
        border-radius: var(--radius);
        overflow: hidden;
        background: var(--card);
        border: 1px solid rgba(255, 255, 255, 0.06);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .game:hover {
        transform: translateY(-4px);
        border-color: rgba(79, 212, 255, 0.3);
        box-shadow: 0 8px 25px rgba(79, 212, 255, 0.2);
    }

    .game:active {
        transform: translateY(-2px);
    }

    .game-thumb {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        filter: saturate(1.05);
    }

    .game::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7));
    }

    .game-info {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 2;
    }

    .game-title {
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 4px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    }

    .game-provider {
        font-size: 12px;
        color: var(--muted);
        font-weight: 500;
    }

    /* Chat Button */
    .chat-button {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--accent-2);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(79, 212, 255, 0.3);
        transition: all 0.3s ease;
        z-index: 100;
    }

    .chat-button:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(79, 212, 255, 0.4);
    }

    .chat-button svg {
        width: 24px;
        height: 24px;
    }

    /* FAQ Styles */
    .faq-section {
        padding: 40px 0;
        border-radius: var(--radius-lg);
    }

    .faq-title {
        font-size: 20px;
        font-weight: 700;
        margin: 0;
        color: var(--text);
    }

    .section-subtitle {
        color: var(--muted);
        font-size: 16px;
        margin: 8px 0 0 0;
        text-align: center;
    }

    .faq-container {
        max-width: 800px;
        margin: 40px auto 0;
    }

    .faq-item {
        margin-bottom: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.02);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.04);
    }

    .faq-question {
        width: 100%;
        padding: 20px 24px;
        background: none;
        border: none;
        color: var(--text);
        font-size: 16px;
        font-weight: 600;
        text-align: left;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: rgba(255, 255, 255, 0.04);
        color: var(--accent);
    }

    .faq-question:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.06);
    }

    .faq-question span {
        flex: 1;
        line-height: 1.5;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        color: var(--accent);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        background: rgba(0, 0, 0, 0.2);
    }

    .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 24px;
    }

    .faq-answer p {
        margin: 0;
        color: var(--muted);
        line-height: 1.6;
        font-size: 15px;
    }

    /* Footer */
    footer {
        margin-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: #000000;
        color: white;
    }

    .footer-inner {
        padding: 40px 0 20px;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 30px;
        gap: 40px;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .logo-section {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .footer-logo {
        font-size: 32px;
        font-weight: 800;
        color: var(--accent-2);
        margin: 0;
        letter-spacing: 2px;
    }

    .footer-icons {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-weight: 600;
        font-size: 12px;
    }

    .age-restriction {
        background: var(--accent-2);
        color: white;
    }

    .footer-links {
        display: flex;
        gap: 40px;
    }

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

    .links-column a {
        color: white;
        font-size: 14px;
        transition: color 0.3s ease;
        white-space: nowrap;
    }

    .links-column a:hover {
        color: var(--accent-2);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .banner-slider {
            height: 350px;
        }
        
        .banner-content {
            padding: 0 30px;
        }
        
        .games-grid {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .search-input {
            width: 150px;
        }
    }

    @media (max-width: 768px) {
        .banner-slider {
            height: 300px;
        }
        
        .banner-content {
            padding: 0 20px;
            flex-direction: column;
            text-align: center;
            justify-content: center;
        }
        
        .banner-text {
            margin-bottom: 20px;
        }
        
        .main-headline {
            font-size: 24px;
        }
        
        .sub-headline {
            font-size: 16px;
        }
        
        .games-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .header-left {
            flex-direction: column;
            gap: 15px;
        }
        
        .search-input {
            width: 200px;
        }
        
        .categories-list {
            gap: 12px;
        }
        
        .cat {
            padding: 10px 14px;
            font-size: 14px;
        }
        
        .chat-button {
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
        }
        
        .slide-indicators {
            top: 15px;
            right: 15px;
        }
        
        .slider-nav {
            bottom: 15px;
        }
    }

    @media (max-width: 680px) {
        .header-inner {
            flex-direction: column;
            gap: 5px;
            padding: 5px;
        }
        
        .banner-slider {
            height: 250px;
            margin: 15px 0;
        }
        
        .banner-content {
            padding: 0 15px;
        }
        
        .main-headline {
            font-size: 20px;
            margin-bottom: 12px;
        }
        
        .sub-headline {
            font-size: 14px;
            margin-bottom: 16px;
        }
        
        .btn-bonus {
            padding: 12px 24px;
            font-size: 14px;
        }
        
        .games-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .categories-list {
            gap: 8px;
            flex-wrap: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
            padding: 10px 2px 14px;
        }
        
        .categories-list::-webkit-scrollbar {
            display: none;
        }
        
        .cat {
            padding: 8px 12px;
            font-size: 13px;
            flex-shrink: 0;
            white-space: nowrap;
        }
        
        .section-title {
            font-size: 20px;
        }
        
        .footer-top {
            flex-direction: column;
            gap: 30px;
        }
        
        .footer-links {
            flex-direction: column;
            gap: 20px;
        }
        
        .raccoon-astronaut,
        .crypto-badge,
        .treasure-chest {
            width: 120px;
            height: 120px;
        }
        
        .space-shuttle {
            width: 80px;
            height: 40px;
        }
        
        .planet-bg {
            width: 50px;
            height: 50px;
        }
        .footer-links, .search-container {
            display:none;
        }
        .banner-text {
            flex:none;
        }
        .footer-top {
            align-items: center;
        }
        .footer-left {
            flex-direction: row;
        }
    }

    @media (max-width: 480px) {
        .banner-slider {
            height: 200px;
        }
        
        .main-headline {
            font-size: 18px;
        }
        
        .sub-headline {
            font-size: 13px;
        }
        
        .btn-bonus {
            padding: 10px 20px;
            font-size: 13px;
        }
        
        .games-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }
        
        .categories-list {
            flex-wrap: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
            gap: 6px;
            padding: 8px 2px 12px;
        }
        
        .categories-list::-webkit-scrollbar {
            display: none;
        }
        
        .cat {
            padding: 6px 10px;
            font-size: 12px;
            flex-shrink: 0;
            white-space: nowrap;
        }
        
        .chat-button {
            bottom: 15px;
            right: 15px;
            width: 45px;
            height: 45px;
        }
        
        .chat-button svg {
            width: 20px;
            height: 20px;
        }
        
        .raccoon-astronaut,
        .crypto-badge,
        .treasure-chest {
            width: 80px;
            height: 80px;
        }
        
        .space-shuttle {
            width: 60px;
            height: 30px;
        }
        
        .planet-bg {
            width: 40px;
            height: 40px;
        }
        
        .slide-indicators {
            top: 10px;
            right: 10px;
        }
        
        .slider-nav {
            bottom: 10px;
        }
        
        .nav-arrow {
            width: 35px;
            height: 35px;
        }
    }
    .logo svg, .logo-section {
        max-width:200px;
    }