:root {
            --brand-primary: #FFD700;
            --brand-primary-dark: #B8860B;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-grad-start: #1a1a1a;
            --bg-grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-highlight: #FFD700;
            --sem-success: #00C853;
            --sem-warning: #FFAB00;
            --sem-error: #FF1744;
            --sem-info: #2979FF;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-muted: #262626;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Roboto', 'Arial', sans-serif;
            --font-mono: 'Courier New', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
        }
        header {
            background: var(--bg-surface);
            border-bottom: 2px solid var(--brand-primary);
            padding: 0 15px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { 
            padding: 6px 15px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-family: var(--font-heading); 
            font-weight: 600; 
            font-size: 14px; 
            border: none; 
            transition: 0.3s; 
        }
        header .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        header .btn-register { background: var(--brand-primary); color: var(--bg-main); }
        header .btn:hover { opacity: 0.8; transform: translateY(-1px); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px 15px 100px; }
        
        .banner-container { 
            width: 100%; 
            aspect-ratio: 2/1; 
            overflow: hidden; 
            border-radius: 15px; 
            margin-bottom: 20px; 
            cursor: pointer;
            border: 1px solid var(--border-default);
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-grad-start), var(--bg-grad-end));
            border: 2px solid var(--brand-primary);
            border-radius: 15px;
            text-align: center;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { font-family: var(--font-heading); font-size: 18px; color: var(--text-secondary); margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-mono); 
            font-size: 32px; 
            color: var(--brand-primary); 
            font-weight: bold; 
            text-shadow: 0 0 10px var(--brand-primary);
        }

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

        .section-title { 
            font-family: var(--font-heading); 
            font-size: 22px; 
            color: var(--text-primary); 
            margin: 30px 0 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .section-title::before { content: ""; width: 4px; height: 24px; background: var(--brand-primary); display: inline-block; }

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

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

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

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--border-muted);
            font-size: 14px;
        }
        .lottery-table th { background: var(--border-muted); color: var(--brand-primary); }
        .lottery-table td:nth-child(3) { color: var(--sem-success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-box {
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            font-family: var(--font-heading);
            background: linear-gradient(45deg, var(--bg-surface), #252525);
            border: 1px solid var(--border-muted);
        }
        .provider-box:nth-child(odd) { color: var(--brand-primary); }
        .provider-box:nth-child(even) { color: var(--brand-secondary); }

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

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

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

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

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

        @media (max-width: 768px) {
            .links-grid { grid-template-columns: repeat(3, 1fr); }
            .provider-wall { grid-template-columns: repeat(2, 1fr); }
        }