:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --highlight: #FF4500;
            --main-bg: #0F0F0F;
            --surface-bg: #1A1A1A;
            --overlay-bg: #2C2C2C;
            --contrast-bg: #000000;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-inverse: #000000;
            --success: #00C851;
            --warning: #FFBB00;
            --error: #FF4444;
            --info: #33B5E5;
            --border-default: #333333;
            --border-strong: #4D4D4D;
            --border-interactive: #FFD700;
            --font-primary: 'Poppins', sans-serif;
            --font-secondary: 'Montserrat', sans-serif;
            --font-accent: 'Playfair Display', serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--main-bg); color: var(--text-body); font-family: var(--font-primary); line-height: 1.5; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background-color: var(--surface-bg);
            border-bottom: 2px solid var(--primary);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-area strong { font-size: 16px; font-weight: normal; color: var(--text-heading); }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn { padding: 8px 16px; border-radius: 5px; cursor: pointer; font-weight: 600; font-size: 14px; border: none; }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-register { background: var(--primary); color: var(--text-inverse); }

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

        .jackpot-container {
            background: linear-gradient(145deg, var(--surface-bg), var(--contrast-bg));
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary); font-family: var(--font-accent); font-size: 24px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 48px; font-weight: 700; color: #fff; text-shadow: 0 0 10px var(--primary); font-family: 'Courier New', monospace; }

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

        .section-title { color: var(--text-heading); font-size: 24px; margin-bottom: 20px; text-align: center; position: relative; padding-bottom: 10px; }
        .section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--primary); }

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

        .payment-license-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }
        .pl-item {
            background: var(--overlay-bg);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-default);
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .pl-item i { font-size: 24px; color: var(--primary); }

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

        .win-table { width: 100%; border-collapse: collapse; background: var(--surface-bg); border-radius: 12px; overflow: hidden; margin-bottom: 40px; }
        .win-table th, .win-table td { padding: 12px; text-align: center; border-bottom: 1px solid var(--border-default); }
        .win-table th { background: var(--overlay-bg); color: var(--primary); }
        .win-table tr:hover { background: rgba(255, 215, 0, 0.05); }

        .provider-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 40px;
        }
        .provider-tag {
            background: var(--primary);
            color: var(--text-inverse);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
        }
        .provider-tag:nth-child(even) { background: var(--highlight); color: #fff; }

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

        .faq-container { margin-bottom: 40px; }
        .faq-item { background: var(--surface-bg); margin-bottom: 10px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px 20px; background: var(--overlay-bg); color: var(--text-heading); cursor: pointer; font-weight: 600; }
        .faq-answer { padding: 15px 20px; color: var(--text-body); font-size: 14px; border-top: 1px solid var(--border-default); }

        .security-footer {
            background: var(--surface-bg);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-strong);
        }
        .security-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
        .badge { display: flex; align-items: center; gap: 8px; color: var(--secondary); font-size: 14px; }
        .badge i { color: var(--success); }
        .age-notice { color: var(--accent); font-weight: 700; margin: 15px 0; }
        .support-link { color: var(--primary); text-decoration: underline; font-size: 14px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--surface-bg);
            border-top: 2px solid var(--primary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-muted); font-size: 12px; text-decoration: none; }
        .nav-item i { font-size: 20px; margin-bottom: 5px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background-color: var(--contrast-bg);
            color: var(--text-muted);
            padding: 40px 20px;
            text-align: center;
            font-size: 14px;
        }
        footer .contact-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        footer .contact-links a { color: var(--text-heading); }
        footer .footer-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px auto;
            text-align: center;
        }
        footer .footer-columns a { display: block; margin-bottom: 8px; }
        footer .copyright { border-top: 1px solid var(--border-default); padding-top: 20px; color: var(--text-muted); }

        @media (max-width: 768px) {
            .game-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-columns { grid-template-columns: repeat(3, 1fr); font-size: 12px; }
        }