:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #E60012;
            --accent: #00FF41;
            --main-bg: #0B0B0B;
            --surface-bg: #1A1A1A;
            --overlay-bg: rgba(0, 0, 0, 0.85);
            --grad-start: #1F1F1F;
            --grad-end: #000000;
            --text-heading: #FFFFFF;
            --text-body: #B3B3B3;
            --text-muted: #666666;
            --text-on-brand: #000000;
            --text-link: #FFD700;
            --success: #00C851;
            --warning: #FFBB00;
            --error: #FF4444;
            --info: #33B5E5;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #262626;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--text-body);
            font-family: 'Poppins', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { color: var(--text-heading); font-family: 'Montserrat', sans-serif; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        header {
            background: var(--surface-bg);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--border-highlight);
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .brand { display: flex; align-items: center; gap: 10px; }
        .brand img { width: 25px; height: 25px; }
        .brand strong { font-size: 16px; font-weight: normal; color: var(--text-heading); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-family: 'Roboto', sans-serif;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-on-brand); }
        .btn-register { background: var(--primary); color: var(--text-on-brand); }
        .btn-register:hover { background: var(--primary-dark); }

        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            display: block;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(to right, var(--grad-start), var(--grad-end));
            padding: 30px 0;
            text-align: center;
            border-bottom: 1px solid var(--border-subtle);
        }
        .jackpot-title { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .jackpot-amount {
            font-size: 42px;
            font-weight: bold;
            color: var(--accent);
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 0 15px var(--accent);
        }

        .section-padding { padding: 60px 0; }
        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary);
            margin: 10px auto;
        }

        .intro-box {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        .intro-box h1 { font-size: 48px; margin-bottom: 20px; }
        .intro-box p { font-size: 18px; color: var(--text-body); }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .game-card {
            background: var(--surface-bg);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            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-info { padding: 15px; text-align: center; }
        .game-info h3 { font-size: 16px; font-weight: 500; }

        .article-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        .article-card {
            background: var(--surface-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 20px; }
        .article-content h3 { margin-bottom: 10px; font-size: 20px; }
        .article-content p { font-size: 14px; color: var(--text-muted); }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            text-align: center;
        }
        .payment-item {
            background: var(--surface-bg);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .payment-item i { font-size: 24px; color: var(--primary); }

        .win-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--surface-bg);
            border-radius: 10px;
            overflow: hidden;
        }
        .win-table th, .win-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
        }
        .win-table th { background: var(--primary-dark); color: #000; }
        .win-amount { color: var(--accent); font-weight: bold; }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .provider-box {
            background: var(--grad-start);
            padding: 30px;
            text-align: center;
            border-radius: 12px;
            font-weight: bold;
            font-size: 20px;
            border: 1px solid var(--border-subtle);
        }

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

        .faq-container { max-width: 800px; margin: 0 auto; }
        .faq-item {
            background: var(--surface-bg);
            margin-bottom: 15px;
            border-radius: 10px;
            padding: 20px;
            border: 1px solid var(--border-subtle);
        }
        .faq-item h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .faq-item p { font-size: 15px; color: var(--text-body); }

        .safety-box {
            text-align: center;
            background: var(--surface-bg);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--border-highlight);
        }
        .safety-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .safety-icon i { font-size: 40px; color: var(--primary); margin-bottom: 10px; }
        .safety-text { max-width: 700px; margin: 0 auto; font-size: 14px; }

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

        footer {
            background: #000;
            padding: 40px 0 100px;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
            font-size: 14px;
        }
        .footer-links a { color: var(--text-muted); }
        .footer-links a:hover { color: var(--primary); }
        .copyright { font-size: 13px; color: var(--text-muted); }

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