:root {
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --primary-gold: #FFD700;
            --primary-gold-hover: #FFC400;
            --secondary-red: #E63946;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border-subtle: #333333;
            --border-brand: #FFD700;
            --font-primary: 'Inter', -apple-system, sans-serif;
            --font-heading: 'Montserrat', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
        }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--primary-gold); }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-logo { display: flex; align-items: center; gap: 8px; }
        .header-logo img { width: 25px; height: 25px; border-radius: 4px; }
        .header-logo strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-btns { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 4px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); }
        .btn-register { background: var(--primary-gold); color: #000; }

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

        .jackpot-box {
            background: linear-gradient(180deg, #262626 0%, #0d0d0d 100%);
            margin: 16px;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-brand);
            text-align: center;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { 
            font-size: 32px; 
            font-weight: 900; 
            color: var(--primary-gold); 
            font-family: var(--font-heading);
            margin-top: 8px;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .intro-section { padding: 24px 16px; text-align: center; }
        .intro-section h1 { font-size: 24px; margin-bottom: 12px; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; max-width: 600px; margin: 0 auto; }

        .section-title { padding: 20px 16px 10px; font-size: 20px; border-left: 4px solid var(--primary-gold); margin-left: 16px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 8px; text-align: center; color: var(--text-primary); }

        .article-list { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
        .article-card { display: flex; background: var(--bg-surface); border-radius: 12px; overflow: hidden; height: 100px; }
        .article-card img { width: 120px; height: 100%; object-fit: cover; }
        .article-info { padding: 12px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
        .article-info h2 { font-size: 14px; color: var(--primary-gold); margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-info p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .payment-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 16px; background: var(--bg-surface); margin: 16px; border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; color: var(--primary-gold); }

        .winning-records { margin: 16px; background: var(--bg-surface); border-radius: 12px; padding: 10px; height: 200px; overflow-y: hidden; position: relative; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-subtle); font-size: 13px; animation: scrollWin 20s linear infinite; }
        @keyframes scrollWin { 0% { transform: translateY(0); } 100% { transform: translateY(-300px); } }
        .win-user { color: var(--primary-gold); font-weight: 600; }
        .win-amount { color: #28A745; }

        .providers-section { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px; }
        .provider-block { background: var(--bg-elevated); padding: 15px; border-radius: 8px; text-align: center; font-weight: bold; border-bottom: 2px solid var(--primary-gold); }

        .review-list { display: flex; flex-direction: column; gap: 16px; padding: 16px; }
        .review-card { background: var(--bg-surface); padding: 16px; 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(--text-secondary); }
        .review-stars { color: var(--primary-gold); font-size: 12px; }
        .review-text { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; display: block; }

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

        .security-section { padding: 30px 16px; text-align: center; background: var(--bg-surface); margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--primary-gold); }
        .security-text { font-size: 12px; color: var(--text-secondary); max-width: 500px; margin: 0 auto; }
        .age-badge { display: inline-block; border: 2px solid var(--secondary-red); color: var(--secondary-red); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; margin-bottom: 10px; }

        footer { background: var(--bg-main); padding: 20px 16px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 15px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: var(--primary-gold); }