:root {
            --brand-primary: #FFD700;
            --brand-primary-dark: #B8860B;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-contrast: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --semantic-success: #00C853;
            --semantic-warning: #FFB300;
            --semantic-error: #FF1744;
            --semantic-info: #2979FF;
            --border-default: #333333;
            --border-bright: #FFD700;
            --border-muted: #222222;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-heading: 'Playfair Display', serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-primary); 
            line-height: 1.5; 
            overflow-x: hidden; 
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-bright);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: normal; }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-family: var(--font-primary); 
            font-weight: 600; 
            border: none; 
            transition: 0.3s; 
        }
        header .btn-login { background: var(--bg-contrast); color: var(--text-primary); border: 1px solid var(--border-default); }
        header .btn-register { background: var(--brand-primary); color: var(--text-inverse); }
        header .btn:hover { opacity: 0.8; transform: translateY(-2px); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; }

        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            border-radius: 15px; 
            overflow: hidden; 
            cursor: pointer; 
            margin-bottom: 20px; 
            border: 1px solid var(--border-default);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(45deg, #000, #262626);
            border: 2px solid var(--brand-primary);
            border-radius: 15px;
            text-align: center;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { font-family: var(--font-heading); font-size: 24px; color: var(--brand-primary); margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: 'Courier New', monospace; 
            font-size: 40px; 
            font-weight: bold; 
            color: #fff; 
            text-shadow: 0 0 10px var(--brand-primary);
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--brand-primary);
            margin-bottom: 40px;
        }
        .intro-card h1 { font-family: var(--font-heading); font-size: 32px; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 18px; }

        .section-title { 
            font-family: var(--font-heading); 
            font-size: 28px; 
            text-align: center; 
            margin: 40px 0 20px; 
            color: var(--brand-primary);
            position: relative;
        }
        .section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--brand-accent); margin: 10px auto; }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            color: inherit; 
            transition: 0.3s; 
            border: 1px solid var(--border-muted);
        }
        .game-card:hover { transform: scale(1.03); border-color: var(--brand-primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 12px; font-size: 16px; text-align: center; font-family: var(--font-primary); }

        .payment-licenses {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }
        .pay-item {
            background: var(--bg-contrast);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-size: 14px;
            color: var(--text-secondary);
            border: 1px solid var(--border-muted);
        }
        .pay-item i { display: block; font-size: 24px; color: var(--brand-primary); margin-bottom: 8px; }

        .guides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-muted);
        }
        .guide-card h3 { color: var(--brand-primary); margin-bottom: 10px; font-size: 20px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; text-align: justify; }

        .win-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .win-table th { background: var(--bg-contrast); color: var(--brand-primary); padding: 15px; text-align: left; }
        .win-table td { padding: 12px 15px; border-bottom: 1px solid var(--border-muted); color: var(--text-secondary); font-size: 14px; }
        .win-table tr:hover { background: rgba(255, 215, 0, 0.05); }
        .win-amount { color: var(--semantic-success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-box {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            border-radius: 8px;
            color: var(--text-inverse);
            font-size: 14px;
        }
        .prov-1 { background: #FF4500; } .prov-2 { background: #FFD700; }
        .prov-3 { background: #C0C0C0; } .prov-4 { background: #FFB300; }
        .prov-5 { background: #2979FF; } .prov-6 { background: #00C853; }
        .prov-7 { background: #FF1744; } .prov-8 { background: #B8860B; }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .review-card {
            background: var(--bg-contrast);
            padding: 20px;
            border-radius: 12px;
            position: relative;
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--brand-primary); }
        .review-name { font-weight: bold; }
        .review-stars { color: var(--brand-primary); font-size: 12px; margin-bottom: 10px; }
        .review-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }

        .faq-section {
            display: grid;
            gap: 15px;
            margin-bottom: 40px;
        }
        .faq-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-default);
            border-radius: 10px;
            padding: 20px;
        }
        .faq-item h3 { color: var(--brand-primary); margin-bottom: 10px; font-size: 18px; }
        .faq-item p { color: var(--text-secondary); font-size: 15px; }

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

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            border-top: 2px solid var(--brand-primary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 2000;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            text-align: center; 
            font-size: 12px; 
            display: flex; 
            flex-direction: column; 
            gap: 5px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--brand-primary); }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px 100px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 600px;
            margin: 0 auto 30px;
            text-align: left;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-muted); padding-top: 20px; }

        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .intro-card h1 { font-size: 24px; }
            .jackpot-amount { font-size: 30px; }
        }