:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --highlight: #FFB800;
            --bg-main: #0B0D17;
            --bg-surface: #161B2D;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --grad-start: #0B0D17;
            --grad-end: #1B2440;
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --text-muted: #718096;
            --text-inverse: #0B0D17;
            --success: #48BB78;
            --warning: #ECC94B;
            --error: #F56565;
            --info: #4299E1;
            --border-subtle: #2D3748;
            --border-strong: #4A5568;
            --border-active: #FFD700;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-accent: 'Poppins', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        header { 
            background: var(--bg-surface); 
            padding: 10px 20px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            border-bottom: 2px solid var(--border-active);
        }
        .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(--primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 8px; 
            font-weight: 600; 
            cursor: pointer; 
            font-family: var(--font-accent);
            border: none; 
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn:hover { transform: translateY(-2px); opacity: 0.9; }

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

        .jackpot-section { 
            background: linear-gradient(to right, var(--grad-start), var(--grad-end)); 
            text-align: center; 
            padding: 30px 0; 
            margin: 20px 0; 
            border-radius: 15px;
            border: 1px solid var(--border-strong);
        }
        .jackpot-label { font-family: var(--font-accent); color: var(--secondary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: block; }
        .jackpot-amount { 
            font-size: 48px; 
            font-weight: 700; 
            color: var(--primary); 
            font-family: var(--font-heading);
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        .intro-section { text-align: center; padding: 40px 0; }
        .intro-section h1 { font-size: 32px; color: var(--primary); margin-bottom: 20px; }
        .intro-section p { color: var(--text-secondary); max-width: 800px; margin: 0 auto; }

        .section-title { 
            font-size: 24px; 
            text-align: center; 
            margin: 40px 0 20px; 
            color: var(--primary); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            gap: 10px; 
        }
        .section-title::before, .section-title::after { content: ''; height: 2px; width: 50px; background: var(--border-strong); }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 15px; 
            overflow: hidden; 
            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-card h3 { 
            padding: 12px; 
            font-size: 14px; 
            text-align: center; 
            color: var(--text-primary); 
            font-weight: 500; 
        }

        .article-list { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
            gap: 20px; 
            margin-bottom: 40px; 
        }
        .article-card { 
            background: var(--bg-surface); 
            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: 15px; }
        .article-content h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .article-content p { font-size: 14px; color: var(--text-secondary); margin-bottom: 15px; }
        .article-link { color: var(--highlight); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 5px; }

        .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: 10px; 
            text-align: center; 
            border: 1px solid var(--border-subtle); 
            font-size: 12px; 
            color: var(--text-secondary);
        }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }

        .win-table-wrapper { 
            background: var(--bg-surface); 
            border-radius: 15px; 
            padding: 20px; 
            margin-bottom: 40px; 
            border: 1px solid var(--border-strong); 
        }
        .win-table { width: 100%; border-collapse: collapse; font-size: 14px; }
        .win-table th { text-align: left; color: var(--text-muted); padding: 10px; border-bottom: 1px solid var(--border-subtle); }
        .win-table td { padding: 12px 10px; border-bottom: 1px solid var(--border-subtle); }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .provider-item { 
            padding: 20px; 
            border-radius: 12px; 
            text-align: center; 
            font-weight: bold; 
            font-family: var(--font-accent);
            background: linear-gradient(135deg, var(--bg-surface), var(--grad-end));
            border: 1px solid var(--border-subtle);
            color: var(--primary);
        }

        .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: 15px; 
            border: 1px solid var(--border-subtle); 
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--secondary); }
        .review-header .name { font-weight: 600; font-size: 16px; }
        .review-stars { color: var(--highlight); margin-bottom: 10px; font-size: 12px; }
        .review-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; font-style: italic; }
        .review-date { font-size: 12px; color: var(--text-muted); }

        .faq-section { margin-bottom: 40px; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 10px; 
            border: 1px solid var(--border-subtle); 
            overflow: hidden; 
        }
        .faq-question { padding: 15px 20px; font-weight: 600; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 20px 15px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .safety-section { 
            text-align: center; 
            padding: 30px; 
            background: var(--bg-surface); 
            border-radius: 15px; 
            border: 1px solid var(--border-strong); 
            margin-bottom: 40px; 
        }
        .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; display: block; }
        .safety-text { font-size: 14px; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }
        .safety-link { color: var(--highlight); text-decoration: underline; }

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

        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; 
            margin-bottom: 30px; 
            text-align: left; 
            font-size: 13px; 
        }
        .footer-links a { color: var(--text-muted); transition: 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 13px; border-top: 1px solid var(--border-subtle); padding-top: 20px; }

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