:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --highlight: #FFB800;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-contrast: #252525;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-inverse: #000000;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-subtle: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: normal; }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            transition: 0.3s;
            border: none;
            text-decoration: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        .btn-reg { background: var(--primary); color: var(--text-inverse); }
        .btn-reg:hover { background: var(--highlight); }

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

        .jackpot-section {
            background: linear-gradient(45deg, #000, #333);
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            border: 2px solid var(--primary);
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        .jackpot-label { font-size: 18px; color: var(--secondary); margin-bottom: 10px; }
        .jackpot-amount {
            font-size: 36px;
            font-weight: bold;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
            text-shadow: 0 0 10px var(--highlight);
        }

        .intro-section { text-align: center; margin-bottom: 40px; }
        .intro-section h1 { font-size: 28px; color: var(--primary); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; max-width: 800px; margin: 0 auto; }

        .section-title {
            font-size: 22px;
            margin-bottom: 20px;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
            color: var(--text-primary);
        }

        .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;
            transition: transform 0.3s;
            border: 1px solid var(--border-subtle);
        }
        .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: 14px; 
            text-align: center; 
            color: var(--text-primary);
            font-family: 'Roboto', sans-serif;
        }

        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .article-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
            text-decoration: none;
            color: inherit;
        }
        .article-card:hover { border-color: var(--primary); }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; }
        .article-content p { font-size: 13px; color: var(--text-secondary); }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .pay-item {
            background: var(--bg-contrast);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-subtle);
            font-size: 12px;
            color: var(--secondary);
        }
        .pay-item i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 8px; }

        .win-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            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-subtle);
            font-size: 13px;
        }
        .win-table th { background: var(--bg-contrast); color: var(--primary); }
        .win-table td { color: var(--text-secondary); }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .provider-box {
            background: var(--bg-contrast);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            font-weight: bold;
            font-size: 18px;
            border: 1px solid var(--border-medium);
            color: var(--primary);
        }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }
        .user-info { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-info i { font-size: 24px; color: var(--primary); }
        .user-info span { font-weight: 600; }
        .stars { color: var(--highlight); font-size: 12px; margin-bottom: 10px; }
        .comment-body { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 11px; color: var(--text-muted); }

        .faq-section { margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            margin-bottom: 15px;
            padding: 20px;
        }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .safety-section {
            background: var(--bg-contrast);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 40px;
            border: 1px dashed var(--primary);
        }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .safety-icons i { font-size: 30px; color: var(--primary); }
        .safety-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 15px; }
        .safety-text a { color: var(--primary); text-decoration: underline; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            text-align: center;
            font-size: 11px;
            transition: 0.3s;
        }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px 100px;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 12px;
            transition: 0.3s;
        }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 12px; }

        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }