:root {
            --primary: #FFB800;
            --primary-hover: #E6A600;
            --secondary: #00A650;
            --accent: #FF4D4D;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --bg-modal: #181A20;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --text-accent: #FFB800;
            --text-inverse: #0B0E11;
            --success: #0ECB81;
            --warning: #F0B90B;
            --error: #F6465D;
            --info: #3772FF;
            --border-low: #2B3139;
            --border-default: #474D57;
            --border-high: #FFB800;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', 'Montserrat', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-low);
        }
        header .brand {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--text-primary);
        }
        header .brand img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header .brand strong {
            font-size: 16px;
            font-weight: 400;
            text-transform: capitalize;
        }
        header .actions {
            display: flex;
            gap: 10px;
        }
        .btn {
            border: none;
            border-radius: 4px;
            padding: 8px 16px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background-color: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background-color: var(--primary-hover); }

        main { max-width: 1200px; margin: 0 auto; padding: 16px; }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: var(--bg-surface);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-label {
            color: var(--primary);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 900;
            color: #FFFFFF;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
        }

        .intro-card {
            background: var(--bg-elevated);
            padding: 24px;
            border-radius: 16px;
            margin-bottom: 30px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }

        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: 700;
        }
        .section-title i { color: var(--primary); }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 30px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-low);
        }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payments-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            border: 1px solid var(--border-low);
        }
        .payment-item i { font-size: 20px; color: var(--primary); }

        .guides-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-bottom: 30px;
        }
        .guide-card {
            background: var(--bg-modal);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-low);
        }
        .guide-card h2 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }

        .lottery-marquee {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 30px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--primary);
        }
        .marquee-content {
            display: flex;
            flex-direction: column;
            gap: 10px;
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .winner-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            padding: 5px 0;
            border-bottom: 1px dashed var(--border-low);
        }
        .winner-name { color: var(--primary); font-weight: 600; }
        .winner-amount { color: var(--success); font-weight: 700; }

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-block {
            background: var(--gold-gradient);
            color: var(--text-inverse);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 700;
        }

        .reviews-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        .review-card {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: 12px;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            background: var(--bg-surface);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }
        .review-info h3 { font-size: 16px; }
        .stars { color: var(--warning); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; }

        .faq-section { margin-bottom: 30px; }
        .faq-item {
            background: var(--bg-surface);
            border-radius: 8px;
            margin-bottom: 10px;
            padding: 15px;
            border: 1px solid var(--border-low);
        }
        .faq-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-box {
            background: linear-gradient(135deg, #1e2329 0%, #0b0e11 100%);
            padding: 24px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid var(--border-default);
            margin-bottom: 30px;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: var(--success);
        }
        .security-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
        .age-limit {
            display: inline-block;
            border: 2px solid var(--error);
            color: var(--error);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 36px;
            font-weight: 800;
            margin: 10px 0;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-modal);
            height: 65px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-low);
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            gap: 4px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px 100px;
            text-align: center;
            border-top: 1px solid var(--border-low);
        }
        .footer-contacts {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-contacts a { color: var(--text-primary); text-decoration: none; font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-low); padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guides-container { grid-template-columns: repeat(2, 1fr); }
            .payments-grid { grid-template-columns: repeat(8, 1fr); }
        }