:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #1E293B;
            --accent: #FF4D4D;
            --bg-main: #0F172A;
            --bg-sec: #1E293B;
            --bg-card: #162032;
            --text-main: #F8FAFC;
            --text-sec: #94A3B8;
            --highlight: #FFD700;
            --success: #10B981;
            --border: #334155;
            --font-main: 'Montserrat', 'Inter', system-ui, sans-serif;
            --font-display: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-sec);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid var(--border); }
        .btn-reg { background: var(--primary); color: var(--bg-main); }
        .btn-reg:hover { background: var(--primary-hover); }
        main { max-width: 800px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(135deg, #1e293b, #0f172a);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-label { color: var(--primary); font-family: var(--font-display); font-size: 20px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { color: var(--highlight); font-size: 32px; font-weight: 800; font-family: var(--font-display); }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--bg-card); border-radius: 12px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; font-family: var(--font-display); }
        .intro-card p { font-size: 15px; color: var(--text-sec); }
        .section-title { margin: 25px 15px 15px; font-size: 22px; font-family: var(--font-display); color: var(--text-main); display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-card); border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; transition: 0.3s; border: 1px solid var(--border); }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-main); }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: var(--bg-sec); padding: 10px; border-radius: 8px; text-align: center; font-size: 12px; border: 1px solid var(--border); }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 5px; }
        .guide-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { background: var(--bg-card); padding: 15px; border-radius: 12px; }
        .guide-card h2 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .lottery-list { margin: 20px 15px; background: var(--bg-sec); border-radius: 12px; padding: 10px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid var(--border); }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--text-main); font-weight: 600; font-size: 14px; }
        .lottery-win { color: var(--success); font-weight: 700; font-size: 14px; }
        .lottery-game { color: var(--text-sec); font-size: 12px; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-item { background: linear-gradient(45deg, #162032, #1e293b); padding: 15px; border-radius: 8px; text-align: center; font-weight: 700; color: var(--primary); border: 1px solid var(--border); }
        .review-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 12px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; border: 1px solid var(--border); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-sec); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 20px; }
        .review-name { font-weight: 600; font-size: 14px; }
        .review-stars { color: var(--highlight); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-sec); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--border); }
        .faq-container { padding: 0 15px; }
        .faq-item { background: var(--bg-card); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; color: var(--text-main); display: flex; justify-content: space-between; border-bottom: 1px solid var(--border); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-sec); display: block; }
        .safety-section { margin: 30px 15px; padding: 20px; background: rgba(255, 77, 77, 0.05); border: 1px dashed var(--accent); border-radius: 12px; text-align: center; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; font-size: 30px; margin-bottom: 15px; color: var(--accent); }
        .safety-text { font-size: 13px; color: var(--text-sec); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-sec); display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid var(--primary); z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-sec); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary); }
        footer { background: var(--bg-sec); padding: 30px 15px 100px; border-top: 1px solid var(--border); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contact a { color: var(--text-main); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { color: var(--text-sec); text-decoration: none; font-size: 13px; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--border); border-top: 1px solid var(--border); padding-top: 20px; }