:root {
            --primary: #D4AF37;
            --primary-variant: #F1D279;
            --secondary: #00A86B;
            --accent: #FFD700;
            --bg-main: #0A0A0A;
            --bg-surface: #1A1A1B;
            --bg-elevated: #252526;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --border-default: #444444;
            --win: #00FF41;
        }
        * { 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: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        
        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: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: #000; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(145deg, #1a1a1b, #252526);
            padding: 20px;
            border-radius: 15px;
            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; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: 'Roboto Mono', monospace; 
            font-size: 32px; 
            font-weight: 900; 
            color: var(--win);
            text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
        }

        .intro-card { margin: 20px 15px; padding: 20px; background: var(--bg-surface); border-radius: 15px; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: var(--primary); }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }

        .section-title { margin: 25px 15px 15px; font-size: 18px; border-left: 4px solid var(--primary); padding-left: 10px; }
        
        .game-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 12px; 
            padding: 0 15px; 
        }
        .game-card { 
            background: var(--bg-elevated); 
            border-radius: 12px; 
            overflow: hidden; 
            transition: transform 0.2s;
            border: 1px solid #333;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

        .trust-section { margin: 30px 15px; background: var(--bg-surface); border-radius: 15px; padding: 20px; text-align: center; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.8; }
        .trust-icons i { font-size: 24px; color: var(--text-secondary); }
        .provider-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 15px; }
        .provider-tag { background: var(--bg-elevated); padding: 5px 12px; border-radius: 20px; font-size: 12px; color: var(--primary); border: 1px solid #333; }

        .guidelines { padding: 0 15px; margin-top: 30px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--primary-variant); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .marquee-container { 
            background: var(--bg-surface); 
            margin: 25px 0; 
            padding: 15px 0; 
            overflow: hidden; 
            border-top: 1px solid var(--border-default);
            border-bottom: 1px solid var(--border-default);
        }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; white-space: nowrap; }
        .win-item { margin-right: 30px; font-size: 13px; display: flex; align-items: center; gap: 8px; }
        .win-name { color: var(--primary); font-weight: 600; }
        .win-amount { color: var(--win); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .testimonials { padding: 0 15px; margin-top: 30px; }
        .testi-card { background: var(--bg-elevated); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #333; }
        .testi-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .testi-avatar { width: 40px; height: 40px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .testi-name { font-weight: 600; font-size: 14px; }
        .testi-stars { color: var(--accent); font-size: 12px; }
        .testi-date { font-size: 11px; color: var(--text-muted); margin-left: auto; }
        .testi-body { font-size: 13px; color: var(--text-secondary); font-style: italic; }

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

        .responsible-gaming { margin: 30px 15px; padding: 20px; background: rgba(230, 57, 70, 0.05); border: 1px solid #e6394633; border-radius: 15px; text-align: center; }
        .responsible-gaming h2 { font-size: 16px; color: var(--secondary); margin-bottom: 10px; }
        .age-badge { display: inline-block; border: 2px solid #E63946; color: #E63946; padding: 2px 8px; border-radius: 50%; font-weight: bold; margin: 10px 0; }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }

        footer { background: #050505; padding: 30px 15px 90px; border-top: 1px solid var(--border-default); }
        .footer-contact { margin-bottom: 25px; display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        .footer-contact a { color: var(--primary); font-size: 13px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { font-size: 12px; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 15px; }