:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #1A1A1A;
            --accent: #FFD700;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --bg-card: #181A20;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --text-gold: #D4AF37;
            --success: #0ECB81;
            --error: #F6465D;
            --border-default: #2B3139;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Montserrat', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            background-color: var(--secondary);
            height: 60px;
            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 .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        header .actions { display: flex; gap: 10px; }
        header .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        header .btn-register { background: var(--gold-gradient); color: #000; }
        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: radial-gradient(circle at center, #2c2411 0%, #0b0e11 100%);
            padding: 20px;
            text-align: center;
            border-top: 2px solid var(--primary);
            border-bottom: 2px solid var(--primary);
            margin: 15px 0;
        }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 900;
            color: var(--accent);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-family: var(--font-heading); font-size: 24px; color: var(--text-gold); margin-bottom: 12px; }
        .intro-section p { font-size: 14px; color: var(--text-secondary); }
        .section-title { padding: 15px; font-family: var(--font-heading); font-size: 18px; color: var(--text-primary); border-left: 4px solid var(--primary); margin: 10px 0; background: var(--bg-surface); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 10px; }
        .game-card { background: var(--bg-card); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-secondary); }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .pay-item { background: var(--bg-surface); padding: 10px; text-align: center; border-radius: 6px; font-size: 12px; color: var(--text-muted); }
        .pay-item i { font-size: 20px; display: block; margin-bottom: 5px; color: var(--primary); }
        .guide-list { padding: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; margin-bottom: 15px; }
        .guide-item h2 { font-size: 18px; color: var(--text-gold); margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .marquee-box { background: var(--bg-surface); padding: 10px 0; overflow: hidden; margin: 15px 0; }
        .marquee-content { display: flex; gap: 30px; animation: scroll 40s linear infinite; width: max-content; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-tag { white-space: nowrap; font-size: 13px; color: var(--text-secondary); }
        .win-tag span { color: var(--success); font-weight: bold; }
        .provider-wall { display: flex; flex-wrap: wrap; gap: 8px; padding: 15px; }
        .provider-item { flex: 1 1 calc(50% - 8px); background: linear-gradient(45deg, #1e2329, #2b3139); padding: 12px; text-align: center; border-radius: 4px; font-weight: 600; font-size: 14px; }
        .reviews-container { padding: 15px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); margin-bottom: 15px; }
        .rev-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .rev-header i { font-size: 24px; color: var(--text-muted); }
        .rev-name { font-weight: 600; font-size: 14px; }
        .stars { color: var(--warning); font-size: 12px; }
        .rev-body { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .rev-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--border-default); padding-bottom: 10px; }
        .faq-item h3 { font-size: 15px; color: var(--text-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { padding: 20px; background: #161a1e; margin-top: 20px; border-top: 1px solid var(--border-default); text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 13px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--secondary); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { text-align: center; color: var(--text-muted); font-size: 10px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }
        footer { background: #080a0c; padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        footer .contact-row { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        footer .contact-row a { font-size: 14px; color: var(--text-secondary); background: var(--bg-surface); padding: 8px 15px; border-radius: 20px; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        footer .links-grid a { font-size: 13px; color: var(--text-muted); }
        footer .copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }