:root {
            --primary-bg: #1a1d24;
            --card-bg: #252a34;
            --accent-gold: #f39c12;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --btn-grad: linear-gradient(135deg, #f39c12, #d35400);
            --header-blur: rgba(26, 29, 36, 0.9);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: var(--primary-bg); color: var(--text-white); line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 600px; margin: 0 auto; padding: 0 15px; }

        header { background: var(--header-blur); backdrop-filter: blur(10px); height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .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; color: var(--text-white); text-transform: uppercase; letter-spacing: 1px; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); }
        .btn-reg { background: var(--btn-grad); color: white; }
        .btn:active { transform: scale(0.95); }

        .banner { width: 100%; display: block; cursor: pointer; border-radius: 0 0 15px 15px; overflow: hidden; }
        .banner img { width: 100%; aspect-ratio: 2/1; display: block; object-fit: cover; }

        .jackpot-card { background: radial-gradient(circle, #3a1c71, #d76d77, #ffaf7b); margin: 20px 0; padding: 20px; border-radius: 15px; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.3); border: 2px solid gold; }
        .jackpot-label { font-size: 14px; color: #fff; text-transform: uppercase; font-weight: bold; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); font-family: monospace; }

        .section-title { font-size: 18px; margin: 25px 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: repeat(2, 1fr); gap: 12px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }

        .intro-card { background: var(--card-bg); padding: 20px; border-radius: 15px; margin: 25px 0; border: 1px solid #444; }
        .intro-card h1 { font-size: 20px; color: var(--accent-gold); margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-gray); }

        .trust-elements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 25px 0; text-align: center; }
        .trust-item { font-size: 12px; color: var(--text-gray); }
        .trust-item i { font-size: 24px; color: var(--accent-gold); display: block; margin-bottom: 5px; }

        .guidelines { margin: 25px 0; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: 10px; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 12px; border: 1px solid #333; }
        .guide-item i { color: var(--accent-gold); margin-top: 4px; }
        .guide-text h4 { font-size: 15px; margin-bottom: 4px; }
        .guide-text p { font-size: 13px; color: var(--text-gray); }

        .winning-scroll { background: rgba(0,0,0,0.2); border-radius: 15px; padding: 15px; height: 300px; overflow-y: auto; border: 1px solid #333; }
        .win-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #333; font-size: 13px; }
        .win-user { color: var(--text-gray); }
        .win-amount { color: #2ecc71; font-weight: bold; }

        .comments-section { margin: 25px 0; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #333; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-meta i { font-size: 20px; color: var(--accent-gold); }
        .user-name { font-weight: 600; font-size: 14px; }
        .stars { color: #f1c40f; font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-gray); }

        .faq-section { margin: 30px 0; }
        .faq-item { margin-bottom: 15px; background: var(--card-bg); border-radius: 10px; padding: 15px; border-left: 3px solid var(--accent-gold); }
        .faq-q { font-weight: 600; font-size: 15px; margin-bottom: 8px; color: var(--text-white); }
        .faq-a { font-size: 14px; color: var(--text-gray); line-height: 1.5; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--header-blur); backdrop-filter: blur(10px); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-gray); font-size: 11px; }
        .nav-item i { font-size: 18px; margin-bottom: 4px; }
        .nav-item:active { color: var(--accent-gold); }

        footer { background: #111; padding: 30px 15px 40px; text-align: center; border-top: 2px solid var(--accent-gold); }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-gray); font-size: 13px; }
        .copyright { font-size: 12px; color: #666; }
        
        .promo-badge { position: absolute; top: 5px; left: 5px; background: #e74c3c; color: white; font-size: 10px; padding: 2px 6px; border-radius: 4px; font-weight: bold; z-index: 1; }