:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #B22222;
            --secondary-dark: #8B0000;
            --accent: #00FFC8;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: #2C2C2C;
            --grad-start: #1A1A1A;
            --grad-end: #000000;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --on-primary: #000000;
            --on-secondary: #FFFFFF;
            --success: #4CAF50;
            --warning: #FFC107;
            --error: #F44336;
            --info: #2196F3;
            --border-def: #333333;
            --border-hl: #FFD700;
            --border-muted: #222222;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-body); 
            font-family: 'Montserrat', sans-serif; 
            line-height: 1.5; 
            overflow-x: hidden;
        }
        header {
            background: var(--bg-surface);
            border-bottom: 2px solid var(--border-hl);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: var(--text-heading); }
        .auth-btns { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 8px; 
            cursor: pointer; 
            font-family: 'Poppins', sans-serif; 
            font-weight: 600; 
            transition: 0.3s; 
            border: none; 
            text-decoration: none;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--secondary); color: var(--on-secondary); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }
        
        main { padding-bottom: 80px; }
        .banner-container { 
            width: 100%; 
            cursor: pointer; 
            overflow: hidden; 
        }
        .banner-container img { 
            width: 100%; 
            aspect-ratio: 2/1; 
            object-fit: cover; 
            display: block; 
        }

        .jackpot-section {
            background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
            text-align: center;
            padding: 30px 10px;
            border-bottom: 1px solid var(--border-def);
        }
        .jackpot-title { color: var(--text-muted); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: 'Poppins', sans-serif; 
            font-size: 32px; 
            font-weight: 800; 
            color: var(--primary); 
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        .intro-section { padding: 40px 20px; text-align: center; max-width: 1000px; margin: 0 auto; }
        .intro-section h1 { 
            font-size: 32px; 
            color: var(--text-heading); 
            margin-bottom: 20px; 
            font-family: 'Poppins', sans-serif;
            line-height: 1.2;
        }
        .intro-section p { color: var(--text-body); font-size: 16px; opacity: 0.9; }

        .section-title { 
            text-align: center; 
            color: var(--text-heading); 
            font-size: 24px; 
            margin: 40px 0 20px; 
            font-family: 'Poppins', sans-serif;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after { 
            content: ''; 
            position: absolute; 
            bottom: 0; 
            left: 50%; 
            transform: translateX(-50%); 
            width: 60px; 
            height: 3px; 
            background: var(--primary); 
        }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            padding: 0 20px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            border: 1px solid var(--border-muted); 
            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: 14px; 
            color: var(--text-heading); 
            text-align: center; 
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .article-list { padding: 0 20px; display: grid; gap: 20px; }
        .article-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            display: flex; 
            overflow: hidden; 
            border: 1px solid var(--border-muted); 
            text-decoration: none; 
            color: inherit;
        }
        .article-card img { width: 120px; height: 120px; object-fit: cover; }
        .article-content { padding: 15px; display: flex; flex-direction: column; justify-content: center; }
        .article-content h3 { font-size: 16px; color: var(--text-heading); margin-bottom: 5px; }
        .article-content p { font-size: 13px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            padding: 0 20px; 
        }
        .payment-item { 
            background: var(--bg-surface); 
            border: 1px solid var(--border-muted); 
            border-radius: 8px; 
            padding: 15px 5px; 
            text-align: center; 
            font-size: 12px; 
            color: var(--text-muted);
        }
        .payment-item i { 
            display: block; 
            font-size: 20px; 
            color: var(--primary); 
            margin-bottom: 8px; 
        }

        .win-table { 
            width: 100%; 
            border-collapse: collapse; 
            margin: 0 20px; 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            font-size: 13px; 
        }
        .win-table th { background: var(--bg-overlay); color: var(--primary); padding: 12px; text-align: left; }
        .win-table td { padding: 12px; border-bottom: 1px solid var(--border-muted); }

        .provider-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            padding: 0 20px; 
        }
        .provider-card { 
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-overlay)); 
            padding: 25px; 
            border-radius: 12px; 
            text-align: center; 
            border: 1px solid var(--border-def); 
            font-weight: bold; 
            color: var(--text-heading);
            font-size: 18px;
        }

        .review-grid { 
            display: grid; 
            grid-template-columns: 1fr; 
            gap: 15px; 
            padding: 0 20px; 
        }
        .review-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border-muted); 
        }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-header div h4 { color: var(--text-heading); font-size: 15px; }
        .review-stars { color: var(--primary); font-size: 12px; margin-bottom: 10px; }
        .review-body { font-size: 14px; color: var(--text-body); margin-bottom: 10px; font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); text-align: right; }

        .faq-section { padding: 0 20px; display: grid; gap: 15px; }
        .faq-card { background: var(--bg-surface); border: 1px solid var(--border-muted); border-radius: 12px; padding: 20px; }
        .faq-card h3 { color: var(--primary); font-size: 16px; margin-bottom: 10px; font-family: 'Poppins', sans-serif; }
        .faq-card p { font-size: 14px; color: var(--text-body); line-height: 1.6; }

        .security-footer { 
            background: var(--bg-surface); 
            margin: 40px 20px; 
            padding: 20px; 
            border-radius: 12px; 
            text-align: center; 
            border: 1px solid var(--border-def); 
        }
        .security-footer i { color: var(--success); font-size: 30px; margin-bottom: 10px; }
        .security-footer p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
        .security-footer a { color: var(--primary); text-decoration: none; font-weight: bold; }

        .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-hl); 
            z-index: 2000; 
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-muted); 
            text-align: center; 
            font-size: 11px; 
            display: flex; 
            flex-direction: column; 
            gap: 5px; 
        }
        .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-def); 
            text-align: center; 
        }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .footer-links a { 
            color: var(--text-muted); 
            text-decoration: none; 
            font-size: 12px; 
            transition: 0.3s; 
        }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 13px; border-top: 1px solid var(--border-muted); padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .article-list { grid-template-columns: repeat(2, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
            .review-grid { grid-template-columns: repeat(3, 1fr); }
        }