:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-gradient-start: #1F1F1F;
            --bg-gradient-end: #000000;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-inverse: #000000;
            --text-highlight: #FFD700;
            --color-success: #00C851;
            --color-warning: #FFBB00;
            --color-error: #FF4444;
            --color-info: #33B5E5;
            --border-default: #333333;
            --border-strong: #FFD700;
            --border-subtle: #262626;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-body);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--text-heading); line-height: 1.2; }
        h1 { font-size: 32px; text-align: center; margin-bottom: 20px; }
        h2 { font-size: 24px; text-align: center; margin: 40px 0 20px; color: var(--primary); }
        h3 { font-size: 18px; font-family: 'Poppins', sans-serif; }
        header {
            background: 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; color: var(--text-heading); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
            border: none;
            font-family: 'Poppins', sans-serif;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }
        main { max-width: 1200px; margin: 0 auto; padding: 0 15px 100px; }
        .banner-container { width: 100%; margin: 20px 0; cursor: pointer; }
        .banner-container img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: 15px; border: 2px solid var(--border-default); }
        .jackpot-section {
            background: linear-gradient(45deg, var(--bg-gradient-start), var(--bg-gradient-end));
            padding: 30px;
            text-align: center;
            border-radius: 15px;
            border: 1px solid var(--border-strong);
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { font-size: 18px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary);
            display: block;
        }
        .intro-section { text-align: center; margin-bottom: 40px; padding: 0 10px; }
        .intro-section p { color: var(--text-muted); max-width: 800px; margin: 0 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;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
        }
        .game-card:hover { border-color: var(--primary); transform: scale(1.02); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 12px; text-align: center; }
        .game-info h3 { font-size: 16px; color: var(--text-heading); }
        .article-section {
            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;
        }
        .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 { margin-bottom: 10px; color: var(--primary); font-size: 18px; }
        .article-content p { font-size: 14px; color: var(--text-muted); }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-subtle);
            color: var(--text-heading);
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .payment-item i { font-size: 24px; color: var(--primary); }
        .win-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 40px;
            font-size: 14px;
        }
        .win-table th { background: var(--primary-dark); color: var(--text-inverse); padding: 12px; text-align: left; }
        .win-table td { padding: 12px; border-bottom: 1px solid var(--border-subtle); }
        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .provider-card {
            background: linear-gradient(135deg, var(--bg-surface), #252525);
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            border-left: 4px solid var(--primary);
            font-weight: 600;
            color: var(--text-heading);
            font-size: 18px;
        }
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--primary); }
        .review-header span { font-weight: 600; color: var(--text-heading); }
        .review-stars { color: var(--primary); margin-bottom: 10px; }
        .review-body { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: #666; }
        .faq-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 40px;
        }
        .faq-item {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }
        .faq-item h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .faq-item p { font-size: 14px; color: var(--text-body); }
        .safety-section {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-default);
            margin-bottom: 40px;
        }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
        .safety-icons i { font-size: 30px; color: var(--color-success); }
        .safety-text { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }
        .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(--border-strong);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            gap: 5px;
        }
        .nav-item i { font-size: 20px; }
        footer {
            background: #000;
            padding: 40px 20px;
            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 20px;
            text-align: center;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            transition: 0.3s;
        }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 13px; }
        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }