:root {
            --primary: #FFD700;
            --primary-hover: #F5C400;
            --secondary: #E63946;
            --accent: #00E676;
            --bg-default: #0F1115;
            --bg-paper: #1A1D23;
            --bg-surface: #242830;
            --text-primary: #FFFFFF;
            --text-secondary: #9BA3AF;
            --border-default: #2D343F;
            --font-main: 'Montserrat', sans-serif;
            --font-secondary: 'Inter', sans-serif;
            --font-display: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-secondary);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            height: 60px;
            background: var(--bg-paper);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            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; font-family: var(--font-main); }
        .header-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--primary); color: #000; }
        .banner-box { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-section {
            background: linear-gradient(135deg, #1a1d23 0%, #242830 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
        }
        .jackpot-label { font-family: var(--font-display); color: var(--primary); font-size: 18px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: var(--font-display); font-size: 36px; color: #fff; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-paper); border-radius: 12px; }
        .intro-card h1 { font-family: var(--font-main); font-size: 24px; color: var(--primary); margin-bottom: 10px; }
        .section-title { font-family: var(--font-main); font-size: 20px; padding: 0 15px; margin: 20px 0 15px; border-left: 4px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; }
        .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; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: var(--bg-surface); aspect-ratio: 1/1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 8px; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; }
        .guidelines { padding: 15px; }
        .guide-item { background: var(--bg-paper); padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guide-item h3 { color: var(--primary); font-size: 18px; margin-bottom: 10px; }
        .lottery-container { background: #000; padding: 10px 0; margin: 20px 0; overflow: hidden; }
        .lottery-track { display: flex; gap: 20px; animation: scroll 40s linear infinite; width: max-content; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { background: var(--bg-surface); padding: 8px 15px; border-radius: 20px; border: 1px solid var(--border-default); white-space: nowrap; font-size: 13px; }
        .winner-tag span { color: var(--accent); font-weight: bold; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-btn { padding: 12px; text-align: center; border-radius: 8px; font-weight: bold; background: var(--bg-surface); border: 1px solid var(--border-default); }
        .review-card { background: var(--bg-paper); margin: 15px; padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: #FFD700; font-size: 12px; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-paper); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--primary); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { margin: 15px; padding: 20px; background: #1a1d23; border-radius: 12px; text-align: center; border: 1px dashed var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent); }
        .navigator { position: fixed; bottom: 0; width: 100%; height: 65px; background: var(--bg-paper); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; font-size: 12px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }
        footer { padding: 30px 15px 100px; background: #08090b; border-top: 1px solid var(--border-default); }
        .contact-row { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .contact-row a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-secondary); }