body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #ffffff; margin: 0; padding-bottom: 70px; -webkit-font-smoothing: antialiased; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #2c313a; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .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-login { background: transparent; border: 1px solid #ffd700; color: #ffd700; padding: 5px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%); border: none; color: #000; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        main { max-width: 600px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 15px; cursor: pointer; aspect-ratio: 2/1; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: linear-gradient(45deg, #1a1d24, #2c313a); border-radius: 12px; padding: 15px; text-align: center; border: 1px solid #ffd7004d; margin-bottom: 20px; }
        .jackpot-title { font-size: 14px; color: #ffd700; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #ffffff; margin: 5px 0; 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; gap: 8px; color: #ffd700; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2c313a; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info span { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
        .intro-card { background: #1a1d24; border-radius: 12px; padding: 20px; margin-bottom: 20px; border-left: 4px solid #ffd700; }
        .intro-card h1 { font-size: 20px; color: #ffd700; margin: 0 0 10px 0; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #b0b3b8; line-height: 1.6; margin: 0; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 20px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 15px; }
        .guide-item i { color: #ffd700; font-size: 20px; }
        .guide-text h3 { font-size: 15px; margin: 0; color: #ffffff; }
        .winners-list { background: #1a1d24; border-radius: 12px; padding: 15px; height: 200px; overflow-y: hidden; position: relative; }
        .winners-track { animation: scrollList 30s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2c313a; font-size: 13px; }
        .winner-name { color: #b0b3b8; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; }
        .feature-box { text-align: center; font-size: 12px; color: #b0b3b8; }
        .feature-box i { font-size: 24px; color: #ffd700; margin-bottom: 5px; display: block; }
        .comments-section { margin-bottom: 20px; }
        .comment-card { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; }
        .comment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .user-name { font-weight: bold; font-size: 14px; color: #ffd700; }
        .rating { color: #ffd700; font-size: 12px; }
        .comment-body { font-size: 13px; color: #b0b3b8; line-height: 1.5; }
        .faq-section { margin-top: 30px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; color: #ffffff; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #b0b3b8; line-height: 1.6; border-top: 1px solid #2c313a; 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 #2c313a; z-index: 1000; }
        .nav-item { text-align: center; font-size: 11px; color: #b0b3b8; flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c0f; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2c313a; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; font-size: 13px; color: #b0b3b8; }
        .footer-row a:hover { color: #ffd700; }
        .copyright { font-size: 12px; color: #666; margin-top: 10px; }