* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: #0f1218; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .container { padding: 0 15px; width: 100%; max-width: 800px; margin: 0 auto; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e37; }
        .header-content { 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: #f0b90b; }
        .header-btns { display: flex; gap: 8px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; border: 1px solid #f0b90b; color: #f0b90b; }
        .btn-reg { background: linear-gradient(180deg, #f0b90b 0%, #d49a00 100%); color: #000; }
        .banner { margin: 10px 0; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 2/1; }
        .jackpot-card { background: linear-gradient(45deg, #1a1d24, #2c313c); border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; border: 1px solid #3e4451; position: relative; overflow: hidden; }
        .jackpot-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(240,185,11,0.1) 0%, transparent 70%); }
        .jackpot-title { font-size: 14px; color: #f0b90b; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; margin: 10px 0; text-shadow: 0 0 10px rgba(240,185,11,0.5); }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #f0b90b; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e37; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 25px 0; border: 1px solid #2a2e37; }
        .intro-card h1 { font-size: 20px; color: #f0b90b; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b8c1; }
        .guidelines-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 10px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; align-items: flex-start; gap: 12px; border: 1px solid #2a2e37; }
        .guide-item i { color: #f0b90b; font-size: 20px; margin-top: 3px; }
        .guide-text h3 { font-size: 15px; margin-bottom: 4px; }
        .guide-text p { font-size: 13px; color: #b0b8c1; }
        .winners-box { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; border: 1px solid #2a2e37; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: #b0b8c1; }
        .winner-win { color: #4caf50; font-weight: 600; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 0; margin-bottom: 25px; background: rgba(26,29,36,0.5); border-radius: 12px; }
        .trust-item { text-align: center; font-size: 11px; color: #b0b8c1; }
        .trust-item i { font-size: 24px; color: #f0b90b; margin-bottom: 8px; display: block; }
        .comments-box { margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #2a2e37; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; border-radius: 50%; background: #3e4451; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #f0b90b; }
        .user-meta h4 { font-size: 14px; }
        .stars { color: #f0b90b; font-size: 12px; }
        .comment-text { font-size: 13px; color: #b0b8c1; font-style: italic; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 12px; margin-bottom: 10px; border: 1px solid #2a2e37; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: #f0b90b; margin-bottom: 10px; }
        .faq-item p { font-size: 13px; color: #b0b8c1; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2a2e37; z-index: 1000; padding-bottom: 5px; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #b0b8c1; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #f0b90b; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2e37; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-links a { font-size: 13px; color: #b0b8c1; }
        .footer-copy { font-size: 12px; color: #616e7c; margin-top: 15px; }