:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9D976;
            --primary-gold-dark: #AA8928;
            --accent-emerald: #00875A;
            --accent-red: #E11D48;
            --main-bg: #0B0C10;
            --surface-bg: #1A1B22;
            --surface-elevated: #24252D;
            --overlay: rgba(0, 0, 0, 0.9);
            --primary-text: #FFFFFF;
            --secondary-text: #94A3B8;
            --muted-text: #64748B;
            --brand-text: #D4AF37;
            --inverse-text: #000000;
            --success: #22C55E;
            --error: #FF4D4F;
            --warning: #F59E0B;
            --jackpot-color: #FFD700;
            --default-border: #334155;
            --subtle-border: #1E293B;
            --active-border: #D4AF37;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--main-bg);
            color: var(--primary-text);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            color: var(--primary-text);
        }

        h1 { font-size: 24px; margin-bottom: 16px; color: var(--brand-text); }
        h2 { font-size: 20px; margin: 24px 0 16px; border-left: 4px solid var(--primary-gold); padding-left: 12px; }
        h3 { font-size: 16px; margin: 8px 0; }

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

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

        header {
            background-color: var(--surface-bg);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--default-border);
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .brand-logo img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }

        .brand-logo strong {
            font-size: 16px;
            font-weight: 400;
            font-family: 'Montserrat', sans-serif;
        }

        .header-actions {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }

        .btn-login {
            background-color: transparent;
            color: var(--primary-text);
            border: 1px solid var(--default-border);
        }

        .btn-register {
            background-color: var(--primary-gold);
            color: var(--inverse-text);
        }

        .banner-section {
            margin: 16px 0;
            width: 100%;
        }

        .banner-img {
            width: 100%;
            aspect-ratio: 2 / 1;
            object-fit: cover;
            border-radius: 12px;
            cursor: pointer;
            display: block;
        }

        .jackpot-container {
            background: linear-gradient(135deg, #1a1b22 0%, #24252d 100%);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-gold-dark);
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
        }

        .jackpot-label {
            color: var(--primary-gold);
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .jackpot-value {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 700;
            color: var(--jackpot-color);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .intro-card {
            background-color: var(--surface-bg);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 24px;
            border: 1px solid var(--subtle-border);
        }

        .intro-card p {
            color: var(--secondary-text);
            font-size: 14px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 24px;
        }

        .game-card {
            background-color: var(--surface-elevated);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--subtle-border);
            transition: transform 0.2s;
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        .game-info {
            padding: 10px;
        }

        .game-provider {
            font-size: 11px;
            color: var(--muted-text);
            text-transform: uppercase;
        }

        .payment-license {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 24px 0;
            background-color: var(--surface-bg);
            padding: 16px;
            border-radius: 12px;
        }

        .pl-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            font-size: 10px;
            color: var(--secondary-text);
            text-align: center;
        }

        .pl-item i {
            font-size: 20px;
            color: var(--primary-gold);
        }

        .guide-section {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
        }

        .guide-card {
            background-color: var(--surface-bg);
            padding: 16px;
            border-radius: 12px;
        }

        .guide-card h3 { color: var(--primary-gold-light); margin-bottom: 8px; }
        .guide-card p { font-size: 14px; color: var(--secondary-text); }

        .marquee-section {
            background-color: var(--surface-elevated);
            padding: 12px 0;
            margin: 24px 0;
            overflow: hidden;
            white-space: nowrap;
            border-top: 1px solid var(--subtle-border);
            border-bottom: 1px solid var(--subtle-border);
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 40s linear infinite;
        }

        .win-record {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-right: 30px;
            font-size: 13px;
        }

        .win-record .user { color: var(--primary-gold); font-weight: 600; }
        .win-record .amount { color: var(--success); font-weight: 700; }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .provider-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            padding: 20px;
            background-color: var(--surface-bg);
            border-radius: 12px;
            margin-bottom: 24px;
        }

        .provider-name {
            background-color: var(--surface-elevated);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: var(--secondary-text);
            border: 1px solid var(--default-border);
        }

        .reviews-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
        }

        .review-card {
            background-color: var(--surface-bg);
            padding: 16px;
            border-radius: 12px;
            border-left: 3px solid var(--accent-emerald);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .review-user { display: flex; align-items: center; gap: 8px; font-weight: 600; }
        .review-user i { color: var(--secondary-text); }
        .stars { color: var(--jackpot-color); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--muted-text); }
        .review-text { font-size: 13px; color: var(--secondary-text); font-style: italic; }

        .faq-section {
            margin-bottom: 32px;
        }

        .faq-item {
            margin-bottom: 12px;
            background-color: var(--surface-bg);
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 14px 16px;
            font-weight: 600;
            color: var(--primary-gold-light);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 16px 14px;
            color: var(--secondary-text);
            font-size: 14px;
        }

        .security-section {
            background-color: var(--surface-elevated);
            padding: 24px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 100px;
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 16px;
            font-size: 24px;
            color: var(--secondary-text);
        }

        .age-limit {
            display: inline-block;
            border: 2px solid var(--accent-red);
            color: var(--accent-red);
            padding: 4px 8px;
            border-radius: 50%;
            font-weight: 900;
            margin-bottom: 12px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--surface-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--default-border);
            z-index: 1001;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            color: var(--secondary-text);
        }

        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary-gold); }

        footer {
            background-color: var(--surface-bg);
            padding: 32px 16px 120px;
            border-top: 1px solid var(--default-border);
            text-align: center;
        }

        .footer-contacts {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 24px;
        }

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

        .footer-links a { font-size: 13px; color: var(--secondary-text); }
        .copyright { font-size: 12px; color: var(--muted-text); margin-top: 16px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
            h1 { font-size: 32px; }
            .jackpot-value { font-size: 48px; }
        }