:root {
            --primary-gold: #D4AF37;
            --secondary-red: #E63946;
            --accent-blue: #1D4ED8;
            --bg-dark: #0A0A0B;
            --bg-card: #161618;
            --nav-bg: #0F0F11;
            --text-white: #FFFFFF;
            --text-gray: #A1A1AA;
            --text-gold: #F1C40F;
            --border-light: #27272A;
            --border-active: #D4AF37;
            --success: #22C55E;
            --warning: #F59E0B;
            --font-display: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'Roboto Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-dark);
            color: var(--text-white);
            font-family: var(--font-body);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        header {
            background-color: var(--nav-bg);
            border-bottom: 1px solid var(--border-light);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-family: var(--font-display); font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid var(--primary-gold); background: transparent; color: var(--primary-gold); font-weight: 500; font-size: 14px; cursor: pointer; transition: 0.3s; }
        .btn-register { padding: 6px 15px; border-radius: 20px; background: var(--primary-gold); color: #000; border: none; font-weight: 600; font-size: 14px; cursor: pointer; transition: 0.3s; }
        .btn-register:hover { background: var(--text-gold); }
        main { max-width: 1200px; margin: 0 auto; padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #1a1a1c 0%, #2d2d30 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            border: 2px solid var(--primary-gold);
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-family: var(--font-display); font-size: 0.875rem; color: var(--text-gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-family: var(--font-mono); font-size: 2.5rem; font-weight: 800; color: var(--text-white); text-shadow: 0 0 10px var(--primary-gold); }
        .intro-card { background: var(--bg-card); margin: 15px; padding: 25px; border-radius: 15px; border: 1px solid var(--border-light); }
        .intro-card h1 { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary-gold); margin-bottom: 12px; }
        .intro-card p { font-size: 0.95rem; color: var(--text-gray); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-family: var(--font-display); font-size: 1.25rem; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--primary-gold); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-light); text-decoration: none; display: block; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 0.875rem; color: var(--text-white); text-align: center; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: var(--bg-card); padding: 15px 5px; border-radius: 10px; text-align: center; border: 1px solid var(--border-light); }
        .payment-item i { font-size: 1.5rem; color: var(--primary-gold); margin-bottom: 8px; display: block; }
        .payment-item span { font-size: 0.75rem; color: var(--text-gray); }
        .guide-section { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { background: var(--bg-card); padding: 20px; border-radius: 15px; border-left: 4px solid var(--accent-blue); }
        .guide-card h2 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-white); }
        .guide-card p { font-size: 0.875rem; color: var(--text-gray); }
        .lottery-container { background: var(--bg-card); margin: 15px; border-radius: 15px; overflow: hidden; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; border-bottom: 1px solid var(--border-light); font-size: 0.8125rem; }
        .lottery-user { color: var(--text-gold); font-weight: 600; }
        .lottery-win { color: var(--success); font-family: var(--font-mono); font-weight: bold; }
        .lottery-time { color: var(--text-gray); font-size: 0.75rem; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 15px; }
        .provider-block { background: linear-gradient(45deg, var(--bg-card), #1e1e21); padding: 15px; border-radius: 10px; text-align: center; font-weight: bold; border: 1px solid var(--border-light); color: var(--primary-gold); font-size: 0.875rem; }
        .comment-section { padding: 15px; display: flex; flex-direction: column; gap: 12px; }
        .comment-card { background: var(--bg-card); padding: 15px; border-radius: 12px; border: 1px solid var(--border-light); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-avatar { width: 35px; height: 35px; background: #27272a; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-gold); }
        .comment-info h3 { font-size: 0.875rem; font-weight: 600; }
        .comment-stars { color: #F59E0B; font-size: 0.75rem; }
        .comment-content { font-size: 0.8125rem; color: var(--text-gray); margin-bottom: 8px; }
        .comment-date { font-size: 0.7rem; color: var(--text-gray); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-card); border-radius: 10px; margin-bottom: 10px; border: 1px solid var(--border-light); padding: 15px; }
        .faq-item h3 { font-size: 0.95rem; color: var(--text-gold); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
        .faq-item p { font-size: 0.875rem; color: var(--text-gray); line-height: 1.6; }
        .security-section { padding: 20px 15px; text-align: center; background: #0c0c0e; margin-top: 20px; border-top: 1px solid var(--border-light); }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 1.5rem; color: var(--success); }
        .security-text { font-size: 0.8125rem; color: var(--text-gray); margin-bottom: 10px; }
        .security-links { display: flex; justify-content: center; gap: 15px; font-size: 0.75rem; color: var(--accent-blue); text-decoration: underline; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--nav-bg); border-top: 1px solid var(--border-light); display: flex; justify-content: space-around; align-items: center; z-index: 1000; padding-bottom: 5px; }
        .nav-item { text-decoration: none; color: var(--text-gray); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 0.7rem; width: 20%; }
        .nav-item i { font-size: 1.25rem; }
        .nav-item.active { color: var(--primary-gold); }
        footer { background: #070708; padding: 40px 15px 100px; color: var(--text-gray); border-top: 1px solid var(--border-light); }
        .footer-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-contact a { background: var(--bg-card); padding: 12px; border-radius: 8px; color: var(--text-white); text-decoration: none; font-size: 0.8125rem; display: flex; align-items: center; gap: 8px; border: 1px solid var(--border-light); }
        .footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links-grid a { color: var(--text-gray); text-decoration: none; font-size: 0.8125rem; display: block; margin-bottom: 8px; transition: 0.2s; }
        .footer-links-grid a:hover { color: var(--primary-gold); }
        .copyright { text-align: center; font-size: 0.75rem; color: var(--text-gray); padding-top: 20px; border-top: 1px solid var(--border-light); line-height: 1.6; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .payment-methods { grid-template-columns: repeat(8, 1fr); }
        }