:root {
            --primary-bg: #1a1d24;
            --card-bg: #252a34;
            --accent-gold: #ffcc00;
            --accent-gradient: linear-gradient(135deg, #ffcc00, #ff9900);
            --text-main: #ffffff;
            --text-dim: #a0a0a0;
            --rounded: 12px;
            --shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: var(--primary-bg); color: var(--text-main); line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { height: 60px; background: rgba(26, 29, 36, 0.95); display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: var(--accent-gold); }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 12px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid var(--text-dim); }
        .btn-reg { background: var(--accent-gradient); color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        main { padding: 15px; display: flex; flex-direction: column; gap: 20px; }
        .jackpot-card { background: radial-gradient(circle at top, #3a3f4b, #252a34); border: 2px solid var(--accent-gold); padding: 20px; border-radius: var(--rounded); text-align: center; box-shadow: 0 0 20px rgba(255, 204, 0, 0.2); }
        .jackpot-card h2 { font-size: 14px; color: var(--accent-gold); text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .section-title { font-size: 18px; border-left: 4px solid var(--accent-gold); padding-left: 10px; margin-bottom: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: var(--card-bg); border-radius: var(--rounded); overflow: hidden; box-shadow: var(--shadow); position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info p { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: var(--card-bg); padding: 20px; border-radius: var(--rounded); border: 1px solid #444; }
        .intro-card h1 { font-size: 20px; color: var(--accent-gold); margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; }
        .guide-item { background: #2c313a; padding: 15px; border-radius: var(--rounded); display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: var(--accent-gold); font-size: 20px; }
        .guide-text h3 { font-size: 15px; margin-bottom: 4px; }
        .guide-text p { font-size: 13px; color: var(--text-dim); }
        .winners-box { background: #000; padding: 15px; border-radius: var(--rounded); height: 200px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #222; font-size: 13px; }
        .winner-name { color: var(--text-dim); }
        .winner-prize { color: var(--accent-gold); font-weight: bold; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 0; filter: grayscale(1); opacity: 0.6; }
        .trust-elements i { font-size: 30px; }
        .comments-grid { display: flex; flex-direction: column; gap: 12px; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: var(--rounded); position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user i { font-size: 24px; color: var(--text-dim); }
        .comment-user span { font-weight: bold; font-size: 14px; }
        .comment-text { font-size: 13px; font-style: italic; color: var(--text-dim); }
        .stars { color: var(--accent-gold); font-size: 10px; margin-top: 5px; }
        .faq-section { background: var(--card-bg); border-radius: var(--rounded); padding: 15px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #333; padding-bottom: 15px; }
        .faq-item:last-child { border: none; }
        .faq-q { font-weight: bold; font-size: 15px; margin-bottom: 8px; color: var(--accent-gold); display: flex; align-items: center; gap: 8px; }
        .faq-a { font-size: 13px; color: var(--text-dim); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(37, 42, 52, 0.95); display: flex; height: 60px; align-items: center; justify-content: space-around; border-top: 1px solid #444; backdrop-filter: blur(10px); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-dim); }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        footer { padding: 30px 15px; background: #111; text-align: center; border-top: 1px solid #222; }
        .foot-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; font-size: 13px; }
        .foot-row a { color: var(--text-dim); }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 15px; }