:root {
            --primary-gold: #FFD700;
            --primary-dark-gold: #B8860B;
            --secondary-royal-blue: #0056B3;
            --accent-red: #E01E22;
            --bg-main: #0A0B0D;
            --surface-card: #161B22;
            --overlay-modal: #1F2630;
            --nav-bar: #000000;
            --text-main: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-default: #30363D;
            --success: #00C853;
            --font-primary: 'Montserrat', 'Inter', -apple-system, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: var(--font-primary);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--nav-bar);
            height: 60px;
            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-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 500; color: var(--primary-gold); }
        .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;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--primary-gold); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(135deg, #1a1a1a, #000);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { color: var(--primary-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255,215,0,0.5); font-family: monospace; }
        .intro-card { background: var(--surface-card); border-radius: 15px; padding: 20px; margin-bottom: 20px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-size: 22px; color: var(--primary-gold); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { font-size: 20px; margin: 20px 0 15px; padding-left: 10px; border-left: 4px solid var(--primary-gold); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--surface-card); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card:hover { border-color: var(--primary-gold); transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; color: var(--text-main); padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item { background: var(--surface-card); padding: 10px; border-radius: 8px; text-align: center; font-size: 11px; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 18px; color: var(--primary-gold); display: block; margin-bottom: 5px; }
        .guides-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--surface-card); padding: 15px; border-radius: 12px; border-left: 3px solid var(--secondary-royal-blue); }
        .guide-card h2 { font-size: 18px; margin-bottom: 8px; color: var(--primary-gold); }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }
        .lottery-container { background: var(--surface-card); border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--subtle-divider); font-size: 13px; }
        .lottery-item span:nth-child(2) { color: var(--success); font-weight: bold; }
        .providers-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
        .provider-block { flex: 1 1 calc(50% - 10px); padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; font-size: 14px; background: var(--secondary-royal-blue); }
        .provider-block:nth-child(even) { background: var(--primary-dark-gold); }
        .review-card { background: var(--overlay-modal); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .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-gold); font-size: 12px; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--surface-card); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--primary-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { background: var(--surface-card); padding: 20px; border-radius: 12px; text-align: center; border-top: 3px solid var(--accent-red); margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .security-links a { color: var(--secondary-royal-blue); text-decoration: none; font-size: 13px; margin: 0 5px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--nav-bar); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; color: var(--primary-gold); }
        footer { background: #000; padding: 30px 15px 100px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-social a { color: var(--text-main); text-decoration: none; font-size: 14px; border: 1px solid var(--border-default); padding: 5px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: left; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; display: block; margin-bottom: 5px; }
        .footer-copy { font-size: 12px; color: var(--text-secondary); border-top: 1px solid var(--border-default); padding-top: 15px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guides-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
        }