:root {
            --primary: #D4AF37;
            --primary-variant: #F9E076;
            --secondary: #121212;
            --accent: #FF4D4D;
            --bg-main: #050505;
            --bg-surface: #1A1A1A;
            --bg-elevated: #252525;
            --overlay: rgba(0, 0, 0, 0.9);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --border-default: #333333;
            --border-active: #D4AF37;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 80px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        button { cursor: pointer; border: none; font-family: 'Roboto', sans-serif; }
        header {
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); padding: 6px 12px; border-radius: 6px; font-size: 14px; }
        .btn-register { background: var(--primary); color: var(--secondary); font-weight: 700; padding: 6px 12px; border-radius: 6px; font-size: 14px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 14px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 900; color: var(--primary-variant); text-shadow: 0 0 10px rgba(249, 224, 118, 0.5); }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: var(--radius); }
        .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 { padding: 0 15px; margin: 20px 0 15px; font-size: 18px; border-left: 4px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-elevated); border-radius: 10px; overflow: hidden; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-muted); }
        .payment-license { margin: 15px; padding: 15px; background: var(--bg-surface); border-radius: var(--radius); display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .pl-item { text-align: center; }
        .pl-item i { font-size: 24px; color: var(--primary); margin-bottom: 5px; display: block; }
        .pl-item span { font-size: 10px; color: var(--text-secondary); display: block; }
        .guides-container { padding: 0 15px; }
        .guide-item { background: var(--bg-elevated); margin-bottom: 15px; padding: 15px; border-radius: var(--radius); }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--primary-variant); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .marquee-container { background: var(--bg-surface); margin: 15px 0; padding: 10px 0; overflow: hidden; }
        .marquee-content { display: flex; animation: scrollLeft 40s linear infinite; gap: 30px; }
        .winner-pill { white-space: nowrap; font-size: 13px; color: var(--text-secondary); display: flex; gap: 10px; }
        .winner-pill strong { color: var(--success); }
        @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 15px; text-align: center; color: var(--text-muted); font-size: 14px; font-weight: 600; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .reviews-grid { padding: 0 15px; overflow-x: auto; display: flex; gap: 15px; padding-bottom: 10px; }
        .review-card { min-width: 250px; background: var(--bg-surface); padding: 15px; border-radius: var(--radius); border-top: 3px solid var(--primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 12px; color: var(--text-secondary); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 14px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { margin: 15px; padding: 20px; border: 1px dashed var(--border-default); border-radius: var(--radius); text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 30px; margin-bottom: 15px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item.download-nav { color: var(--primary); }
        footer { padding: 30px 15px 100px; background: var(--bg-main); border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { font-size: 12px; color: var(--text-muted); }
        .footer-copy { text-align: center; font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }