:root {
            --primary: #FFD700;
            --secondary: #B8860B;
            --accent: #FF4500;
            --highlight: #FFFACD;
            --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-inverse: #000000;
            --success: #00C853;
            --warning: #FFC107;
            --error: #FF1744;
            --info: #2979FF;
            --border-subtle: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        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; object-fit: contain; }
        header strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            font-size: 14px;
        }
        .btn-login { background-color: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background-color: var(--primary); color: var(--text-inverse); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }

        main { padding: 20px 15px; max-width: 1200px; margin: 0 auto; }
        .banner-container { 
            width: 100%; 
            aspect-ratio: 2/1; 
            overflow: hidden; 
            border-radius: 15px; 
            cursor: pointer; 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(45deg, var(--bg-elevated), var(--bg-surface));
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            margin: 20px 0;
            border: 1px solid var(--border-medium);
        }
        .jackpot-title { font-family: 'Montserrat', sans-serif; color: var(--primary); font-size: 20px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { 
            font-family: 'Playfair Display', serif; 
            font-size: 40px; 
            color: #FFF; 
            font-weight: bold; 
            text-shadow: 0 0 10px var(--primary);
        }

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

        .section-title { 
            font-family: 'Montserrat', sans-serif; 
            font-size: 24px; 
            color: var(--primary); 
            margin: 40px 0 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px;
        }
        .section-title::before { content: ''; width: 4px; height: 24px; background: var(--accent); 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-subtle); 
            transition: 0.3s;
        }
        .game-card:hover { border-color: var(--primary); transform: scale(1.02); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { 
            padding: 12px; 
            font-size: 15px; 
            color: var(--text-primary); 
            text-align: center; 
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis;
        }

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

        .guide-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 20px; 
        }
        .guide-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 15px; 
            border: 1px solid var(--border-medium);
        }
        .guide-card h3 { color: var(--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: 15px; 
            overflow: hidden; 
            margin-bottom: 30px;
        }
        .lottery-table th, .lottery-table td { 
            padding: 12px; 
            text-align: center; 
            border-bottom: 1px solid var(--border-subtle); 
            font-size: 14px; 
        }
        .lottery-table th { background: var(--bg-elevated); color: var(--primary); }
        .lottery-table td:nth-child(3) { color: var(--success); font-weight: bold; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
        }
        .provider-box { 
            padding: 15px; 
            text-align: center; 
            font-weight: bold; 
            border-radius: 8px; 
            color: var(--text-inverse);
        }
        .prov-1 { background: linear-gradient(to right, #FFD700, #B8860B); }
        .prov-2 { background: linear-gradient(to right, #FF4500, #B22222); }
        .prov-3 { background: linear-gradient(to right, #00C853, #007E33); }
        .prov-4 { background: linear-gradient(to right, #2979FF, #1565C0); }

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

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

        .security-banner { 
            background: var(--bg-elevated); 
            padding: 30px 20px; 
            border-radius: 20px; 
            text-align: center; 
            margin-top: 40px; 
            border: 1px dashed var(--primary);
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-icons div { color: var(--primary); font-size: 14px; }
        .security-icons i { display: block; font-size: 30px; margin-bottom: 10px; }
        .security-text { color: var(--text-secondary); font-size: 14px; max-width: 700px; margin: 0 auto; }
        .security-text a { color: var(--primary); text-decoration: none; border-bottom: 1px solid; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--bg-surface); 
            border-top: 2px solid var(--primary); 
            display: flex; 
            justify-content: space-around; 
            align-items: center; 
            padding: 10px 0; 
            z-index: 2000; 
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            text-align: center; 
            font-size: 12px; 
            flex: 1; 
            transition: 0.3s;
        }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:hover { color: var(--primary); }

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

        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .jackpot-amount { font-size: 32px; }
        }