:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #E60012;
            --accent: #00FF41;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: #2D2D2D;
            --bg-contrast: #000000;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-inverse: #000000;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #222222;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Poppins', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-body);
            font-family: var(--font-primary), Arial, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--primary);
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-area { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        .logo-img { width: 25px; height: 25px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-family: var(--font-secondary);
            transition: 0.3s;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--bg-contrast); }
        .btn-register { background: var(--primary); color: var(--bg-contrast); }
        .btn-register:hover { background: var(--primary-dark); }

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

        .jackpot-container {
            background: linear-gradient(45deg, var(--bg-contrast), var(--bg-surface));
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-number { 
            font-size: 48px; 
            font-weight: 700; 
            color: var(--accent); 
            font-family: 'Courier New', monospace; 
            animation: glow 2s infinite alternate;
        }
        @keyframes glow { from { text-shadow: 0 0 5px var(--accent); } to { text-shadow: 0 0 20px var(--accent), 0 0 30px var(--primary); } }

        .intro-section { text-align: center; margin-bottom: 40px; }
        .intro-section h1 { 
            font-size: 32px; 
            color: var(--text-heading); 
            margin-bottom: 15px; 
            line-height: 1.2;
        }
        .intro-section p { color: var(--text-muted); max-width: 800px; margin: 0 auto; }

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

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 20px; 
            margin-bottom: 40px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 15px; 
            overflow: hidden; 
            text-decoration: none; 
            transition: transform 0.3s; 
            border: 1px solid var(--border-default);
        }
        .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: 15px; 
            font-size: 16px; 
            color: var(--text-heading); 
            text-align: center;
            font-family: var(--font-secondary);
        }

        .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: 15px; 
            overflow: hidden; 
            border: 1px solid var(--border-default);
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }
        .article-card:hover { background: var(--bg-overlay); }
        .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 { font-size: 14px; color: var(--text-muted); }

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

        .win-records { 
            background: var(--bg-surface); 
            border-radius: 15px; 
            padding: 20px; 
            margin-bottom: 40px; 
            border: 1px solid var(--border-default);
        }
        .win-table { width: 100%; border-collapse: collapse; text-align: left; }
        .win-table th { color: var(--primary); border-bottom: 2px solid var(--border-default); padding: 10px; }
        .win-table td { padding: 12px 10px; border-bottom: 1px solid var(--border-subtle); font-size: 14px; }

        .provider-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .provider-box { 
            padding: 20px; 
            border-radius: 15px; 
            text-align: center; 
            font-weight: bold; 
            font-size: 18px; 
            color: #fff;
            background: linear-gradient(135deg, #333, #111);
            border: 1px solid 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: 15px; 
            border: 1px solid var(--border-default);
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-name { font-weight: 600; color: var(--text-heading); }
        .comment-stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }

        .faq-section { margin-bottom: 40px; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 15px; 
            border-radius: 10px; 
            border: 1px solid var(--border-default);
            padding: 20px;
        }
        .faq-item h3 { color: var(--primary); font-size: 18px; margin-bottom: 10px; }
        .faq-item p { font-size: 15px; color: var(--text-body); line-height: 1.6; }

        .safety-box { 
            background: var(--bg-contrast); 
            border: 2px solid var(--border-default); 
            border-radius: 15px; 
            padding: 30px; 
            text-align: center; 
            margin-bottom: 40px; 
        }
        .safety-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; }
        .safety-icons i { font-size: 40px; color: var(--primary); }
        .safety-text { font-size: 14px; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

        .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-muted); 
            text-align: center; 
            font-size: 12px; 
            display: flex; 
            flex-direction: column; 
            gap: 5px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

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

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