:root {
            --brand-primary: #FFD700;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF4500;
            --brand-highlight: #FFFF00;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --bg-gradient-start: #1F1F1F;
            --bg-gradient-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --error: #FF1744;
            --warning: #FFAB00;
            --info: #2979FF;
            --border-light: #333333;
            --border-medium: #4D4D4D;
            --border-gold: #B8860B;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-heading: 'Playfair Display', serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-primary); 
            line-height: 1.5; 
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        header {
            background: var(--bg-surface);
            border-bottom: 2px solid var(--border-gold);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-section { display: flex; align-items: center; gap: 10px; }
        header .logo-section img { width: 25px; height: 25px; }
        header .logo-section strong { font-size: 16px; font-weight: normal; color: var(--brand-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 4px; 
            cursor: pointer; 
            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(--text-inverse); }
        header .btn:hover { opacity: 0.8; transform: translateY(-2px); }

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

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
            border: 2px solid var(--border-gold);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--brand-primary); font-family: var(--font-heading); font-size: 24px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { 
            font-size: 48px; 
            font-weight: 800; 
            color: var(--brand-highlight); 
            text-shadow: 0 0 10px var(--brand-accent);
            font-family: 'Courier New', monospace;
        }

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

        .section-title { font-family: var(--font-heading); font-size: 28px; text-align: center; margin: 40px 0 20px; color: var(--brand-primary); position: relative; }
        .section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--brand-accent); margin: 10px auto; }

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

        .payment-methods { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 15px; 
            margin: 40px 0; 
            text-align: center; 
        }
        .payment-item { 
            background: var(--bg-surface); 
            padding: 15px; 
            border-radius: 10px; 
            border: 1px solid var(--border-medium); 
            color: var(--brand-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .payment-item i { font-size: 24px; color: var(--brand-primary); }

        .guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-light); }
        .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: 12px; overflow: hidden; margin-bottom: 40px; }
        .lottery-table th, .lottery-table td { padding: 12px; text-align: center; border-bottom: 1px solid var(--border-light); }
        .lottery-table th { background: var(--border-gold); color: var(--text-inverse); font-weight: 600; }
        .lottery-table td { color: var(--text-secondary); font-size: 14px; }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 10px; 
            margin-bottom: 40px; 
        }
        .provider-box { 
            padding: 15px; 
            text-align: center; 
            font-weight: bold; 
            border-radius: 8px; 
            background: linear-gradient(45deg, #222, #333);
            border: 1px solid var(--border-gold);
            color: var(--brand-primary);
        }

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

        .faq-section { margin-bottom: 40px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-light); }
        .faq-question { padding: 15px; background: #252525; color: var(--brand-primary); cursor: pointer; font-weight: 600; display: block; }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-banner { 
            background: linear-gradient(to right, #1a1a1a, #000); 
            padding: 30px; 
            border-radius: 15px; 
            text-align: center; 
            border: 1px solid var(--border-medium);
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-icon { color: var(--brand-primary); font-size: 14px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .security-icon i { font-size: 30px; }
        .security-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 15px; }
        .security-link { color: var(--brand-accent); font-weight: bold; text-decoration: underline; }

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

        footer { 
            background: var(--bg-surface); 
            padding: 40px 20px; 
            border-top: 1px solid var(--border-light); 
            text-align: center; 
        }
        footer .contact-row { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        footer .contact-link { color: var(--text-secondary); font-size: 14px; }
        footer .contact-link:hover { color: var(--brand-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-links a { color: var(--text-secondary); font-size: 14px; }
        footer .footer-links a:hover { color: var(--brand-primary); }
        footer .copyright { color: var(--text-disabled); font-size: 13px; border-top: 1px solid var(--border-light); padding-top: 20px; }

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