:root {
            --primary: #F9BC0B;
            --secondary: #D41F2D;
            --accent: #FFD700;
            --gold-gradient: linear-gradient(180deg, #F9BC0B 0%, #B8860B 100%);
            --bg-p: #0B0E11;
            --bg-s: #15191E;
            --bg-t: #1E2329;
            --text-p: #FFFFFF;
            --text-s: #B7BDC6;
            --border: #2B2F36;
            --success: #0ECB81;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-p);
            color: var(--text-p);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--bg-p);
            border-bottom: 1px solid var(--border);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 500; color: var(--primary); }
        .header-right { display: flex; gap: 8px; }
        .btn-login, .btn-reg {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
        }
        .btn-login { background-color: var(--bg-t); color: var(--text-p); }
        .btn-reg { background: var(--gold-gradient); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 0 12px; }
        .banner-container {
            margin: 12px 0;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 2/1;
            cursor: pointer;
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: var(--bg-s);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(249, 188, 11, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-card {
            background: var(--bg-s);
            padding: 24px;
            border-radius: 16px;
            margin-bottom: 24px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; color: var(--primary); }
        .intro-card p { color: var(--text-s); font-size: 14px; }
        .section-header { margin: 24px 0 16px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 20px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
        .game-card {
            background: var(--bg-s);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.2s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            background: var(--bg-t);
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 24px;
        }
        .trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-s); }
        .trust-item i { color: var(--primary); width: 20px; }
        .guides-container { display: grid; gap: 16px; margin-bottom: 24px; }
        .guide-box { background: var(--bg-s); padding: 16px; border-radius: 12px; }
        .guide-box h3 { font-size: 16px; margin-bottom: 8px; color: var(--accent); }
        .guide-box p { font-size: 13px; color: var(--text-s); }
        .lottery-container { background: var(--bg-s); border-radius: 16px; padding: 16px; margin-bottom: 24px; }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }
        .lottery-user { font-weight: 600; color: var(--primary); }
        .lottery-game { color: var(--text-s); font-size: 12px; }
        .lottery-amount { color: var(--success); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 24px; }
        .provider-item { background: var(--bg-t); padding: 15px; text-align: center; border-radius: 8px; font-weight: 700; color: var(--primary); border: 1px solid var(--border); }
        .review-card { background: var(--bg-s); padding: 16px; border-radius: 16px; margin-bottom: 16px; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 24px; color: var(--text-s); }
        .stars { color: var(--accent); font-size: 12px; margin-bottom: 8px; }
        .review-text { font-size: 13px; color: var(--text-s); }
        .faq-container { margin-bottom: 24px; }
        .faq-item { background: var(--bg-s); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
        .faq-q { padding: 16px; font-weight: 600; font-size: 15px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
        .faq-a { padding: 0 16px 16px; font-size: 13px; color: var(--text-s); }
        .security-section { background: #1a1a1a; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--secondary); margin-bottom: 24px; }
        .security-badge { display: inline-block; padding: 4px 12px; background: var(--secondary); border-radius: 40px; font-size: 12px; font-weight: 800; margin-bottom: 12px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-s);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-s); font-size: 10px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }
        footer {
            background-color: var(--bg-p);
            padding: 40px 16px 20px;
            border-top: 1px solid var(--border);
            text-align: center;
        }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contact a { background: var(--bg-t); padding: 8px 16px; border-radius: 20px; font-size: 13px; color: var(--text-s); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: left; margin-bottom: 30px; }
        .footer-links a { color: var(--text-s); font-size: 13px; display: block; margin-bottom: 8px; }
        .copyright { font-size: 12px; color: var(--text-s); margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }