:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --grad-start: #1a1a1a;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #262626;
            --font-headings: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Inter', 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'Roboto Mono', 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(--primary);
            padding: 0 15px;
            height: 65px;
            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 img { width: 25px; height: 25px; }
        header strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 6px; 
            cursor: pointer; 
            font-weight: 600; 
            font-family: var(--font-headings);
            transition: 0.3s;
            border: none;
            font-size: 14px;
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        header .btn-register { background: var(--primary); color: var(--text-inverse); }
        header .btn-register:hover { background: var(--primary-hover); }

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

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

        .jackpot-container {
            background: linear-gradient(45deg, #000, #1a1a1a, #000);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { color: var(--primary); font-family: var(--font-headings); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-mono); 
            font-size: 36px; 
            font-weight: 800; 
            color: #fff; 
            text-shadow: 0 0 10px var(--primary); 
        }

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

        .section-title { 
            font-family: var(--font-headings); 
            font-size: 24px; 
            color: var(--primary); 
            margin: 40px 0 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .section-title::after { content: ""; flex: 1; height: 1px; background: var(--border-default); }

        .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; 
            transition: 0.3s; 
            border: 1px solid var(--border-subtle);
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { 
            padding: 12px; 
            font-size: 16px; 
            text-align: center; 
            color: var(--text-primary); 
            font-family: var(--font-headings); 
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-subtle);
            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(--primary); }

        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-subtle);
        }
        .guide-card h3 { color: var(--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-subtle);
            font-size: 14px;
        }
        .lottery-table th { background: var(--border-subtle); color: var(--primary); }
        .lottery-table td:nth-child(3) { color: var(--success); font-weight: 700; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        .provider-box {
            padding: 15px;
            border-radius: 8px;
            font-weight: 700;
            text-align: center;
            text-transform: uppercase;
            font-size: 14px;
            background: linear-gradient(135deg, var(--bg-surface), #222);
            border: 1px solid var(--border-highlight);
            color: var(--primary);
        }

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

        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .faq-item {
            background: var(--bg-surface);
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            padding: 20px;
        }
        .faq-item h3 { color: var(--primary); font-size: 17px; margin-bottom: 10px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }

        .safety-box {
            background: linear-gradient(to right, #1a1a1a, #000);
            border: 1px solid var(--border-default);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            margin-top: 40px;
        }
        .safety-box .ssl-badge { 
            display: inline-flex; 
            align-items: center; 
            gap: 10px; 
            background: var(--success); 
            color: #000; 
            padding: 5px 15px; 
            border-radius: 20px; 
            font-weight: 700; 
            margin-bottom: 15px; 
        }
        .safety-box p { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .safety-box a { color: var(--primary); text-decoration: none; font-weight: 600; }

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

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

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