* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #e0115f; }
        .header-left { display: flex; align-items: center; text-decoration: none; color: #fff; }
        .header-left img { width: 25px; height: 25px; margin-right: 8px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; }
        .header-right { display: flex; gap: 8px; }
        .btn { border: none; padding: 8px 16px; border-radius: 20px; font-weight: 600; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; border: 1px solid #e0115f; color: #e0115f; }
        .btn-register { background: linear-gradient(135deg, #e0115f, #b00d4a); color: #fff; }
        .main-container { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px; margin-bottom: 15px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle at center, #2c0b16, #1a1d24); border: 2px solid #d4af37; border-radius: 12px; padding: 15px; text-align: center; margin-bottom: 15px; box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
        .jackpot-label { color: #d4af37; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px #e0115f; font-family: 'Courier New', monospace; }
        .section-title { font-size: 18px; margin: 20px 0 12px; border-left: 4px solid #e0115f; padding-left: 10px; display: flex; align-items: center; justify-content: space-between; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: #1e222a; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; transition: transform 0.2s; border: 1px solid #2d333e; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 13px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: normal; }
        .intro-card { background: #1a1d24; border-radius: 12px; padding: 20px; margin-bottom: 20px; border: 1px solid #e0115f; }
        .intro-card h1 { font-size: 20px; color: #e0115f; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .feature-item { background: #1e222a; padding: 15px 5px; border-radius: 10px; text-align: center; font-size: 11px; }
        .feature-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; display: block; }
        .guidelines { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 20px; }
        .guideline-item { border-bottom: 1px solid #2d333e; padding: 10px 0; display: flex; align-items: flex-start; }
        .guideline-item:last-child { border-bottom: none; }
        .guideline-item i { color: #e0115f; margin-right: 10px; margin-top: 4px; }
        .guideline-text h3 { font-size: 15px; margin-bottom: 3px; }
        .guideline-text p { font-size: 13px; color: #999; }
        .winning-ticker { background: #1a1d24; border-radius: 12px; padding: 15px; height: 250px; overflow-y: hidden; position: relative; margin-bottom: 20px; }
        .ticker-scroll { animation: tickerMove 40s linear infinite; }
        @keyframes tickerMove { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2d333e; font-size: 13px; }
        .winner-name { color: #d4af37; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .comments-section { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
        .comment-card { background: #1e222a; padding: 15px; border-radius: 12px; border-left: 3px solid #d4af37; }
        .comment-user { display: flex; align-items: center; margin-bottom: 8px; }
        .user-avatar { width: 30px; height: 30px; background: #333; border-radius: 50%; margin-right: 10px; display: flex; align-items: center; justify-content: center; font-size: 12px; }
        .comment-content { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { margin-bottom: 20px; }
        .faq-item { background: #1a1d24; margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2d333e; }
        .faq-answer { padding: 15px; font-size: 13px; color: #bbb; background: #1e222a; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #e0115f; z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: #999; font-size: 11px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item.active, .nav-item:hover { color: #e0115f; }
        footer { background: #0a0c10; padding: 30px 20px 80px; text-align: center; border-top: 1px solid #2d333e; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #999; text-decoration: none; font-size: 14px; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { color: #fff; font-size: 20px; }
        .footer-copyright { font-size: 12px; color: #666; }
        .trust-badges { display: flex; justify-content: center; gap: 15px; margin: 20px 0; filter: grayscale(1); opacity: 0.6; }
        .trust-badges i { font-size: 24px; }