:root {
            --bg-dark: #0f1218;
            --bg-card: #1a1d24;
            --accent-gold: #d4af37;
            --text-main: #ffffff;
            --text-dim: #a0a0a0;
            --btn-grad: linear-gradient(135deg, #d4af37 0%, #f9e29a 100%);
            --secondary-grad: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { height: 60px; background: var(--bg-card); display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e37; }
        .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; text-transform: uppercase; letter-spacing: 1px; }
        .auth-btns { display: flex; gap: 10px; }
        .btn-login { padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; background: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); }
        .btn-reg { padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; background: var(--btn-grad); color: #000; border: none; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .container { padding: 15px; }
        .jackpot-section { background: var(--secondary-grad); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; border: 1px solid #333; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .jackpot-title { font-size: 14px; color: var(--accent-gold); text-transform: uppercase; font-weight: bold; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(212,175,55,0.5); font-family: monospace; }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
        .section-header h2 { font-size: 18px; color: var(--accent-gold); display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid #2a2e37; transition: transform 0.2s; 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: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: var(--bg-card); border-radius: 15px; padding: 20px; margin-bottom: 25px; border-left: 4px 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-dim); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 25px; }
        .guide-item { background: #15181f; padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 15px; }
        .guide-item i { font-size: 24px; color: var(--accent-gold); width: 30px; }
        .guide-text h3 { font-size: 15px; margin-bottom: 2px; }
        .guide-text p { font-size: 12px; color: var(--text-dim); }
        .winning-scroll { background: #000; border-radius: 12px; height: 200px; overflow-y: hidden; position: relative; margin-bottom: 25px; padding: 10px; }
        .winning-track { animation: scrollUp 40s linear infinite; }
        .winner-row { display: flex; justify-content: space-between; font-size: 12px; padding: 8px 0; border-bottom: 1px border #222; }
        .winner-row span:last-child { color: #4caf50; font-weight: bold; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .trust-badge { display: flex; justify-content: center; gap: 20px; margin: 20px 0; opacity: 0.7; }
        .trust-badge img { height: 30px; filter: grayscale(1); }
        .comment-section { margin-bottom: 25px; }
        .comment-card { background: var(--bg-card); padding: 15px; border-radius: 12px; margin-bottom: 10px; position: relative; }
        .user-meta { 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-size: 18px; }
        .user-meta span { font-size: 14px; font-weight: 600; }
        .stars { color: #ffc107; font-size: 12px; }
        .comment-card p { font-size: 13px; color: var(--text-dim); font-style: italic; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-card); border-radius: 10px; margin-bottom: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--accent-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-dim); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-card); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e37; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-dim); }
        .nav-item i { font-size: 20px; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #222; }
        .foot-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
        .foot-row a { font-size: 13px; color: var(--text-dim); }
        .foot-copy { font-size: 12px; color: #555; margin-top: 10px; }