:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2D2D2D;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-light: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, Arial, sans-serif;
            --font-body: 'Roboto', 'Open Sans', sans-serif;
        }
        * { 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; 
            padding-bottom: 70px;
        }
        header { 
            background-color: var(--bg-surface); 
            padding: 10px 20px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            border-bottom: 2px solid var(--border-strong);
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-family: var(--font-heading); font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-weight: 600; 
            transition: 0.3s; 
            border: none; 
            font-family: var(--font-heading);
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        .btn-reg { background: var(--primary); color: var(--text-inverse); }
        .btn-reg:hover { background: var(--primary-hover); }
        
        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 15px; margin-bottom: 20px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .banner-container img:hover { transform: scale(1.02); }

        .jackpot-box { 
            background: linear-gradient(45deg, #B8860B, #FFD700, #B8860B); 
            color: #000; 
            text-align: center; 
            padding: 15px; 
            border-radius: 10px; 
            margin-bottom: 20px; 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        }
        .jackpot-box h2 { font-family: var(--font-heading); font-size: 18px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-family: 'Courier New', monospace; font-size: 32px; font-weight: bold; }

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

        section { margin-bottom: 40px; }
        h2 { font-family: var(--font-heading); color: var(--primary); margin-bottom: 20px; text-align: center; font-size: 24px; }
        
        .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-light); 
            transition: 0.3s; 
        }
        .game-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { color: var(--text-primary); padding: 12px; font-size: 16px; text-align: center; font-family: var(--font-heading); }

        .payment-methods { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); 
            gap: 10px; 
            text-align: center;
        }
        .payment-item { 
            background: var(--bg-elevated); 
            padding: 15px; 
            border-radius: 10px; 
            color: var(--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-fill, minmax(300px, 1fr)); gap: 20px; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: 10px; border: 1px solid var(--border-medium); }
        .guide-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guide-item p { color: var(--text-secondary); font-size: 14px; }

        .lottery-table { width: 100%; border-collapse: collapse; background: var(--bg-surface); border-radius: 10px; overflow: hidden; }
        .lottery-table th, .lottery-table td { padding: 12px; text-align: center; border-bottom: 1px solid var(--border-light); }
        .lottery-table th { background: var(--bg-elevated); color: var(--primary); }
        .lottery-table tr:last-child td { border-bottom: none; }

        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block { padding: 15px; border-radius: 8px; font-weight: bold; text-align: center; }
        .provider-block:nth-child(odd) { background: var(--primary); color: var(--text-inverse); }
        .provider-block:nth-child(even) { background: var(--bg-elevated); color: var(--primary); border: 1px solid var(--primary); }

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

        .faq-section { display: grid; gap: 15px; }
        .faq-item { background: var(--bg-surface); padding: 20px; border-radius: 10px; border: 1px solid var(--border-medium); }
        .faq-item h3 { color: var(--primary); font-size: 18px; margin-bottom: 10px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }

        .security-footer { 
            background: var(--bg-surface); 
            padding: 30px; 
            border-radius: 15px; 
            text-align: center; 
            border: 1px dashed var(--primary); 
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-icon { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--primary); }
        .security-icon i { font-size: 30px; }
        .security-icon span { font-size: 12px; font-weight: bold; }
        .security-text { font-size: 14px; color: var(--text-secondary); }
        .security-text a { color: var(--primary); text-decoration: none; }

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

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

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