* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #12141a; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #ffcc00; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #ffcc00; border: 1px solid #ffcc00; }
        .btn-register { background: linear-gradient(180deg, #ffcc00 0%, #d4ac0d 100%); color: #000; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .section-container { padding: 15px; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; color: #ffcc00; }
        .section-title i { font-size: 16px; }
        .jackpot-card { background: linear-gradient(135deg, #2c3e50 0%, #000000 100%); border: 2px solid #ffcc00; border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
        .jackpot-label { font-size: 14px; text-transform: uppercase; color: #ffcc00; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 204, 0, 0.5); margin: 5px 0; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2d323d; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 12px; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 20px 0; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 20px; color: #ffcc00; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b3b8; text-align: justify; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 10px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; border-left: 4px solid #ffcc00; }
        .guide-item h3 { font-size: 16px; margin-bottom: 5px; color: #ffcc00; }
        .guide-item p { font-size: 13px; color: #b0b3b8; }
        .winners-list { background: #1a1d24; border-radius: 12px; padding: 10px; max-height: 300px; overflow-y: auto; border: 1px solid #2d323d; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: #ffcc00; }
        .winner-amount { color: #2ecc71; font-weight: bold; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 0; flex-wrap: wrap; gap: 15px; }
        .trust-item { text-align: center; width: 45%; }
        .trust-item i { font-size: 24px; color: #ffcc00; margin-bottom: 8px; }
        .trust-item span { font-size: 12px; display: block; color: #b0b3b8; }
        .comments-section { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2d323d; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; background: #2d323d; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffcc00; }
        .stars { color: #ffcc00; font-size: 12px; }
        .comment-text { font-size: 13px; color: #d1d4d9; font-style: italic; }
        .faq-container { margin-top: 20px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid #2d323d; }
        .faq-item h3 { font-size: 15px; color: #ffcc00; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0b3b8; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #b0b3b8; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #ffcc00; }
        footer { background: #0c0e12; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-link { color: #b0b3b8; font-size: 13px; }
        .copyright { color: #65676b; font-size: 12px; margin-top: 10px; }