:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --highlight: #FFB800;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --bg-contrast: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFB300;
            --error: #D32F2F;
            --info: #2196F3;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #262626;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        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-highlight);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        .brand img { width: 25px; height: 25px; }
        .brand strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--bg-main); }
        .btn-register { background: var(--primary); color: var(--bg-main); }
        .btn-register:hover { background: var(--highlight); }

        .main-banner {
            width: 100%;
            aspect-ratio: 2/1;
            overflow: hidden;
            cursor: pointer;
        }
        .main-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .main-banner:hover img { transform: scale(1.05); }

        .jackpot-section {
            background: linear-gradient(45deg, var(--bg-contrast), var(--bg-surface));
            text-align: center;
            padding: 30px 10px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .jackpot-title { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--primary);
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }

        .section-container { padding: 40px 20px; max-width: 1200px; margin: 0 auto; }
        .intro-box { text-align: center; margin-bottom: 50px; }
        .intro-box h1 { font-size: 32px; color: var(--primary); margin-bottom: 15px; font-family: 'Poppins', sans-serif; }
        .intro-box p { color: var(--text-secondary); font-size: 16px; max-width: 800px; margin: 0 auto; }

        .grid-games {
            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;
            border: 1px solid var(--border-default);
            transition: 0.3s;
        }
        .game-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 12px; font-size: 16px; color: var(--text-primary); text-align: center; font-family: 'Poppins', sans-serif; }

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

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            background: var(--bg-surface);
            padding: 30px 20px;
            border-radius: 15px;
            margin-bottom: 50px;
            text-align: center;
        }
        .payment-item { color: var(--text-secondary); font-size: 14px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
        .payment-item i { font-size: 24px; color: var(--primary); }

        .win-records {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 50px;
        }
        .win-header { background: var(--border-highlight); color: var(--bg-main); padding: 15px; text-align: center; font-weight: 700; }
        .win-table { width: 100%; border-collapse: collapse; }
        .win-table td { padding: 12px; text-align: center; border-bottom: 1px solid var(--border-subtle); font-size: 14px; }
        .win-amount { color: var(--success); font-weight: 600; }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 50px;
        }
        .provider-box {
            background: linear-gradient(135deg, #222, #111);
            padding: 30px;
            text-align: center;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
            font-weight: 700;
            font-size: 20px;
            color: var(--primary);
            text-transform: uppercase;
        }

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

        .faq-container { margin-bottom: 50px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; border: 1px solid var(--border-subtle); }
        .faq-q { padding: 15px; cursor: pointer; font-weight: 600; color: var(--primary); border-bottom: 1px solid var(--border-subtle); }
        .faq-a { padding: 15px; color: var(--text-secondary); font-size: 14px; }

        .safety-footer {
            background: var(--bg-surface);
            padding: 30px 20px;
            text-align: center;
            border-radius: 15px;
            border: 1px solid var(--border-default);
            margin-bottom: 50px;
        }
        .safety-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .safety-icons i { font-size: 30px; color: var(--secondary); }
        .safety-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .safety-link { color: var(--primary); text-decoration: none; font-weight: 600; }

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

        footer {
            background: var(--bg-contrast);
            padding: 40px 20px 100px 20px;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 10px;
            margin-bottom: 30px;
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 14px; }

        @media (max-width: 768px) {
            .payment-methods { grid-template-columns: repeat(2, 1fr); }
            .intro-box h1 { font-size: 24px; }
            .jackpot-amount { font-size: 32px; }
        }