* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #e0e0e0; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .logo-container { display: flex; align-items: center; gap: 8px; }
        .logo-container img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-container strong { font-size: 16px; font-weight: normal; color: #ffffff; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffd700; border: 1px solid #ffd700; }
        .btn-register { background: linear-gradient(135deg, #ffd700, #b8860b); 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: radial-gradient(circle, #2d323d 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #ffd70033; }
        .jackpot-title { color: #ffd700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; margin: 10px 0; font-family: monospace; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; display: flex; align-items: center; gap: 8px; color: #ffd700; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: transform 0.2s; }
        .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; }
        .intro-card { background: #1a1d24; margin: 20px 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #ffd700; }
        .intro-card h1 { font-size: 18px; color: #ffffff; margin-bottom: 10px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #a0a0a0; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 0 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; align-items: center; gap: 15px; }
        .guide-item i { font-size: 24px; color: #ffd700; width: 30px; text-align: center; }
        .guide-content h3 { font-size: 15px; margin-bottom: 4px; }
        .guide-content p { font-size: 12px; color: #888; }
        .winning-list { background: #1a1d24; margin: 20px 15px; border-radius: 15px; padding: 10px; max-height: 300px; overflow-y: auto; }
        .win-item { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .win-user { color: #ffd700; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 15px; flex-wrap: wrap; gap: 15px; }
        .badge { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 11px; color: #888; }
        .badge i { font-size: 20px; color: #ffd700; }
        .comments-section { padding: 0 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
        .stars { color: #ffd700; font-size: 10px; }
        .comment-body { font-size: 13px; color: #a0a0a0; font-style: italic; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-size: 14px; font-weight: 600; color: #ffffff; border-bottom: 1px solid #2d323d; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 15px; font-size: 13px; color: #888; background: #16191f; }
        .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 #2d323d; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #888; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; font-size: 13px; color: #888; }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; }