:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #E60012;
            --accent: #00FFC8;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2D2D2D;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-heading: #FFFFFF;
            --text-body: #B3B3B3;
            --text-muted: #666666;
            --text-on-brand: #000000;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-subtle: #333333;
            --border-default: #444444;
            --border-highlight: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            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; }
        h1 { font-size: 32px; line-height: 1.2; margin-bottom: 1rem; text-align: center; }
        h2 { font-size: 24px; text-align: center; margin: 2rem 0 1.5rem; position: relative; padding-bottom: 10px; }
        h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--primary); }
        h3 { font-size: 16px; margin: 10px 0; font-weight: 600; }
        
        header { 
            background-color: var(--bg-surface); 
            padding: 10px 20px; 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .logo-container { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        .logo-container img { width: 25px; height: 25px; }
        .nav-buttons { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 6px; 
            font-weight: 600; 
            cursor: pointer; 
            border: none; 
            transition: 0.3s; 
            font-family: 'Roboto', sans-serif;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-on-brand); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }

        main { max-width: 1200px; margin: 0 auto; padding: 0 15px 80px; }
        .main-banner { 
            width: 100%; 
            aspect-ratio: 2 / 1; 
            object-fit: cover; 
            border-radius: 12px; 
            margin-top: 20px; 
            cursor: pointer; 
            border: 2px solid var(--border-default);
        }

        .jackpot-container { 
            background: linear-gradient(45deg, var(--bg-surface), var(--bg-elevated)); 
            padding: 20px; 
            text-align: center; 
            border-radius: 12px; 
            margin: 20px 0; 
            border: 1px solid var(--primary);
        }
        .jackpot-label { font-size: 14px; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { 
            font-size: 32px; 
            font-weight: bold; 
            color: #fff; 
            font-family: 'Montserrat', sans-serif; 
            margin: 10px 0;
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-section { text-align: center; margin: 40px 0; padding: 0 10px; }
        .intro-section p { max-width: 800px; margin: 0 auto; color: var(--text-body); }

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

        .article-list { 
            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); 
            text-decoration: none; 
            color: inherit;
            display: flex; 
            flex-direction: column;
        }
        .article-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { font-size: 18px; margin-bottom: 8px; color: var(--primary); }
        .article-content p { font-size: 14px; color: var(--text-body); }

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

        .win-records { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            margin-bottom: 40px; 
            border: 1px solid var(--border-subtle);
        }
        .win-table { width: 100%; border-collapse: collapse; font-size: 14px; }
        .win-table th { background: var(--bg-elevated); color: var(--primary); 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-item { 
            background: var(--bg-elevated); 
            padding: 25px; 
            text-align: center; 
            border-radius: 12px; 
            font-weight: bold; 
            color: #fff; 
            border-left: 5px solid var(--primary);
            font-size: 18px;
        }

        .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); 
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-header .name { font-weight: 600; color: #fff; }
        .stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .comment-body { font-size: 14px; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }

        .faq-section { 
            display: grid; 
            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: 15px; line-height: 1.6; }

        .safety-box { 
            background: var(--bg-surface); 
            padding: 30px; 
            border-radius: 12px; 
            text-align: center; 
            border: 1px solid var(--border-default); 
            margin-bottom: 40px;
        }
        .safety-box i { font-size: 40px; color: var(--accent); margin-bottom: 15px; }
        .safety-box p { margin-bottom: 15px; font-size: 14px; }
        .safety-link { color: var(--primary); text-decoration: none; font-weight: bold; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--bg-surface); 
            display: flex; 
            justify-content: space-around; 
            padding: 10px 0; 
            border-top: 1px solid var(--border-default); 
            z-index: 2000;
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-body); 
            text-align: center; 
            font-size: 12px; 
            display: flex; 
            flex-direction: column; 
            gap: 5px;
        }
        .nav-item i { font-size: 20px; }

        footer { 
            background: var(--bg-surface); 
            padding: 40px 20px 100px; 
            border-top: 1px solid var(--border-subtle); 
            text-align: center; 
        }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            text-align: left;
        }
        .footer-links a { 
            color: var(--text-muted); 
            text-decoration: none; 
            font-size: 13px; 
            padding: 5px;
        }
        .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); }
            h1 { font-size: 24px; }
        }