body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0d0e12; color: #ffffff; margin: 0; padding: 0; line-height: 1.6; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .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: #fff; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #4e5561; }
        .btn-register { background: linear-gradient(180deg, #ffd700, #ff8c00); color: #000; }
        .banner { width: 100%; cursor: pointer; display: block; }
        .banner img { width: 100%; aspect-ratio: 2/1; display: block; object-fit: cover; }
        .jackpot-container { margin: 15px; padding: 20px; background: radial-gradient(circle, #2c1a4a 0%, #1a1d24 100%); border-radius: 15px; border: 1px solid #d4af37; text-align: center; box-shadow: 0 0 20px rgba(212,175,55,0.2); }
        .jackpot-title { color: #d4af37; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #ffd700; font-family: monospace; }
        .section-title { padding: 0 15px; margin: 25px 0 15px; font-size: 18px; border-left: 4px solid #ff8c00; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; 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; }
        .game-info span { font-size: 13px; color: #ccc; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; padding: 20px; background: #1a1d24; border-radius: 15px; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 20px; color: #ffd700; margin-top: 0; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a6b1; margin-bottom: 0; }
        .trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px 15px; text-align: center; }
        .badge-item i { font-size: 24px; color: #ffd700; display: block; margin-bottom: 5px; }
        .badge-item span { font-size: 11px; color: #888; }
        .guidelines { padding: 0 15px; margin-bottom: 30px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #2d323d; }
        .guide-item h3 { font-size: 16px; color: #fff; margin: 0 0 8px 0; display: flex; align-items: center; gap: 8px; }
        .guide-item p { font-size: 13px; color: #a0a6b1; margin: 0; }
        .winners-feed { margin: 20px 15px; background: #1a1d24; border-radius: 15px; padding: 15px; height: 300px; overflow-y: auto; border: 1px solid #2d323d; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323d; align-items: center; }
        .winner-row:last-child { border: none; }
        .winner-name { font-size: 13px; color: #fff; }
        .winner-amount { font-size: 13px; color: #00ffcc; font-weight: bold; }
        .comments-section { padding: 0 15px; margin-bottom: 30px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 30px; height: 30px; border-radius: 50%; background: #2d323d; display: flex; align-items: center; justify-content: center; font-size: 12px; }
        .comment-text { font-size: 13px; font-style: italic; color: #ccc; }
        .faq-section { padding: 0 15px 100px; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: #ffd700; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: #a0a6b1; border-top: 1px solid #2d323d; padding-top: 10px; }
        .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 { text-align: center; text-decoration: none; color: #888; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #08090b; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
        .footer-links a { color: #888; text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: #555; }