:root {
            --brand-primary: #FFD700;
            --brand-primary-dark: #C5A000;
            --brand-secondary: #FF4500;
            --brand-accent: #FF0000;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: #2D2D2D;
            --bg-contrast: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #757575;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFB300;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #333333;
            --border-strong: #4D4D4D;
            --border-brand: #FFD700;
            --font-primary: 'Montserrat', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --font-secondary: 'Open Sans', Arial, sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-primary); 
            line-height: 1.5; 
            overflow-x: hidden;
            padding-bottom: 80px;
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-brand);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: normal; color: var(--brand-primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header button { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-weight: 600; 
            transition: 0.3s; 
            border: none; 
            font-family: var(--font-primary);
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--brand-primary); }
        header .btn-register { background: var(--brand-primary); color: var(--text-inverse); }
        header button:hover { opacity: 0.8; transform: translateY(-2px); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; }

        .banner-container { 
            width: 100%; 
            aspect-ratio: 2/1; 
            border-radius: 15px; 
            overflow: hidden; 
            cursor: pointer; 
            margin-bottom: 20px; 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-contrast), var(--bg-surface));
            border: 2px solid var(--border-brand);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { color: var(--brand-primary); font-size: 20px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { 
            font-size: 48px; 
            font-weight: 900; 
            color: #FFF; 
            text-shadow: 0 0 10px var(--brand-primary);
            font-family: monospace;
        }

        .intro-card {
            background: var(--bg-surface);
            border-left: 5px solid var(--brand-primary);
            padding: 25px;
            border-radius: 0 15px 15px 0;
            margin-bottom: 30px;
        }
        .intro-card h1 { font-size: 32px; color: var(--brand-primary); margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 18px; }

        .section-title { 
            font-size: 24px; 
            color: var(--brand-primary); 
            margin: 30px 0 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            border-bottom: 1px solid var(--border-default); 
            padding-bottom: 10px;
        }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            text-decoration: none; 
            transition: 0.3s; 
            border: 1px solid var(--border-default);
            overflow: hidden;
        }
        .game-card:hover { transform: scale(1.03); border-color: var(--brand-primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { 
            padding: 12px; 
            font-size: 16px; 
            text-align: center; 
            color: var(--text-primary); 
            font-weight: 500;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 10px;
            margin-bottom: 30px;
        }
        .payment-item {
            background: var(--bg-overlay);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            border: 1px solid var(--border-default);
            color: var(--text-secondary);
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .payment-item i { font-size: 24px; color: var(--brand-primary); }

        .guides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-default);
        }
        .guide-card h3 { color: var(--brand-primary); margin-bottom: 10px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-default);
        }
        .lottery-table th { background: var(--bg-overlay); color: var(--brand-primary); }
        .lottery-table td { color: var(--text-secondary); font-size: 14px; }
        .win-amount { color: var(--success); font-weight: bold; }

        .providers-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-box {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            border-radius: 8px;
            color: var(--text-inverse);
            text-transform: uppercase;
        }
        .p-gold { background: var(--brand-primary); }
        .p-red { background: var(--brand-secondary); }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--brand-primary); }
        .review-name { font-weight: bold; color: var(--text-primary); }
        .review-stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .review-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .review-date { color: var(--text-muted); font-size: 12px; }

        .faq-container { margin-bottom: 30px; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 10px; 
            border: 1px solid var(--border-default);
            overflow: hidden;
        }
        .faq-question { 
            padding: 15px; 
            cursor: pointer; 
            background: var(--bg-overlay); 
            color: var(--brand-primary); 
            font-weight: 600; 
            display: flex; 
            justify-content: space-between;
        }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-footer {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .security-badges { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .badge { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 14px; }
        .badge i { color: var(--success); font-size: 20px; }
        .security-text { color: var(--text-muted); font-size: 13px; margin-bottom: 15px; }
        .security-links a { color: var(--brand-primary); text-decoration: none; font-size: 13px; margin: 0 10px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            border-top: 2px solid var(--border-brand);
            display: flex;
            justify-content: space-around;
            padding: 12px 0;
            z-index: 2000;
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            font-size: 11px; 
            gap: 5px; 
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--brand-primary); }

        footer { 
            background: var(--bg-contrast); 
            padding: 40px 20px; 
            text-align: center; 
            border-top: 1px solid var(--border-default); 
        }
        footer .contact-area { margin-bottom: 30px; }
        footer .contact-links { display: flex; justify-content: center; gap: 20px; margin-top: 10px; flex-wrap: wrap; }
        footer .contact-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        footer .footer-cols { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 20px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            text-align: left; 
        }
        footer .col-links { display: flex; flex-direction: column; gap: 8px; }
        footer .col-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: 0.3s; }
        footer .col-links a:hover { color: var(--brand-primary); }
        footer .copyright { color: var(--text-muted); font-size: 13px; border-top: 1px solid var(--border-default); padding-top: 20px; }

        @media (max-width: 768px) {
            .footer-cols { grid-template-columns: repeat(2, 1fr); }
            .intro-card h1 { font-size: 24px; }
            .jackpot-amount { font-size: 32px; }
        }