    :root {
        --bg: #1A202C;
        --surface: #2D3748;
        --card: #4A5568;
        --text: #ffffff;
        --muted: #A0AEC0;
        --accent: #C8FF00;
        --accent-2: #FF6B35;
        --accent-3: #9F7AEA;
        --success: #48BB78;
        --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(200, 255, 0, 0.05), transparent),
            radial-gradient(2px 2px at 40px 70px, rgba(255, 107, 53, 0.03), transparent),
            radial-gradient(1px 1px at 90px 40px, rgba(159, 122, 234, 0.04), transparent),
            radial-gradient(1px 1px at 130px 80px, rgba(200, 255, 0, 0.02), transparent),
            radial-gradient(2px 2px at 160px 30px, rgba(255, 107, 53, 0.03), 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(26, 32, 44, 0.95), rgba(26, 32, 44, 0.8));
        border-bottom: 1px solid rgba(200, 255, 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 img,
    .logo-section img {
        width: 150px;
    }

    .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(--surface);
        color: var(--text);
        background: rgba(45, 55, 72, 0.8);
        border-radius: 8px;
    }

    .btn-outline:hover {
        background: rgba(45, 55, 72, 1);
        border-color: var(--accent);
    }

    .btn-primary {
        background: var(--accent);
        border: none;
        color: var(--bg);
        border-radius: 8px;
        font-weight: 700;
    }

    .btn-primary:hover {
        background: #B8E600;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(200, 255, 0, 0.3);
    }

    .btn-play {
        background: var(--accent);
        border: none;
        color: var(--bg);
        font-weight: 700;
        border-radius: 8px;
    }

    .btn-play:hover {
        background: #B8E600;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(200, 255, 0, 0.3);
    }

    /* Hero Banner Slider */
    .hero-banner {
        margin: 30px 0;
    }

    .banner-slider {
        position: relative;
        height: 400px;
        border-radius: var(--radius);
        overflow: hidden;
        margin-bottom: 30px;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
    }

    .slide.active {
        opacity: 1;
    }

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

    .slide-content {
        position: relative;
        z-index: 4;
        flex: 1;
        max-width: 500px;
        margin-right: 320px;
    }

    .slide-text {
        color: var(--text);
    }

    .slide-title {
        font-size: 32px;
        font-weight: 800;
        margin: 0 0 30px 0;
        line-height: 1.2;
        color: var(--text);
    }

    .slide-description {
        font-size: 24px;
        font-weight: 600;
        margin: 0 0 20px 0;
        line-height: 1.2;
        color: var(--text);
    }

    .slide-overlay {
        position: absolute;
        bottom: 20px;
        right: 150px;
        width: 350px;
        height: 350px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 2;
        opacity: 0.8;
        animation: overlayFloat 6s ease-in-out infinite;
    }

    /* Разные анимации для разных слайдов */
    .slide[data-slide="1"] .slide-overlay {
        animation: overlayFloat 6s ease-in-out infinite;
    }

    .slide[data-slide="2"] .slide-overlay {
        animation: overlayPulse 4s ease-in-out infinite;
    }

    .slide[data-slide="3"] .slide-overlay {
        animation: overlayRotate 8s linear infinite;
    }

    @keyframes overlayFloat {
        0%, 100% {
            transform: translateY(0px) scale(1);
        }
        50% {
            transform: translateY(-10px) scale(1.02);
        }
    }

    @keyframes overlayPulse {
        0%, 100% {
            transform: scale(1);
            opacity: 0.8;
        }
        50% {
            transform: scale(1.05);
            opacity: 0.9;
        }
    }

    @keyframes overlayRotate {
        0% {
            transform: rotate(0deg) scale(1);
        }
        50% {
            transform: rotate(180deg) scale(1.03);
        }
        100% {
            transform: rotate(360deg) scale(1);
        }
    }

    /* Убраны старые стили для графических элементов */

    .slider-controls {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 20px;
        z-index: 5;
    }

    .slider-arrow {
        background: rgba(45, 55, 72, 0.8);
        border: none;
        color: var(--accent-2);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .slider-arrow:hover {
        background: rgba(45, 55, 72, 1);
        transform: scale(1.1);
    }

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

    .slider-dots {
        display: flex;
        gap: 10px;
    }

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

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

    .dot:hover {
        background: var(--accent);
    }

    /* Info Cards */
    .info-cards {
        margin: 30px 0;
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

    .info-card {
        background: var(--surface);
        border-radius: var(--radius);
        padding: 24px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .info-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        border-color: var(--accent);
    }

    .info-card.cardclick {
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .info-card.cardclick::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .info-card.cardclick:hover::before {
        left: 100%;
    }

    .info-card.cardclick:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 12px 30px rgba(200, 255, 0, 0.3);
        border-color: var(--accent);
    }

    .info-card.cardclick:active {
        transform: translateY(-2px) scale(1.01);
        transition: transform 0.1s ease;
    }

    .info-icon {
        position: relative;
        width: 60px;
        height: 60px;
        margin: 0 auto 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(200, 255, 0, 0.1);
        color: var(--accent);
    }

    .info-icon svg {
        width: 32px;
        height: 32px;
    }

    .info-icon.jackpot {
        background: rgba(255, 107, 53, 0.1);
        color: var(--accent-2);
    }

    .info-icon.support {
        background: rgba(159, 122, 234, 0.1);
        color: var(--accent-3);
    }

    .rating-stars {
        position: absolute;
        top: -8px;
        right: -8px;
        display: flex;
        gap: 2px;
    }

    .star {
        color: var(--accent);
        font-size: 12px;
    }

    .info-title {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 8px 0;
        color: var(--text);
    }

    .info-description {
        font-size: 14px;
        color: var(--muted);
        margin: 0;
    }

    /* 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(200, 255, 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-slider {
        overflow: hidden;
        position: relative;
        padding: 10px 0;
    }

    .providers-track {
        display: flex;
        gap: 20px;
        width: 100%;
        justify-content: center;
        padding: 0 20px;
    }

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

        .provider-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface);
        border-radius: 8px;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        min-width: 120px;
        height: 80px;
    }

    .provider-logo:hover {
        transform: translateY(-2px);
        border-color: var(--accent);
        box-shadow: 0 4px 15px rgba(200, 255, 0, 0.2);
    }

    .provider-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: brightness(0.8);
        transition: filter 0.3s ease;
    }

    .provider-logo:hover img {
        filter: brightness(1);
    }

    /* Payment Methods Section */
    .payment-methods-section {
        margin: 40px 0;
    }

    .payment-slider {
        overflow: hidden;
        position: relative;
        padding: 10px 0;
    }

    .payment-track {
        display: flex;
        gap: 20px;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 20px;
    }

    .payment-track::-webkit-scrollbar {
        display: none;
    }

    .payment-logo {
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        transition: all 0.3s ease;
    }

    .payment-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: brightness(0) invert(1);
        transition: filter 0.3s ease;
    }

    .payment-logo:hover img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
        
    }

    .game {
        background: var(--surface);
        border-radius: var(--radius);
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid rgba(255, 255, 255, 0.1);
        height: 160px;
    }

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

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

    .game-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .game:hover .game-overlay {
        opacity: 1;
    }

    .play-button {
        width: 50px;
        height: 50px;
        background: var(--accent);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bg);
        transition: all 0.3s ease;
    }

    .play-button:hover {
        transform: scale(1.1);
        background: #B8E600;
    }

    .play-button svg {
        width: 20px;
        height: 20px;
        margin-left: 2px;
    }

    .new-badge {
        position: absolute;
        top: 8px;
        left: 8px;
        background: var(--accent);
        color: var(--bg);
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .game-info-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 20px 12px 12px;
        color: var(--text);
    }

    .game-title {
        font-weight: 600;
        color: var(--text);
        margin-bottom: 4px;
        font-size: 15px;
        line-height: 1.3;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    }

    .game-provider {
        font-size: 11px;
        color: var(--muted);
        font-weight: 500;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    }

    /* 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 {
        padding: 10px 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: 10px 0;
    }

    .faq-title {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
        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-track {
            gap: 15px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0 20px;
        }

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

        .provider-logo {
            width: 70px;
            height: 70px;
            padding: 10px;
            flex-shrink: 0;
        }

        .payment-track {
            gap: 15px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0 20px;
        }

        .payment-track::-webkit-scrollbar {
            display: none;
        }

        .payment-logo {
            width: 65px;
            height: 65px;
            padding: 9px;
            flex-shrink: 0;
        }
    }

    @media (max-width: 768px) {
        .banner-slider {
            height: 300px;
        }

        .slide {
            padding: 0 20px;
        }

        .slide-title {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .slide-description {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .slide-content {
            margin-right: 270px;
        }

        .slide-overlay {
            opacity: 0.7;
            width: 250px;
            height: 250px;
            bottom: 15px;
            right: 15px;
        }

        .gift-box {
            width: 60px;
            height: 60px;
        }

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

        .info-card {
            padding: 20px;
        }

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

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


        .play-button {
            width: 40px;
            height: 40px;
        }

        .play-button svg {
            width: 16px;
            height: 16px;
        }

        .providers-track {
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0 16px;
        }

        .payment-track {
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0 16px;
        }

        .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: 80px;
            min-width: 100px;
        }

        .payment-logo {
            width: 80px;
            height: 80px;
            min-width: 80px;
        }
    }

    @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-slider {
            height: 250px;
        }

        .slide {
            padding: 0 16px;
        }

        .slide-title {
            font-size: 20px;
            margin-bottom: 16px;
        }

        .slide-description {
            font-size: 16px;
            margin-bottom: 12px;
        }

        .slide-content {
            margin-right: 220px;
        }

        .slide-overlay {
            opacity: 0.6;
            width: 200px;
            height: 200px;
            bottom: 10px;
            right: 10px;
        }

        .gift-box {
            width: 50px;
            height: 50px;
        }

        .info-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .info-card.cardclick:hover {
            transform: translateY(-2px) scale(1.01);
        }

        .slider-controls {
            bottom: 10px;
            gap: 15px;
        }

        .slider-arrow {
            width: 35px;
            height: 35px;
        }

        .dot {
            width: 10px;
            height: 10px;
        }

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

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


        .play-button {
            width: 35px;
            height: 35px;
        }

        .play-button svg {
            width: 14px;
            height: 14px;
        }

        .game-info-overlay {
            padding: 16px 8px 8px;
        }

        .game-title {
            font-size: 12px;
        }

        .game-provider {
            font-size: 10px;
        }

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

        .providers-track {
            gap: 12px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0 16px;
            flex-wrap: nowrap;
            justify-content: flex-start;
        }

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

        .provider-logo {
            width: 55px;
            height: 55px;
            padding: 8px;
            flex-shrink: 0;
        }

        .payment-track {
            gap: 12px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0 16px;
            flex-wrap: nowrap;
            justify-content: flex-start;
        }

        .payment-track::-webkit-scrollbar {
            display: none;
        }

        .payment-logo {
            width: 55px;
            height: 55px;
            padding: 8px;
            flex-shrink: 0;
        }

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

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

        .btn-outline {
            display: none;
        }

        .info-cards {
            display: none;
        }
    }