:root {
            --primary-bg: #121418;
            --secondary-bg: #1a1d24;
            --accent-gold: #d4af37;
            --accent-hover: #f1c40f;
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --card-shadow: 0 4px 15px rgba(0,0,0,0.5);
            --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f1c40f 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; }
        header { background-color: var(--secondary-bg); padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        .logo-box { display: flex; align-items: center; text-decoration: none; color: var(--text-main); }
        .logo-box img { width: 25px; height: 25px; margin-right: 8px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; text-decoration: none; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background-color: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); }
        .btn-register { background: var(--gradient-gold); color: #000; }
        .btn:active { transform: scale(0.95); }
        main { padding: 0 0 80px 0; 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-section { background: radial-gradient(circle, #3a0000 0%, #121418 100%); padding: 20px; text-align: center; border-bottom: 2px solid var(--accent-gold); }
        .jackpot-title { color: var(--accent-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(212,175,55,0.8); margin: 5px 0; }
        .section-title { padding: 20px 15px 10px; font-size: 18px; border-left: 4px solid var(--accent-gold); margin: 15px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--secondary-bg); border-radius: 12px; overflow: hidden; text-decoration: none; color: var(--text-main); box-shadow: var(--card-shadow); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: var(--secondary-bg); margin: 20px 15px; padding: 20px; border-radius: 15px; border-top: 3px solid var(--accent-gold); }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: var(--accent-gold); }
        .intro-card p { font-size: 14px; color: var(--text-muted); }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 15px; }
        .guide-item { background: #1e222b; padding: 15px; border-radius: 10px; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: var(--accent-gold); font-size: 20px; margin-top: 3px; }
        .guide-text h3 { font-size: 15px; margin-bottom: 5px; }
        .guide-text p { font-size: 13px; color: var(--text-muted); }
        .wins-container { background: #000; margin: 20px 15px; border-radius: 15px; padding: 15px; height: 300px; overflow-y: hidden; position: relative; }
        .wins-list { animation: scrollWins 30s linear infinite; }
        @keyframes scrollWins { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .win-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #222; font-size: 13px; }
        .win-user { color: var(--accent-gold); }
        .win-amt { color: #2ecc71; font-weight: bold; }
        .extra-elements { display: flex; justify-content: space-around; padding: 20px 15px; background: #1e222b; margin: 20px 0; }
        .element-box { text-align: center; font-size: 12px; color: var(--text-muted); }
        .element-box i { display: block; font-size: 24px; color: var(--accent-gold); margin-bottom: 8px; }
        .comments-grid { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: var(--secondary-bg); padding: 15px; border-radius: 12px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; font-weight: bold; }
        .stars { color: var(--accent-gold); font-size: 12px; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--secondary-bg); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-size: 14px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2a2e38; }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 5px; border-top: 1px solid #333; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-decoration: none; color: var(--text-muted); text-align: center; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: var(--accent-gold); }
        footer { background: #0b0d10; padding: 40px 20px 100px; text-align: center; border-top: 1px solid #222; }
        .footer-row { margin-bottom: 25px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-link { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-link:hover { color: var(--accent-gold); }
        .copyright { color: #555; font-size: 12px; margin-top: 10px; border-top: 1px solid #222; padding-top: 20px; }