body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; margin: 0; padding: 0; line-height: 1.6; }
        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 #2a2e37; }
        .logo-box { display: flex; align-items: center; text-decoration: none; color: #ffffff; }
        .logo-box img { width: 25px; height: 25px; margin-right: 8px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; letter-spacing: 0.5px; }
        .auth-buttons { display: flex; gap: 8px; }
        .btn { padding: 6px 14px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: opacity 0.2s; }
        .btn-login { background-color: transparent; border: 1px solid #ffd700; color: #ffd700; }
        .btn-register { background-color: #ffd700; color: #000000; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; display: block; cursor: pointer; aspect-ratio: 2/1; object-fit: cover; }
        .section-container { padding: 15px; }
        .jackpot-card { background: linear-gradient(135deg, #1a1d24 0%, #2c313c 100%); border: 1px solid #ffd700; border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1); }
        .jackpot-title { color: #ffd700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; font-family: monospace; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; border-left: 4px solid #ffd700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background-color: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #ffffff; transition: transform 0.2s; border: 1px solid #2a2e37; }
        .game-card img { width: 100%; height: auto; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info span { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
        .intro-card { background-color: #1a1d24; border-radius: 12px; padding: 20px; margin: 20px 0; border: 1px solid #2a2e37; }
        .intro-card h1 { font-size: 20px; color: #ffd700; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #b0b3b8; margin: 0; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 20px 0; }
        .guide-item { background-color: #1a1d24; padding: 15px; border-radius: 8px; display: flex; align-items: center; gap: 12px; border: 1px solid #2a2e37; }
        .guide-item i { color: #ffd700; font-size: 20px; }
        .guide-text { font-size: 14px; font-weight: 500; }
        .winning-ticker { background-color: #1a1d24; border-radius: 12px; padding: 15px; margin: 20px 0; border: 1px solid #2a2e37; max-height: 300px; overflow-y: hidden; position: relative; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e37; font-size: 12px; }
        .winning-user { color: #ffd700; }
        .winning-amount { color: #4caf50; font-weight: bold; }
        .professional-badges { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 15px; margin: 25px 0; opacity: 0.7; }
        .badge-item { text-align: center; width: 30%; }
        .badge-item i { font-size: 24px; display: block; margin-bottom: 5px; color: #ffd700; }
        .badge-item span { font-size: 10px; text-transform: uppercase; }
        .comments-section { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
        .comment-card { background-color: #1a1d24; border-radius: 12px; padding: 15px; border: 1px solid #2a2e37; }
        .comment-header { display: flex; align-items: center; margin-bottom: 8px; }
        .comment-avatar { width: 30px; height: 30px; border-radius: 50%; background-color: #2a2e37; display: flex; align-items: center; justify-content: center; margin-right: 10px; font-size: 12px; color: #ffd700; }
        .comment-name { font-size: 14px; font-weight: 600; }
        .comment-stars { color: #ffd700; font-size: 12px; margin-left: auto; }
        .comment-body { font-size: 13px; color: #b0b3b8; }
        .faq-section { margin: 30px 0; }
        .faq-item { background-color: #1a1d24; border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid #2a2e37; }
        .faq-question { padding: 15px; font-size: 15px; font-weight: 600; color: #ffd700; border-bottom: 1px solid #2a2e37; cursor: pointer; }
        .faq-answer { padding: 15px; font-size: 14px; color: #b0b3b8; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background-color: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e37; z-index: 1000; }
        .nav-item { text-decoration: none; color: #b0b3b8; display: flex; flex-direction: column; align-items: center; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #ffd700; }
        footer { background-color: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #b0b3b8; text-decoration: none; font-size: 13px; }
        .footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-socials a { color: #ffffff; font-size: 18px; }
        .footer-copy { font-size: 12px; color: #666; margin-top: 20px; }
        .payment-icons { display: flex; justify-content: center; gap: 15px; margin: 15px 0; opacity: 0.5; filter: grayscale(1); }
        .payment-icons i { font-size: 24px; }