* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { background-color: #0f1218; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 600px; margin: 0 auto; padding: 0 15px; }
        
        header { background: #1a1d24; border-bottom: 1px solid #2d323d; height: 60px; position: sticky; top: 0; z-index: 1000; }
        .header-content { display: flex; justify-content: space-between; align-items: center; height: 100%; padding: 0 15px; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #fff; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: #2d323d; color: #fff; }
        .btn-register { background: linear-gradient(135deg, #ffcc00, #ff9900); color: #000; }

        .banner { width: 100%; aspect-ratio: 2/1; margin-bottom: 15px; cursor: pointer; border-radius: 12px; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-card { background: linear-gradient(45deg, #1a1d24, #2c1a4d); border-radius: 15px; padding: 20px; text-align: center; border: 1px solid #ffd700; margin-bottom: 20px; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-label { color: #ffd700; 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 #ff9900; font-family: monospace; }

        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; border-left: 4px solid #ffcc00; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: 0.3s; position: relative; }
        .game-card:active { transform: scale(0.98); }
        .game-img { width: 100%; aspect-ratio: 1/1; position: relative; }
        .game-img img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .intro-card { background: #1a1d24; padding: 20px; border-radius: 15px; margin-bottom: 25px; border-left: 5px solid #ffcc00; }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: #ffcc00; }
        .intro-card p { font-size: 14px; color: #a0a0a0; text-align: justify; }

        .platform-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .feature-item { background: #1a1d24; padding: 15px 10px; border-radius: 12px; text-align: center; }
        .feature-item i { font-size: 24px; color: #ffcc00; margin-bottom: 8px; }
        .feature-item span { display: block; font-size: 11px; color: #fff; }

        .guideline-section { margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #2d323d; }
        .guide-item h2 { font-size: 15px; color: #ffcc00; margin-bottom: 5px; }
        .guide-item p { font-size: 13px; color: #a0a0a0; }

        .winning-scroll { background: #13161c; border-radius: 12px; padding: 10px; height: 250px; overflow-y: auto; margin-bottom: 25px; border: 1px solid #2d323d; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 5px; border-bottom: 1px solid #1a1d24; font-size: 13px; }
        .winner-name { color: #fff; }
        .winner-amount { color: #4caf50; font-weight: bold; }

        .comment-section { margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; position: relative; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-avatar { width: 35px; height: 35px; border-radius: 50%; background: #2d323d; display: flex; align-items: center; justify-content: center; color: #ffcc00; font-weight: bold; }
        .comment-name { font-size: 14px; color: #fff; }
        .comment-rating { color: #ffcc00; font-size: 10px; margin-left: auto; }
        .comment-text { font-size: 13px; color: #a0a0a0; font-style: italic; }

        .faq-section { margin-bottom: 30px; }
        .faq-item { background: #1a1d24; border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; border-bottom: 1px solid #2d323d; color: #ffcc00; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 15px; font-size: 13px; color: #a0a0a0; text-align: justify; }

        .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; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #a0a0a0; flex: 1; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        .nav-item:active { color: #ffcc00; }

        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #a0a0a0; }
        .footer-links a:hover { color: #fff; }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #1a1d24; padding-top: 20px; }

        .security-badges { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; opacity: 0.6; }
        .security-badges i { font-size: 24px; }