* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1216; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        header { background-color: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #ffc107; text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn { border: none; padding: 8px 16px; border-radius: 20px; font-weight: bold; cursor: pointer; transition: 0.3s; font-size: 14px; text-decoration: none; display: inline-block; }
        .btn-login { background-color: transparent; border: 1px solid #ffc107; color: #ffc107; }
        .btn-register { background: linear-gradient(135deg, #ffc107, #ff9800); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        main { padding: 15px; max-width: 1200px; margin: 0 auto; }
        .jackpot-section { background: radial-gradient(circle, #3a0d0d 0%, #1a1d24 100%); border: 2px solid #ffc107; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; position: relative; overflow: hidden; }
        .jackpot-title { font-size: 14px; color: #ffc107; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #ffc107; font-family: monospace; }
        .section-header { display: flex; align-items: center; margin: 20px 0 15px; border-left: 4px solid #ffc107; padding-left: 10px; }
        .section-header h2 { font-size: 18px; text-transform: uppercase; letter-spacing: 1px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.2s; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; color: #ddd; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 25px 0; border-top: 3px solid #ffc107; }
        .intro-card h1 { font-size: 20px; color: #ffc107; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #252a34; padding: 15px; border-radius: 12px; display: flex; align-items: flex-start; gap: 15px; }
        .guide-item i { font-size: 24px; color: #ffc107; margin-top: 3px; }
        .guide-content h3 { font-size: 16px; margin-bottom: 5px; color: #ffc107; }
        .guide-content p { font-size: 13px; color: #aaa; }
        .winners-section { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #333; font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: #ffc107; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .pro-elements { display: flex; justify-content: space-around; padding: 20px 0; text-align: center; background: #1a1d24; border-radius: 15px; margin-bottom: 25px; }
        .pro-element i { font-size: 20px; color: #ffc107; margin-bottom: 8px; display: block; }
        .pro-element span { font-size: 11px; color: #ccc; display: block; }
        .comments-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: #252a34; padding: 15px; border-radius: 12px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-avatar { width: 35px; height: 35px; background: #444; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .user-name { font-size: 14px; font-weight: bold; color: #ffc107; }
        .comment-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { margin-top: 30px; }
        .faq-item { background: #252a34; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: bold; font-size: 14px; color: #ffc107; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #aaa; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #aaa; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item:active { color: #ffc107; }
        footer { background: #0f1216; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-link { color: #aaa; text-decoration: none; font-size: 13px; }
        .copyright { color: #666; font-size: 12px; margin-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines, .comments-section { grid-template-columns: 1fr 1fr; }
        }