    :root {
        --bg: #000000;
        --surface: #1A1A1A;
        --card: #2A2A2A;
        --text: #ffffff;
        --muted: #AAAAAA;
        --accent: #FFD700;
        --accent-2: #FF00FF;
        --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, 215, 0, 0.1), transparent),
            radial-gradient(2px 2px at 40px 70px, rgba(255, 0, 255, 0.05), transparent),
            radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.08), transparent),
            radial-gradient(1px 1px at 130px 80px, rgba(255, 0, 255, 0.03), transparent),
            radial-gradient(2px 2px at 160px 30px, rgba(255, 215, 0, 0.06), 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(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8));
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }

    .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: 32px;
        color: var(--accent);
    }

    .logo-text {
        background: linear-gradient(135deg, var(--accent), #FFA500);
        -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);
        background: rgba(255, 215, 0, 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: 8px;
        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);
        color: var(--accent);
        background: rgba(255, 215, 0, 0.08);
        border-radius: 8px;
    }

    .btn-outline:hover {
        background: rgba(255, 215, 0, 0.15);
    }

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

    .btn-primary:hover {
        background: #E600E6;
    }

    .btn-play {
        background: white;
        border: 1px solid var(--accent);
        color: black;
        font-weight: 700;
    }

    .btn-play:hover {
        background: var(--accent);
        color: black;
    }

    /* Top Banners */
    .top-banners {
        margin: 30px 0;
    }

    .banner-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .banner {
        position: relative;
        height: 300px;
        border-radius: var(--radius);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 30px;
    }

    .banner-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: 1;
    }

    .banner-content {
        position: relative;
        z-index: 3;
        flex: 1;
    }

    .banner-text {
        color: black;
    }

    .banner-title {
        font-size: 24px;
        font-weight: 800;
        margin: 0 0 20px 0;
        line-height: 1.2;
    }

    .banner-image {
        position: relative;
        z-index: 3;
        width: 250px;
        height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .banner-cashback {
        background: var(--accent);
    }

    .banner-cashback .banner-text {
        color: black;
    }

    .banner-ertp {
        background: var(--surface);
    }

    .banner-ertp .banner-text {
        color: white;
    }

    .banner-ertp .banner-bg {
        opacity: 0.3;
    }

    /* 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: 700;
        margin: 0;
        color: var(--text);
        flex: 1;
    }

    .section-title svg {
        width: 24px;
        height: 24px;
        color: var(--accent);
    }

    .section-icon {
        width: 28px;
        height: 28px;
        color: var(--accent);
        flex-shrink: 0;
    }

    .categories-list {
        display: grid;
        grid-template-columns: repeat(12, 120px);
        gap: 12px;
        overflow-x: auto;
        padding: 10px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

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

    .cat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 16px 12px;
        background: var(--card);
        border: 1px solid transparent;
        border-radius: var(--radius);
        color: var(--text);
        text-align: center;
        font-size: 12px;
        font-weight: 500;
        transition: all 0.3s ease;
        cursor: pointer;
        justify-content: center;
    }

    .cat:hover {
        border-color: var(--accent);
        transform: translateY(-2px);
    }

    .cat.active {
        border-color: var(--accent);
        background: rgba(255, 215, 0, 0.1);
    }

    .cat svg {
        width: 24px;
        height: 24px;
        color: var(--accent);
    }

    .cat.active svg {
        color: var(--accent);
    }

    /* Games Section */
    .games-section {
        margin: 40px 0;
    }

    .section-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .view-all {
        color: black;
        background: var(--accent);
        padding: 8px 16px;
        border-radius: 6px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
    }

    .view-all:hover {
        background: #FFA500;
        transform: translateY(-1px);
    }

    .section-nav {
        display: flex;
        gap: 8px;
    }

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

    .nav-arrow:hover {
        background: var(--accent);
        color: black;
        border-color: var(--accent);
    }

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

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

    /* Providers Section */
    .providers-section {
        margin: 40px 0;
    }

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

    .provider {
        background: var(--card);
        border-radius: var(--radius);
        padding: 20px;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid transparent;
    }

    .provider:hover {
        transform: translateY(-4px);
        border-color: var(--accent);
        box-shadow: var(--shadow);
    }

    .provider-logo {
        width: 120px;
        height: 120px;
        margin: 0 auto 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 16px;
    }

    .provider-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .provider-info {
        text-align: center;
    }

    .provider-name {
        font-weight: 600;
        color: var(--text);
        margin-bottom: 4px;
        font-size: 14px;
    }

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

    .game {
        background: var(--card);
        border-radius: var(--radius);
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .game:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

    .game-thumb {
        width: 100%;
        height: 120px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .game-info {
        padding: 16px;
    }

    .game-title {
        font-weight: 600;
        color: var(--text);
        margin-bottom: 4px;
        font-size: 14px;
    }

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

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

    .chat-button:hover {
        transform: scale(1.1);
        background: #FFA500;
    }

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

    /* Text Section */
    .text-section {
        margin: 60px 0;
        padding: 40px 0;
        background: var(--surface);
        border-radius: var(--radius);
    }


    .text-content h2 {
        color: var(--accent);
        margin: 30px 0 20px 0;
    }

    .text-content p {
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .text-content ul,
    .text-content ol {
        margin: 20px 0;
        padding-left: 20px;
    }

    .text-content li {
        margin-bottom: 10px;
    }

    /* FAQ Section */
    .faq-section {
        margin: 60px 0;
    }

    .faq-title {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 40px;
        color: var(--text);
    }

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

    .faq-item {
        background: var(--card);
        border-radius: var(--radius);
        margin-bottom: 16px;
        overflow: hidden;
    }

    .faq-question {
        width: 100%;
        padding: 20px;
        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;
        transition: background-color 0.3s ease;
    }

    .faq-question:hover {
        background: rgba(255, 255, 255, 0.05);
    }

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

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

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

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

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

    /* Footer */
    footer {
        background: var(--surface);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 60px;
    }

    .footer-inner {
        padding: 40px 16px;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 40px;
        align-items: start;
    }

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

    .logo-section svg {
        width: 200px;
        height: 40px;
    }

    .footer-icons {
        display: flex;
        gap: 16px;
    }

    .icon {
        padding: 8px 16px;
        background: var(--card);
        border-radius: var(--radius);
        font-size: 20px;
        font-weight: 600;
        color: var(--text);
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

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

    .links-column a {
        color: var(--muted);
        font-size: 14px;
        transition: color 0.3s ease;
    }

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

    /* Responsive Design */
    @media (max-width: 1200px) {
        .games-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        .providers-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 768px) {
        .banner-row {
            grid-template-columns: 1fr;
        }

        .banner {
            height: 250px;
            padding: 0 20px;
        }

        .banner-title {
            font-size: 18px;
        }

        .banner-image {
            width: 200px;
            height: 200px;
        }

        .categories-list {
            grid-template-columns: repeat(10, 100px);
        }

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

        .providers-grid {
            grid-template-columns: repeat(6, 200px);
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 10px 0;
        }

        .providers-grid::-webkit-scrollbar {
            display: none;
        }

        .footer-top {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .footer-links {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .banner-ertp,
        .search-container {
            display: none;
        }

        .footer-left {
            justify-content: center;
        }

        .provider-logo {
            width: 100px;
            height: 100px;
        }
    }

    @media (max-width: 480px) {
        .header-inner {
            gap: 16px;
            padding: 20px 16px;
        }

        .header-left {
            flex-direction: column;
            gap: 16px;
        }

        .search-container {
            width: 100%;
        }

        .search-input {
            width: 100%;
        }

        .banner {
            height: 250px;
            padding: 0 16px;
        }

        .banner-title {
            font-size: 16px;
            margin-bottom: 12px;
        }

        .banner-image {
            width: 200px;
            height: 200px;
        }

        .games-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .categories-list {
            grid-template-columns: repeat(12, 80px);
        }

        .providers-grid {
            grid-template-columns: repeat(6, 160px);
            gap: 16px;
        }

        .search-container,
        .section-nav {
            display: none;
        }

        .section-header {
            justify-content: space-between;
        }
    }