:root {
            --brand-primary: #FFD700;
            --brand-primary-variant: #C5A000;
            --brand-secondary: #E60012;
            --brand-accent: #00FFC2;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-gradient-start: #1A1A1A;
            --bg-gradient-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --semantic-success: #00C853;
            --semantic-warning: #FFAB00;
            --semantic-error: #FF5252;
            --semantic-info: #2196F3;
            --border-light: #333333;
            --border-medium: #4D4D4D;
            --border-gold: #D4AF37;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --font-accent: 'Oswald', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background-color: var(--bg-main); 
            background-image: linear-gradient(to bottom, var(--bg-gradient-start), var(--bg-gradient-end));
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: normal; }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 4px; 
            cursor: pointer; 
            font-family: var(--font-accent); 
            font-weight: 600; 
            text-transform: uppercase; 
            transition: 0.3s; 
            border: none; 
            font-size: 14px;
        }
        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; }
        
        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            border-radius: 15px; 
            overflow: hidden; 
            cursor: pointer; 
            border: 2px solid var(--border-gold); 
            margin-bottom: 20px;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: var(--bg-surface);
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            border: 1px solid var(--border-medium);
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-family: var(--font-accent); color: var(--brand-primary); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-accent); 
            font-size: 36px; 
            color: #fff; 
            font-weight: bold; 
            text-shadow: 0 0 10px var(--brand-primary);
        }

        .intro-card {
            background: linear-gradient(135deg, var(--bg-surface), #2a2a2a);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border-left: 5px solid var(--brand-primary);
            margin-bottom: 30px;
        }
        .intro-card h1 { font-family: var(--font-heading); font-size: 28px; color: var(--brand-primary); margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; max-width: 800px; margin: 0 auto; }

        .section-title { font-family: var(--font-heading); font-size: 24px; color: var(--brand-primary); margin: 30px 0 20px; text-align: center; text-transform: uppercase; position: relative; }
        .section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--brand-secondary); 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; 
            text-decoration: none; 
            color: inherit; 
            border: 1px solid var(--border-light); 
            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: 16px; text-align: center; font-family: var(--font-accent); }

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

        .guide-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: 12px; border: 1px solid var(--border-light); }
        .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-light); font-size: 14px; }
        .lottery-table th { background: var(--brand-primary-variant); color: var(--text-inverse); font-family: var(--font-accent); }
        .lottery-table td:nth-child(3) { color: var(--semantic-success); font-weight: bold; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .provider-box { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 8px; 
            text-align: center; 
            font-weight: bold; 
            color: var(--brand-primary); 
            border: 1px solid var(--border-gold); 
            font-family: var(--font-accent);
        }

        .review-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: 12px; border: 1px solid var(--border-light); position: relative; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--brand-primary); }
        .review-header .name { font-weight: bold; }
        .review-stars { color: #FFD700; font-size: 13px; margin-bottom: 10px; }
        .review-body { 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; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); padding: 20px; border-radius: 10px; border: 1px solid var(--border-light); }
        .faq-item h3 { color: var(--brand-primary); font-size: 17px; margin-bottom: 10px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }

        .security-footer { 
            text-align: center; 
            padding: 30px 20px; 
            background: var(--bg-surface); 
            border-radius: 15px; 
            border: 1px solid var(--border-medium); 
            margin-bottom: 30px;
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-item { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 14px; }
        .security-item i { color: var(--semantic-success); }
        .security-text { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
        .security-text a { color: var(--brand-primary); text-decoration: none; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--bg-surface); 
            display: flex; 
            justify-content: space-around; 
            align-items: center; 
            padding: 10px 0; 
            border-top: 2px solid var(--brand-primary); 
            z-index: 2000; 
            box-shadow: 0 -5px 15px 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: 12px; 
            gap: 5px; 
            transition: 0.3s;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--brand-primary); }

        footer { 
            background: #000; 
            padding: 40px 20px 100px; 
            text-align: center; 
            border-top: 1px solid var(--border-light); 
        }
        footer .contact-row { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        footer .contact-row a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        footer .contact-row a:hover { color: var(--brand-primary); }
        footer .links-grid { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            text-align: center;
        }
        footer .links-grid a { color: var(--text-secondary); text-decoration: none; font-size: 13px; transition: 0.3s; }
        footer .links-grid 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) {
            .links-grid { grid-template-columns: repeat(3, 1fr); }
            .intro-card h1 { font-size: 22px; }
            .jackpot-amount { font-size: 28px; }
        }