:root {
            --primary: #D4AF37;
            --primary-light: #F9E076;
            --primary-dark: #AA8928;
            --secondary: #E31837;
            --accent: #FFD700;
            --bg-main: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #222222;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #666666;
            --border-default: #333333;
            --border-active: #D4AF37;
            --success: #00C853;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--bg-main); }
        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            margin: 20px 15px;
            background: linear-gradient(135deg, #161616 0%, #222222 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 14px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-family: 'Roboto Condensed', sans-serif; font-size: 32px; font-weight: 800; color: var(--accent); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { margin: 25px 15px 15px; font-size: 20px; font-weight: 700; display: flex; align-items: center; gap: 10px; color: var(--primary-light); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); text-decoration: none; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 13px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; margin: 20px 15px; background: var(--bg-surface); border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: var(--text-muted); }
        .payment-item i { font-size: 20px; color: var(--primary); }
        .guides-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; border: 1px solid var(--border-subtle); }
        .guide-item h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .marquee-container { background: #111; padding: 10px 0; margin: 20px 0; border-top: 1px solid var(--primary); border-bottom: 1px solid var(--primary); overflow: hidden; }
        .marquee-content { display: flex; animation: scrollMarquee 30s linear infinite; white-space: nowrap; }
        .winner-item { padding: 0 20px; font-size: 13px; color: var(--text-secondary); border-right: 1px solid var(--border-default); }
        .winner-item span { color: var(--success); font-weight: 700; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-box { padding: 12px; text-align: center; border-radius: 8px; font-weight: 700; font-size: 14px; background: var(--bg-elevated); color: var(--primary); border-bottom: 2px solid var(--primary); }
        .comment-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--text-muted); }
        .comment-user { flex: 1; }
        .comment-user strong { display: block; font-size: 14px; }
        .comment-user .stars { color: var(--accent); font-size: 12px; }
        .comment-date { font-size: 11px; color: var(--text-muted); }
        .comment-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-container { padding: 0 15px; }
        .faq-item { margin-bottom: 10px; background: var(--bg-surface); border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; color: var(--primary-light); border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .security-section { margin: 20px 15px; padding: 20px; background: #0f1c14; border: 1px solid var(--success); border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success); }
        .security-section p { font-size: 13px; color: var(--text-secondary); }
        .navigator { position: fixed; bottom: 0; width: 100%; height: 65px; background: var(--bg-surface); border-top: 1px solid var(--border-default); display: flex; justify-content: space-around; align-items: center; z-index: 1000; }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { background: var(--primary); color: var(--bg-main); width: 50px; height: 50px; border-radius: 50%; justify-content: center; margin-top: -30px; border: 4px solid var(--bg-main); box-shadow: 0 -4px 10px rgba(212, 175, 55, 0.3); }
        footer { background: #000; padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { color: var(--text-secondary); font-size: 18px; text-decoration: none; display: flex; flex-direction: column; gap: 5px; font-size: 12px; }
        .footer-social i { font-size: 22px; color: var(--primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: left; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); font-size: 13px; text-decoration: none; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid #111; padding-top: 20px; }