:root {
            --primary: #FFD700;
            --primary-hover: #FFC500;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2D2D2D;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-on-brand: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #262626;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-heading: 'Playfair Display', serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { 
            background-color: 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-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-highlight);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 60px;
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { 
            padding: 6px 15px; 
            border-radius: 4px; 
            font-size: 14px; 
            font-weight: 600; 
            cursor: pointer; 
            border: none; 
            transition: 0.3s; 
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        header .btn-login:hover { background: var(--border-subtle); }
        header .btn-register { background: var(--primary); color: var(--text-on-brand); }
        header .btn-register: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;
            border: 1px solid var(--border-default);
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, #B8860B, #FFD700, #B8860B);
            color: #000;
            text-align: center;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        }
        .jackpot-title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; text-transform: uppercase; }
        .jackpot-amount { 
            font-family: var(--font-heading); 
            font-size: 32px; 
            font-weight: 900; 
            margin: 5px 0;
            display: block;
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--border-default);
            margin-bottom: 30px;
        }
        .intro-card h1 { 
            font-family: var(--font-heading); 
            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-heading); 
            font-size: 22px; 
            color: var(--primary); 
            margin-bottom: 20px; 
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .section-title::before, .section-title::after { content: ""; width: 30px; height: 2px; background: var(--primary); }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-subtle); 
            transition: 0.3s; 
            text-align: center;
        }
        .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: 15px; 
            color: var(--text-primary); 
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis; 
        }

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

        .guides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .guide-item {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--primary);
        }
        .guide-item h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .lottery-container {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 40px;
            border: 1px solid var(--border-default);
        }
        .lottery-table { width: 100%; border-collapse: collapse; font-size: 14px; }
        .lottery-table th { text-align: left; color: var(--primary); padding: 10px; border-bottom: 1px solid var(--border-subtle); }
        .lottery-table td { padding: 12px 10px; border-bottom: 1px solid var(--border-subtle); color: var(--text-secondary); }
        .win-amount { color: var(--success); font-weight: 700; }

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-block {
            background: var(--bg-elevated);
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            border: 1px solid var(--border-subtle);
            color: var(--primary);
            text-transform: uppercase;
            font-size: 14px;
        }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .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: 15px; }
        .comment-header i { font-size: 40px; color: var(--secondary); }
        .comment-user { font-weight: 600; font-size: 15px; }
        .comment-stars { color: var(--primary); font-size: 12px; margin-bottom: 10px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); }

        .faq-section { margin-bottom: 40px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 15px 20px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; color: var(--primary); }
        .faq-answer { padding: 0 20px 15px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-footer {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--border-default);
            margin-bottom: 40px;
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .sec-item { display: flex; align-items: center; gap: 8px; color: var(--secondary); font-size: 14px; }
        .sec-item i { color: var(--success); }
        .sec-text { color: var(--text-secondary); font-size: 13px; max-width: 800px; margin: 0 auto 15px; }
        .sec-link { color: var(--primary); font-size: 13px; text-decoration: underline; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            border-top: 2px solid var(--border-highlight);
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 65px;
            z-index: 2000;
            padding: 0 10px;
        }
        .nav-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            color: var(--text-secondary); 
            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 20px 100px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-contact { margin-bottom: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .footer-contact a { color: var(--text-secondary); font-size: 14px; }
        .footer-contact a:hover { color: var(--primary); }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            text-align: left; 
        }
        .footer-links a { color: var(--text-secondary); font-size: 13px; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-disabled); font-size: 12px; margin-top: 30px; }

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