:root {
            --primary: #d4af37;
            --secondary: #1a1d24;
            --accent: #f39c12;
            --text-light: #ffffff;
            --text-dim: #b0b3b8;
            --bg-dark: #0f1216;
            --card-bg: #242830;
            --gradient: linear-gradient(135deg, #d4af37 0%, #f39c12 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
        body { background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: var(--secondary); height: 60px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-content { display: flex; justify-content: space-between; align-items: center; height: 100%; }
        .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; color: var(--primary); }
        .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(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--gradient); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .section-title { font-size: 1.2rem; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; color: var(--primary); }
        .jackpot-card { background: radial-gradient(circle, #2c3e50 0%, #000000 100%); border: 2px solid var(--primary); border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
        .jackpot-label { font-size: 14px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px var(--accent); margin: 5px 0; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-title { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-light); }
        .intro-card { background: var(--card-bg); border-radius: 15px; padding: 20px; margin-bottom: 25px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 18px; margin-bottom: 12px; color: var(--primary); line-height: 1.4; }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .guidelines { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .guide-item { background: #1e2229; padding: 15px; border-radius: 10px; text-align: center; }
        .guide-item i { font-size: 24px; color: var(--primary); margin-bottom: 8px; }
        .guide-item span { display: block; font-size: 12px; font-weight: 600; }
        .winners-box { background: var(--card-bg); border-radius: 15px; padding: 15px; margin-bottom: 25px; height: 300px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #333; font-size: 13px; }
        .winner-name { color: var(--text-dim); }
        .winner-prize { color: #2ecc71; font-weight: bold; }
        .pro-elements { display: flex; justify-content: space-around; padding: 20px 0; opacity: 0.7; }
        .pro-elements i { font-size: 30px; }
        .comments-section { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }
        .comment-card { background: #1e2229; padding: 15px; border-radius: 12px; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #000; font-weight: bold; }
        .user-rating { color: var(--accent); font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-dim); font-style: italic; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--card-bg); border-radius: 10px; padding: 15px; margin-bottom: 10px; }
        .faq-question { font-weight: 600; color: var(--primary); margin-bottom: 8px; font-size: 15px; display: flex; align-items: flex-start; gap: 8px; }
        .faq-answer { font-size: 14px; color: var(--text-dim); line-height: 1.5; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; height: 65px; border-top: 1px solid #333; z-index: 1000; padding-bottom: 5px; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-dim); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }
        footer { background: #0a0c0f; padding: 30px 15px 100px; text-align: center; }
        .foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .foot-links a { color: var(--text-dim); font-size: 13px; }
        .copy { font-size: 12px; color: #555; margin-top: 15px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines { grid-template-columns: repeat(3, 1fr); }
        }