:root {
            --brand-primary: #FFD700;
            --brand-primary-dark: #B8860B;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #181A20;
            --bg-surface-light: #2B2F36;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #929AA5;
            --text-disabled: #474D57;
            --text-highlight: #FFD700;
            --semantic-success: #02C076;
            --semantic-warning: #F0B90B;
            --semantic-error: #F6465D;
            --semantic-info: #3498DB;
            --border-light: #2B2F36;
            --border-medium: #474D57;
            --border-strong: #FFD700;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: 'Roboto', sans-serif; 
            line-height: 1.5; 
            overflow-x: hidden;
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; }
        header strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 4px; 
            cursor: pointer; 
            font-family: 'Montserrat', sans-serif; 
            font-weight: 600; 
            border: none; 
            transition: 0.3s;
        }
        header .btn-login { background: transparent; color: var(--text-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(-2px); }

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

        .jackpot-section {
            background: linear-gradient(135deg, #B8860B 0%, #FFD700 50%, #B8860B 100%);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            color: #000;
        }
        .jackpot-title { font-family: 'Oswald', sans-serif; font-size: 18px; text-transform: uppercase; font-weight: bold; }
        .jackpot-amount { 
            font-family: 'Oswald', sans-serif; 
            font-size: 36px; 
            font-weight: bold; 
            display: block;
            margin: 10px 0;
        }

        .intro-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-medium);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            text-align: center;
        }
        .intro-card h1 { 
            font-family: 'Montserrat', sans-serif; 
            color: var(--brand-primary); 
            font-size: 28px; 
            margin-bottom: 15px; 
        }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            font-family: 'Montserrat', sans-serif; 
            color: var(--text-primary); 
            font-size: 24px; 
            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-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; 
            color: var(--text-primary); 
            text-align: center; 
            font-family: 'Roboto', sans-serif;
        }

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

        .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-left: 4px solid var(--brand-primary);
        }
        .guide-card h3 { margin-bottom: 10px; color: var(--brand-primary); }
        .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); 
        }
        .lottery-table th { background: var(--bg-surface-light); color: var(--brand-primary); }
        .lottery-table td { color: var(--text-secondary); font-size: 14px; }
        .win-amount { 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-light);
            padding: 15px;
            text-align: center;
            font-weight: bold;
            border-radius: 8px;
            border: 1px solid var(--border-medium);
        }
        .provider-box:nth-child(odd) { color: var(--brand-primary); }
        .provider-box:nth-child(even) { color: var(--brand-secondary); }

        .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);
        }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--brand-primary); }
        .review-name { font-weight: bold; }
        .review-stars { color: var(--brand-primary); font-size: 12px; 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 { margin-bottom: 30px; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 8px; 
            border: 1px solid var(--border-light); 
        }
        .faq-question { 
            padding: 15px; 
            cursor: pointer; 
            font-weight: bold; 
            display: flex; 
            justify-content: space-between; 
            color: var(--text-primary); 
        }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-footer {
            background: var(--bg-surface);
            border: 1px solid var(--border-medium);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        .security-badges { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        .badge { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 14px; }
        .badge i { color: var(--semantic-success); }
        .age-limit { 
            border: 2px solid var(--brand-error); 
            color: var(--brand-error); 
            border-radius: 50%; 
            width: 40px; 
            height: 40px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-weight: bold; 
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            border-top: 2px solid var(--brand-primary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            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;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--brand-primary); }

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

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