:root {
            --primary-bg: #1a1d24;
            --card-bg: #252a34;
            --accent-gold: #d4af37;
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --btn-grad: linear-gradient(135deg, #d4af37 0%, #f9e29f 100%);
            --secondary-grad: linear-gradient(135deg, #303642 0%, #1a1d24 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: '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; }
        img { max-width: 100%; height: auto; display: block; }
        .container { padding: 0 15px; width: 100%; max-width: 1200px; margin: 0 auto; }
        header { position: sticky; top: 0; z-index: 1000; background: rgba(26, 29, 36, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 10px 0; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; letter-spacing: 1px; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid var(--accent-gold); }
        .btn-reg { background: var(--btn-grad); color: #000; }
        .banner { margin: 10px 0; cursor: pointer; border-radius: 12px; overflow: hidden; aspect-ratio: 2/1; }
        .jackpot-wrap { background: var(--secondary-grad); border: 2px solid var(--accent-gold); border-radius: 15px; padding: 15px; text-align: center; margin: 20px 0; box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
        .jackpot-title { font-size: 14px; color: var(--accent-gold); text-transform: uppercase; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); font-family: 'Courier New', monospace; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid var(--accent-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid rgba(255,255,255,0.05); }
        .game-card:active { transform: scale(0.95); }
        .game-info { padding: 10px; text-align: center; }
        .game-info p { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: var(--secondary-grad); padding: 20px; border-radius: 15px; margin: 25px 0; border: 1px solid rgba(212, 175, 55, 0.2); }
        .intro-card h1 { font-size: 20px; color: var(--accent-gold); margin-bottom: 12px; }
        .intro-card p { font-size: 14px; color: var(--text-muted); }
        .trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; text-align: center; }
        .badge-item { background: var(--card-bg); padding: 10px; border-radius: 8px; font-size: 10px; }
        .badge-item i { font-size: 20px; color: var(--accent-gold); display: block; margin-bottom: 5px; }
        .guidelines { background: var(--card-bg); padding: 15px; border-radius: 15px; margin: 20px 0; }
        .guide-item { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .guide-item:last-child { border: none; }
        .guide-item h3 { font-size: 15px; color: var(--accent-gold); margin-bottom: 5px; }
        .guide-item p { font-size: 13px; color: var(--text-muted); }
        .winning-feed { background: #000; border-radius: 15px; padding: 15px; height: 300px; overflow-y: auto; margin: 20px 0; }
        .win-record { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #222; font-size: 12px; }
        .win-record span:last-child { color: #4caf50; font-weight: bold; }
        .payments { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; padding: 20px; filter: grayscale(1); opacity: 0.6; }
        .comment-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: 12px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user i { font-size: 24px; color: var(--accent-gold); }
        .stars { color: #ffc107; font-size: 12px; }
        .comment-text { font-size: 13px; font-style: italic; color: var(--text-muted); }
        .faq-section { margin: 25px 0; }
        .faq-item { background: var(--card-bg); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h4 { font-size: 15px; color: var(--accent-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-muted); text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.1); z-index: 1001; }
        .nav-item { text-align: center; color: var(--text-muted); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item span { font-size: 10px; }
        footer { padding: 30px 15px 100px; background: #111; text-align: center; border-top: 1px solid #222; }
        .footer-links { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; font-size: 13px; }
        .footer-links a { color: var(--text-muted); }
        .copyright { font-size: 11px; color: #555; margin-top: 20px; }