:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #FFFFFF;
            --accent: #FF4500;
            --bg-main: #050505;
            --bg-surface: #121212;
            --bg-elevated: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --gold-gradient: linear-gradient(180deg, #FFE08A 0%, #D4AF37 100%);
            --font-heading: 'Montserrat', 'Inter', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-numeric: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.6;
            overflow-x: hidden;
        }
        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 #2c2c2c;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2 / 1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 15px;
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary-variant);
        }
        .jackpot-label { font-family: var(--font-heading); font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-numeric); font-size: 32px; font-weight: 900; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-elevated); border-radius: 15px; }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 10px; font-family: var(--font-heading); line-height: 1.2; }
        .game-section { padding: 0 15px 20px; }
        .section-title { font-size: 20px; margin-bottom: 15px; font-family: var(--font-heading); border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; display: block; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 15px; }
        .payment-item { background: var(--bg-elevated); padding: 10px; border-radius: 8px; text-align: center; }
        .payment-item i { font-size: 20px; color: var(--primary); display: block; margin-bottom: 5px; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); }
        .guide-section { margin: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; }
        .guide-card h2 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
        .lottery-section { margin: 15px; background: var(--bg-elevated); border-radius: 15px; padding: 15px; }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2c2c2c; font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--primary); }
        .lottery-win { color: #00C853; font-weight: 600; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 15px; }
        .provider-item { background: linear-gradient(45deg, #1e1e1e, #2c2c2c); padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; border: 1px solid #333; }
        .review-section { margin: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 15px; margin-bottom: 10px; border: 1px solid #2c2c2c; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-stars { color: var(--primary); font-size: 12px; }
        .faq-section { margin: 15px; }
        .faq-item { background: var(--bg-elevated); margin-bottom: 8px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { margin: 15px; text-align: center; padding: 20px; background: #0a0a0a; border-radius: 15px; border: 1px dashed #333; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .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 #2c2c2c; z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        footer { background: #000; padding: 30px 15px 80px; text-align: center; border-top: 1px solid #2c2c2c; }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contact a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-secondary); border-top: 1px solid #1a1a1a; pt: 20px; }