:root {
            --primary-gold: #D4AF37;
            --primary-hover: #FFD700;
            --secondary-blue: #0A192F;
            --accent-red: #E01E26;
            --main-bg: #020617;
            --surface-card: #0F172A;
            --surface-elevated: #1E293B;
            --text-primary: #F8FAFC;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --border-default: #334155;
            --font-main: 'Montserrat', sans-serif;
            --font-sec: 'Inter', sans-serif;
            --font-display: 'Poppins', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--text-primary);
            font-family: var(--font-sec);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-main); font-weight: 700; color: var(--primary-gold); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

        header {
            background: var(--secondary-blue);
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .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); font-family: var(--font-display); }
        .header-actions { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; font-family: var(--font-sec); }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--primary-gold); color: var(--main-bg); }

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

        .jackpot-section {
            background: linear-gradient(180deg, var(--surface-card) 0%, var(--main-bg) 100%);
            padding: 20px 15px;
            text-align: center;
            border-bottom: 2px solid var(--primary-gold);
        }
        .jackpot-label { color: var(--text-secondary); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { color: var(--primary-gold); font-size: 32px; font-weight: 800; font-family: var(--font-display); text-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }

        .content-padding { padding: 25px 15px; }
        .intro-section { margin-bottom: 30px; text-align: center; }
        .intro-section h1 { font-size: 24px; margin-bottom: 12px; }
        .intro-section p { color: var(--text-secondary); font-size: 14px; }

        .section-title { font-size: 20px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; border-left: 4px solid var(--primary-gold); padding-left: 10px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 30px; }
        .game-card { background: var(--surface-card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px 12px 0 0; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .article-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .article-card { background: var(--surface-card); border-radius: 12px; display: flex; gap: 12px; padding: 10px; border: 1px solid var(--border-default); }
        .article-img { width: 100px; height: 100px; flex-shrink: 0; }
        .article-img img { width: 100%; height: 100%; object-fit: cover; }
        .article-body h3 { font-size: 15px; margin-bottom: 5px; line-height: 1.2; }
        .article-body p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
        .payment-item { background: var(--surface-elevated); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 20px; color: var(--primary-gold); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); display: block; }

        .win-records { background: var(--surface-card); border-radius: 12px; padding: 15px; margin-bottom: 30px; border: 1px solid var(--border-default); }
        .win-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 12px; }
        .win-item:last-child { border-bottom: none; }
        .win-user { color: var(--primary-gold); font-weight: 600; }
        .win-amount { color: var(--22C55E); font-weight: 700; }

        .providers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 30px; }
        .provider-block { background: linear-gradient(135deg, var(--surface-card), var(--secondary-blue)); padding: 20px; border-radius: 10px; text-align: center; border: 1px solid var(--border-default); font-weight: 700; color: var(--primary-gold); text-transform: uppercase; }

        .review-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--surface-card); padding: 20px; border-radius: 15px; border-left: 4px solid var(--primary-gold); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { background: var(--surface-elevated); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-gold); }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-stars { color: #F59E0B; font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); font-style: italic; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }

        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--surface-card); border-radius: 10px; margin-bottom: 10px; border: 1px solid var(--border-default); padding: 15px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--text-primary); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-box { background: var(--surface-elevated); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .security-text { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .age-badge { display: inline-block; padding: 4px 12px; background: var(--accent-red); border-radius: 20px; font-weight: 800; font-size: 14px; margin-bottom: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--secondary-blue); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item span { font-size: 10px; }
        .nav-item.active { color: var(--primary-gold); }

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