:root {
            --primary-gold: #d4af37;
            --dark-bg: #111418;
            --card-bg: #1a1d24;
            --text-main: #ffffff;
            --text-dim: #a0a0a0;
            --accent-blue: #1e3a8a;
            --btn-grad: linear-gradient(135deg, #d4af37 0%, #f9e29c 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: var(--dark-bg); color: var(--text-main); line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        header { background: #000; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; text-decoration: none; color: white; }
        .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: 8px; }
        .btn { border: none; padding: 8px 16px; border-radius: 20px; font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 14px; }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-reg { background: var(--btn-grad); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .container { padding: 15px; }
        .jackpot-sec { background: radial-gradient(circle, #3a0000 0%, #1a1d24 100%); border: 2px solid var(--primary-gold); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
        .jackpot-label { color: var(--primary-gold); text-transform: uppercase; letter-spacing: 2px; font-size: 14px; margin-bottom: 5px; }
        .jackpot-val { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px var(--primary-gold); font-family: 'Courier New', monospace; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; border-left: 4px solid var(--primary-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; text-decoration: none; color: white; transition: transform 0.2s; border: 1px solid #2d323e; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; font-weight: 500; }
        .intro-card { background: var(--card-bg); border-radius: 15px; padding: 20px; margin-bottom: 25px; border-top: 3px solid var(--primary-gold); }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: var(--primary-gold); line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 25px; }
        .guide-item { background: #1e222a; padding: 15px; border-radius: 10px; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: var(--primary-gold); font-size: 20px; margin-top: 3px; }
        .winners-box { background: #0c0e12; border-radius: 12px; padding: 15px; height: 200px; overflow-y: hidden; position: relative; border: 1px solid #222; margin-bottom: 25px; }
        .winner-record { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #1a1d24; font-size: 12px; }
        .winner-record span:nth-child(2) { color: #4ade80; font-weight: 700; }
        .winner-record span:nth-child(3) { color: var(--primary-gold); }
        .pro-elements { display: flex; justify-content: space-around; background: #1a1d24; padding: 20px 10px; border-radius: 12px; margin-bottom: 25px; }
        .pro-item { text-align: center; font-size: 11px; color: var(--text-dim); }
        .pro-item i { display: block; font-size: 24px; color: var(--primary-gold); margin-bottom: 8px; }
        .comments-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; position: relative; border: 1px solid #2d323e; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-avatar { width: 35px; height: 35px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
        .user-name { font-size: 14px; font-weight: 600; }
        .stars { color: #fbbf24; font-size: 12px; margin-bottom: 5px; }
        .comment-text { font-size: 13px; color: var(--text-dim); font-style: italic; }
        .faq-sec { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid #2d323e; }
        .faq-q { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-a { padding: 0 15px 15px; font-size: 13px; color: var(--text-dim); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #000; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-dim); display: flex; flex-direction: column; align-items: center; font-size: 10px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary-gold); }
        footer { background: #0a0c0f; padding: 30px 15px 100px; text-align: center; font-size: 12px; border-top: 1px solid #222; }
        .foot-row { margin-bottom: 20px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .foot-link { color: var(--text-dim); text-decoration: none; transition: 0.3s; }
        .foot-link:hover { color: var(--primary-gold); }
        .copyright { color: #555; margin-top: 15px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .comments-grid { grid-template-columns: 1fr 1fr; }
            .container { max-width: 800px; margin: 0 auto; }
        }