* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1116; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { background-color: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .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: #d4af37; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; }
        .btn-login { background-color: transparent; border: 1px solid #d4af37; color: #d4af37; }
        .btn-register { background-color: #d4af37; color: #000; }
        .banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: linear-gradient(135deg, #1a1d24 0%, #2c2f3a 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #d4af37; }
        .jackpot-title { font-size: 14px; color: #d4af37; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; margin: 10px 0; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #d4af37; display: flex; align-items: center; gap: 10px; }
        .section-title i { font-size: 16px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.2s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: #23272f; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #d4af37; }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: #d4af37; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; text-align: center; font-size: 12px; border: 1px solid #333; }
        .guide-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; display: block; }
        .winners-box { margin: 15px; background: #1a1d24; border-radius: 15px; height: 200px; overflow-y: auto; padding: 10px; border: 1px solid #333; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px; font-size: 12px; border-bottom: 1px solid #2c2f3a; }
        .winner-row span:last-child { color: #4caf50; font-weight: bold; }
        .comments-section { padding: 15px; }
        .comment-card { background: #23272f; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #333; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 5px; font-size: 13px; font-weight: bold; color: #d4af37; }
        .stars { color: #f1c40f; font-size: 10px; }
        .comment-text { font-size: 12px; color: #bbb; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 12px; margin-bottom: 10px; overflow: hidden; border: 1px solid #333; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; cursor: pointer; color: #d4af37; display: flex; align-items: center; gap: 10px; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #ccc; }
        .pro-elements { display: flex; justify-content: space-around; padding: 20px 15px; background: #14161c; margin: 15px 0; }
        .pro-item { text-align: center; font-size: 11px; color: #888; }
        .pro-item i { font-size: 20px; color: #d4af37; margin-bottom: 5px; display: block; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-align: center; font-size: 11px; color: #bbb; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        footer { background: #14161c; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; font-size: 13px; color: #d4af37; }
        .footer-policies { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 12px; color: #888; }
        .copyright { font-size: 11px; color: #555; }