:root {
            --primary-bg: #1a1d24;
            --card-bg: #252a34;
            --accent-gold: #d4af37;
            --text-light: #f1f1f1;
            --text-muted: #a0a0a0;
            --btn-grad: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
            --btn-red: linear-gradient(135deg, #e74c3c 0%, #c0392b 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-light); line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        header { position: sticky; top: 0; z-index: 1000; background: rgba(26, 29, 36, 0.95); backdrop-filter: blur(10px); padding: 10px 15px; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 5px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: var(--accent-gold); }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; border: none; font-weight: 600; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background: transparent; color: var(--text-light); border: 1px solid var(--accent-gold); }
        .btn-register { background: var(--btn-grad); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        main { padding: 15px; padding-bottom: 80px; max-width: 800px; margin: 0 auto; }
        .jackpot-section { background: radial-gradient(circle, #3a3f4b 0%, #1a1d24 100%); border: 2px solid var(--accent-gold); border-radius: 15px; padding: 20px; text-align: center; margin: 20px 0; position: relative; }
        .jackpot-title { font-size: 14px; color: var(--accent-gold); 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.5); }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; border-left: 4px solid var(--accent-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-title { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: var(--card-bg); border-radius: 15px; padding: 20px; margin: 25px 0; border: 1px solid #3d4452; }
        .intro-card h1 { font-size: 20px; color: var(--accent-gold); margin-bottom: 12px; }
        .intro-card p { font-size: 14px; color: var(--text-muted); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 20px 0; }
        .guide-item { background: #2c323d; padding: 15px; border-radius: 10px; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: var(--accent-gold); font-size: 20px; }
        .guide-content h3 { font-size: 15px; margin-bottom: 5px; }
        .guide-content p { font-size: 13px; color: var(--text-muted); }
        .winners-box { background: #111; border-radius: 15px; padding: 15px; margin: 25px 0; max-height: 300px; overflow-y: auto; border: 1px solid #222; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #222; font-size: 13px; }
        .winner-name { color: var(--text-muted); }
        .winner-prize { color: var(--accent-gold); font-weight: bold; }
        .pro-elements { display: flex; justify-content: space-around; padding: 20px 0; background: #252a34; border-radius: 15px; margin: 20px 0; }
        .pro-item { text-align: center; }
        .pro-item i { font-size: 24px; color: var(--accent-gold); margin-bottom: 5px; }
        .pro-item span { display: block; font-size: 11px; text-transform: uppercase; }
        .comments { margin: 25px 0; }
        .comment-card { background: #2c323d; padding: 15px; border-radius: 12px; margin-bottom: 10px; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; border-radius: 50%; background: #444; display: flex; align-items: center; justify-content: center; }
        .user-name { font-size: 14px; font-weight: bold; }
        .rating { color: var(--accent-gold); font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-muted); font-style: italic; }
        .faq-section { margin: 30px 0; }
        .faq-item { background: var(--card-bg); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-size: 15px; font-weight: 600; cursor: pointer; border-bottom: 1px solid #333; color: var(--accent-gold); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-muted); background: #2c323d; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; border-top: 1px solid #333; display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; }
        .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: 11px; }
        .nav-item:hover { color: var(--accent-gold); }
        footer { background: #111; padding: 30px 15px 100px; text-align: center; border-top: 2px solid var(--accent-gold); }
        .foot-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .foot-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { font-size: 12px; color: #555; }
        @media (min-width: 600px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines { grid-template-columns: 1fr 1fr; }
        }