    :root {
        --bg: #0a1020;
        /* общий фон */
        --surface: #0f1730;
        /* поверхности/карточки */
        --card: #121c3b;
        /* карточки игр */
        --text: #e8ebff;
        --muted: #9aa7ce;
        --accent: #00AEFF;
        /* синий акцент */
        --accent-2: #4FD4FF;
        /* фиолетовый акцент */
        --success: #29d398;
        --radius: 16px;
        --radius-lg: 22px;
        --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    }

    * {
        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;
    }

    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, 16, 32, .85), rgba(10, 16, 32, .35));
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 800;
        letter-spacing: .5px
    }

    .logo-mark {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--accent), var(--accent-2));
        display: grid;
        place-items: center;
        box-shadow: var(--shadow)
    }

    .logo-mark svg {
        width: 22px;
        height: 22px;
        color: white
    }

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

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

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

    .btn-outline {
        border: 1.5px solid #36C6FF;
        color: #CFEFFF;
        background: rgba(54, 198, 255, .08);
        box-shadow: inset 0 0 0 1px rgba(54, 198, 255, .12)
    }

    .btn-primary:hover {
        filter: saturate(1.1);
        transform: translateY(-1px)
    }

    /* Banners */
    .banners {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin: 18px 0 10px
    }

    .banner {
        position: relative;
        height: 240px;
        border-radius: var(--radius-lg);
        overflow: hidden;
        background: linear-gradient(135deg, rgba(92, 140, 255, .25), rgba(156, 91, 255, .15));
        border: 1px solid rgba(255, 255, 255, .06)
    }

    .banner .bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        filter: saturate(1.1) contrast(1.05)
    }

    /* Замените фон на свои изображения: */
    .banner-left .bg {
        /* background-image: var(--left-banner, radial-gradient(800px 400px at 10% 20%, rgba(100, 76, 240, .35), transparent 60%)); */
        background-image: url(images/banner1.webp);
    }

    .banner-right .bg {
        /* background-image: var(--right-banner, radial-gradient(800px 400px at 90% 20%, rgba(36, 146, 255, .35), transparent 60%)); */
        background-image: url(images/banner2.webp);
    }

    .banner .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(10, 16, 32, .55), rgba(10, 16, 32, .0) 55%)
    }

    .banner-right .overlay {
        background: linear-gradient(270deg, rgba(10, 16, 32, .55), rgba(10, 16, 32, .0) 55%)
    }

    .banner .content {
        position: absolute;
        inset: 0;
        display: grid;
        align-content: center;
        gap: 12px;
        padding: 24px;
        max-width: 520px
    }

    .banner-left .content {
        justify-items: start
    }

    .banner-right .content {
        justify-items: end;
        margin-left: auto
    }

    .kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: var(--muted);
        background: rgba(255, 255, 255, .06);
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, .08)
    }

    .banner h3 {
        margin: 0;
        font-size: clamp(20px, 2.2vw, 28px);
        line-height: 1.2
    }

    .banner p {
        margin: 0;
        color: var(--muted)
    }

    /* Category bar */
    .cats {
        display: flex;
        align-items: center;
        gap: 16px;
        overflow: auto;
        padding: 10px 2px 14px;
        scrollbar-width: none
    }

    .cats::-webkit-scrollbar {
        display: none
    }

    .cat {
        --_bg: rgba(255, 255, 255, .04);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--_bg);
        border: 1px solid rgba(255, 255, 255, .06);
        color: var(--muted);
        white-space: nowrap;
        transition: .2s
    }

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

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

    .cat.active {
        background: linear-gradient(135deg, rgba(91, 140, 255, .15), rgba(156, 91, 255, .12));
        color: var(--text);
        border-color: rgba(91, 140, 255, .35)
    }

    /* Sections */
    section {
        margin: 18px 0 26px
    }

    .section-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px
    }

    .section-head h4 {
        margin: 0;
        font-size: 20px
    }

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

    .game {
        position: relative;
        aspect-ratio: 11 / 11;
        border-radius: 16px;
        overflow: hidden;
        background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
        border: 1px solid rgba(255, 255, 255, .06)
    }

    .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, .55));
    }

    .game .title {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 2;
        font-weight: 700;
        text-shadow: 0 2px 10px rgba(0, 0, 0, .4)
    }

    .game .actions {
        position: absolute;
        inset: auto 12px 12px 12px;
        display: flex;
        gap: 8px;
        z-index: 3;
        opacity: 0;
        transform: translateY(6px);
        transition: .2s
    }

    .game:hover .actions {
        opacity: 1;
        transform: translateY(0)
    }

    .pill {
        flex: 1;
        text-align: center;
        padding: 8px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, .14);
        background: rgba(10, 16, 32, .55);
        backdrop-filter: blur(6px);
        font-weight: 600
    }

    .pill.primary {
        background: linear-gradient(135deg, var(--accent), var(--accent-2));
        border: none
    }

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

    .provider {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 64px;
        border-radius: 14px;
        background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
        border: 1px solid rgba(255, 255, 255, .06);
        color: var(--muted);
        font-weight: 700;
        letter-spacing: .4px
    }

    /* Footer */
    footer {
        margin-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, .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);
        margin: 0;
        letter-spacing: 2px;
    }

    .partner-btn {
        background: var(--accent);
        color: white;
        padding: 10px 20px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .partner-btn:hover {
        background: var(--accent-2);
        transform: translateY(-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);
        color: white;
    }

    .gcb-cert {
        background: #ff6b35;
        color: white;
        flex-direction: column;
        border-radius: 8px;
        width: auto;
        padding: 8px 12px;
        height: auto;
    }

    .gcb-text {
        font-weight: 700;
        font-size: 14px;
    }

    .gcb-sub {
        font-size: 10px;
        opacity: 0.9;
    }

    .telegram {
        background: var(--accent);
        color: white;
    }

    .telegram svg {
        width: 20px;
        height: 20px;
    }

    .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);
    }

    .payment-methods {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin: 30px 0;
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .payment-methods::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari and Opera */
    }

    .payment-logo {
        background: var(--accent);
        color: white;
        padding: 8px 16px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 12px;
        min-width: 80px;
        text-align: center;
    }

    .legal-info {
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .legal-info p {
        color: #9aa7ce;
        font-size: 12px;
        line-height: 1.6;
        margin: 0 0 10px 0;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .copyright {
        font-size: 11px;
        opacity: 0.8;
        margin-top: 15px !important;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .banners {
            grid-template-columns: 1fr;
            height: auto
        }

        .banner {
            height: 220px
        }

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

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

        .banner-right {
            display: none;
        }

        .footer-top {
            gap: 30px;
        }

        .footer-links {
            gap: 30px;
        }

        .payment-methods {
            gap: 15px;
        }

        footer .footer-top {
            gap: 30px !important;
        }

        footer .footer-links {
            gap: 30px !important;
        }

        footer .payment-methods {
            gap: 15px !important;
        }
    }

    @media (max-width: 680px) {
        .header-inner {
            padding: 12px 0
        }

        .banner {
            height: 200px
        }

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

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

        .header-inner {
            flex-direction: column;
            gap: 15px;
        }

        /* Footer адаптация для планшетов */
        footer .footer-top {
            flex-direction: column !important;
            gap: 30px !important;
        }

        footer .footer-links {
            flex-direction: column !important;
            gap: 20px !important;
        }

        footer .payment-methods {
            gap: 15px !important;
        }

        footer .payment-logo {
            min-width: 70px !important;
            font-size: 11px !important;
            padding: 6px 12px !important;
        }

        footer .footer-logo {
            font-size: 28px !important;
        }

        footer .partner-btn {
            padding: 8px 16px !important;
            font-size: 13px !important;
        }

        footer .footer-icons {
            gap: 12px !important;
        }

        footer .icon {
            width: 35px !important;
            height: 35px !important;
            font-size: 11px !important;
        }

        footer .legal-info p {
            font-size: 11px !important;
            max-width: 100% !important;
        }
    }

    @media (max-width: 420px) {
        .grid-games {
            grid-template-columns: 1fr
        }

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

        /* Footer адаптация для мобильных */
        footer .footer-inner {
            padding: 30px 0 15px !important;
        }

        footer .footer-top {
            gap: 25px !important;
        }

        footer .logo-section {
            flex-direction: column !important;
            gap: 15px !important;
            text-align: center !important;
        }

        footer .footer-logo {
            font-size: 24px !important;
        }

        footer .partner-btn {
            padding: 6px 14px !important;
            font-size: 12px !important;
        }

        footer .footer-icons {
            justify-content: center !important;
            gap: 10px !important;
        }

        footer .icon {
            width: 30px !important;
            height: 30px !important;
            font-size: 10px !important;
        }

        footer .footer-links {
            gap: 15px !important;
        }

        footer .links-column a {
            font-size: 13px !important;
            text-align: center !important;
        }

        footer .payment-methods {
            gap: 10px !important;
            margin: 20px 0 !important;
        }

        footer .payment-logo {
            min-width: 60px !important;
            font-size: 10px !important;
            padding: 5px 10px !important;
        }

        footer .legal-info {
            margin-top: 20px !important;
            padding-top: 15px !important;
        }

        footer .legal-info p {
            font-size: 10px !important;
            line-height: 1.5 !important;
        }

        footer .copyright {
            font-size: 10px !important;
        }
    }

    @media (max-width: 320px) {

        /* Footer адаптация для очень маленьких экранов */
        footer .footer-inner {
            padding: 20px 0 10px !important;
        }

        footer .footer-top {
            gap: 20px !important;
        }

        footer .footer-logo {
            font-size: 20px !important;
        }

        footer .partner-btn {
            padding: 5px 12px !important;
            font-size: 11px !important;
        }

        footer .footer-icons {
            gap: 8px !important;
        }

        footer .icon {
            width: 25px !important;
            height: 25px !important;
            font-size: 9px !important;
        }

        footer .footer-links {
            gap: 12px !important;
        }

        footer .links-column a {
            font-size: 12px !important;
        }

        footer .payment-methods {
            gap: 8px !important;
            margin: 15px 0 !important;
            flex-wrap: wrap !important;
            padding: 8px 0 !important;
        }

        footer .payment-logo {
            min-width: 60px !important;
            font-size: 10px !important;
            padding: 5px 10px !important;
        }

        footer .legal-info p {
            font-size: 9px !important;
        }

        footer .copyright {
            font-size: 9px !important;
        }
    }

    .provider img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 10px;
        transition: all 0.3s ease;
    }

    .provider {
        transition: all 0.3s ease;
    }

    .provider:hover {
        transform: scale(1.1);
        transition: all 0.3s ease;
        filter: brightness(1.1);
    }

    .provider:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
        filter: brightness(1.1);
    }

    /* Дополнительные базовые стили для мобильной адаптивности */
    @media (max-width: 768px) {
        footer .container {
            padding: 0 12px;
        }

        footer .footer-top {
            flex-direction: column;
            gap: 25px;
        }

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

        footer .links-column a {
            text-align: center;
        }

        .footer-top {
            display: flex;
            align-items: center;
        }

        .legal-info {
            padding: 10px;
        }

        footer .payment-methods {
            position: relative;
            justify-content: flex-start;
            flex-wrap: nowrap;
            gap: 0;
            padding: 15px 0;
            overflow: hidden;
            scroll-behavior: smooth;
        }

        footer .payment-logo {
            min-width: 80px;
            font-size: 12px;
            padding: 8px 16px;
            flex-shrink: 0;
            margin-right: 15px;
        }

        /* Кнопки навигации карусели для планшетов */
        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .carousel-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--accent);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: var(--accent-2);
            transform: scale(1.1);
        }

        .carousel-btn:disabled {
            background: #666;
            cursor: not-allowed;
            transform: none;
        }
    }

    @media (max-width: 480px) {
        footer .container {
            padding: 0 8px;
        }

        footer .logo-section {
            flex-direction: column;
            text-align: center;
        }

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

        footer .payment-methods {
            position: relative;
            justify-content: flex-start;
            gap: 0;
            flex-wrap: nowrap;
            padding: 10px 0;
            overflow: hidden;
            scroll-behavior: smooth;
        }

        footer .payment-logo {
            min-width: 70px;
            font-size: 11px;
            padding: 6px 12px;
            flex-shrink: 0;
            margin-right: 10px;
        }

        .footer-links {
            display: none;
        }

        /* Кнопки навигации карусели */
        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }

        .carousel-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--accent);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: var(--accent-2);
            transform: scale(1.1);
        }

        .carousel-btn:disabled {
            background: #666;
            cursor: not-allowed;
            transform: none;
        }

        .payment-methods {
            display: none;
        }
    }

    .payment-methods svg {
        width: 100px;
        height: 100px;
        object-fit: contain;
        padding: 10px;
        transition: all 0.3s ease;
        color: #fff;
        fill: #8194c8;
    }

    .payment-methods svg:hover {
        transform: scale(1.1);
        transition: all 0.3s ease;
        filter: brightness(1.1);
    }

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

    .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, .08);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, .02);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .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, .04);
        color: var(--accent);
    }

    .faq-question:focus {
        outline: none;
        background: rgba(255, 255, 255, .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, .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;
    }

    /* FAQ Responsive */
    @media (max-width: 768px) {
        .faq-section {
            margin: 40px 0;
            padding: 30px 0;
        }

        .faq-container {
            margin: 30px auto 0;
        }

        .faq-question {
            padding: 16px 20px;
            font-size: 15px;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 16px;
        }

        .faq-answer p {
            font-size: 14px;
        }

        .footer-left {
            flex-direction: row;
            gap: 20px;
            padding: 20px;
        }

    }

    @media (max-width: 480px) {
        .faq-section {
            margin: 30px 0;
            padding: 20px 0;
        }

        .faq-container {
            margin: 20px auto 0;
        }

        .faq-question {
            padding: 14px 16px;
            font-size: 14px;
        }

        .faq-item.active .faq-answer {
            padding: 0 16px 14px;
        }

        .faq-answer p {
            font-size: 13px;
        }
    }