:root {
            --primary-gold: #FFD700;
            --primary-gold-hover: #FFC400;
            --secondary-blue: #0047AB;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-variant: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
            background-color: var(--bg-main);
            color: var(--text-primary);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        header {
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--gold-gradient); color: #0D0D0D; }
        main { padding-bottom: 80px; max-width: 800px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; object-fit: cover; cursor: pointer; }
        .jackpot-container {
            background: var(--bg-variant);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary-gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { font-size: 14px; color: var(--primary-gold); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 800;
            color: #FFFFFF;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            margin-top: 5px;
        }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 24px; color: var(--primary-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 15px; color: var(--text-secondary); }
        .section-header { padding: 0 20px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 20px; }
        .section-header::before { content: ""; width: 4px; height: 20px; background: var(--primary-gold); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.96); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px 15px; }
        .pay-item { background: var(--bg-variant); padding: 10px; border-radius: 8px; text-align: center; font-size: 12px; }
        .pay-item i { font-size: 20px; display: block; margin-bottom: 5px; color: var(--primary-gold); }
        .guide-section { padding: 20px 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 3px solid var(--secondary-blue); }
        .guide-item h3 { font-size: 18px; margin-bottom: 8px; color: var(--primary-gold); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-section { background: var(--bg-variant); margin: 20px 0; padding: 20px 15px; }
        .winner-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #333; font-size: 13px; }
        .winner-name { color: var(--primary-gold); font-weight: 600; }
        .winner-amount { color: #00C853; font-family: 'Roboto Mono', monospace; }
        .provider-grid { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; }
        .provider-chip { flex: 1; min-width: 45%; background: var(--secondary-blue); padding: 10px; border-radius: 8px; text-align: center; font-weight: bold; font-size: 14px; }
        .reviews-section { padding: 20px 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-top i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: var(--primary-gold); font-size: 12px; }
        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-variant); border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; color: var(--primary-gold); border-bottom: 1px solid #333; }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { padding: 25px 15px; text-align: center; background: #000; border-top: 1px solid #333; }
        .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); max-width: 500px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; font-size: 12px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { color: var(--primary-gold); transform: translateY(-5px); }
        .nav-item:nth-child(3) i { font-size: 28px; }
        footer { background: #050505; padding: 30px 15px 100px 15px; border-top: 1px solid #333; }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 30px; }
        .footer-contact a { color: var(--primary-gold); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; }
        .copyright { text-align: center; font-size: 12px; color: #666; border-top: 1px solid #222; padding-top: 20px; }