body { background-color: #0f1217; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 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; 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; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #ffd700; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: #343a40; color: #fff; }
        .btn-register { background: linear-gradient(180deg, #ffd700 0%, #ff8c00 100%); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: radial-gradient(circle, #2c3e50 0%, #000000 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #d4af37; box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
        .jackpot-title { font-size: 14px; color: #d4af37; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #ffd700; font-family: monospace; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; border-left: 4px solid #ffd700; margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card span { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid #2d323e; }
        .intro-card h1 { font-size: 20px; color: #ffd700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a0a0; margin: 0; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 15px; background: #14171d; margin: 15px 0; }
        .trust-item { text-align: center; font-size: 11px; color: #888; }
        .trust-item i { display: block; font-size: 24px; color: #ffd700; margin-bottom: 5px; }
        .guidelines { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 10px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 15px; }
        .guide-item i { font-size: 20px; color: #ffd700; width: 30px; }
        .guide-text h3 { margin: 0; font-size: 15px; }
        .guide-text p { margin: 5px 0 0; font-size: 12px; color: #888; }
        .winning-list { background: #1a1d24; margin: 15px; border-radius: 15px; height: 200px; overflow: hidden; position: relative; }
        .winning-track { animation: scrollUp 40s linear infinite; padding: 10px; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 10px; font-size: 13px; border-bottom: 1px solid #2d323e; }
        .win-user { color: #fff; }
        .win-amt { color: #4caf50; font-weight: bold; }
        .comments { padding: 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 3px solid #ffd700; }
        .comment-user { font-size: 14px; font-weight: bold; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
        .comment-user i { color: #ffd700; font-size: 12px; }
        .comment-body { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; margin: 0 0 10px; color: #ffd700; }
        .faq-item p { font-size: 13px; color: #a0a0a0; margin: 0; }
        .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-decoration: none; color: #888; text-align: center; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        .nav-item:active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-row a { color: #888; text-decoration: none; font-size: 13px; }
        .footer-row a:hover { color: #ffd700; }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #222; pt: 20px; }