body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; margin: 0; padding: 0; line-height: 1.6; padding-bottom: 70px; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .header-left { display: flex; align-items: center; text-decoration: none; color: #ffffff; }
        .header-left img { width: 25px; height: 25px; margin-right: 8px; }
        .header-left strong { font-size: 16px; font-weight: normal; text-transform: uppercase; letter-spacing: 1px; }
        .header-right .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; text-decoration: none; margin-left: 8px; border: none; cursor: pointer; }
        .btn-login { background: transparent; color: #e0bc67; border: 1px solid #e0bc67; }
        .btn-register { background: linear-gradient(135deg, #e0bc67, #b88a44); color: #000; }
        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; }
        .announcement { background: #1a1d24; padding: 8px 15px; border-radius: 25px; margin-bottom: 20px; display: flex; align-items: center; font-size: 13px; border: 1px solid #2d323d; }
        .announcement i { color: #e0bc67; margin-right: 10px; }
        .marquee { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee span { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { font-size: 18px; margin: 20px 0 15px; padding-left: 10px; border-left: 4px solid #e0bc67; display: flex; justify-content: space-between; align-items: center; }
        .grid-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; transition: transform 0.2s; border: 1px solid #2d323d; }
        .game-card:active { transform: scale(0.96); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; font-size: 13px; font-weight: 500; }
        .intro-card { background: linear-gradient(145deg, #1e222b, #15181f); padding: 20px; border-radius: 15px; margin-bottom: 25px; border: 1px solid #e0bc6744; }
        .intro-card h1 { font-size: 20px; color: #e0bc67; margin-top: 0; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a6b1; margin: 0; }
        .trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: center; }
        .badge-item { background: #1a1d24; padding: 15px 10px; border-radius: 10px; font-size: 11px; color: #e0bc67; border: 1px solid #2d323d; }
        .badge-item i { font-size: 24px; margin-bottom: 8px; display: block; }
        .winning-list { background: #1a1d24; border-radius: 15px; padding: 5px 0; margin-bottom: 25px; border: 1px solid #2d323d; height: 300px; overflow-y: auto; }
        .winning-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; border-bottom: 1px solid #2d323d; }
        .winning-item:last-child { border-bottom: none; }
        .user-meta { display: flex; align-items: center; }
        .user-meta i { background: #2d323d; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 10px; color: #e0bc67; font-size: 14px; }
        .user-name { font-size: 13px; font-weight: 500; }
        .win-amount { color: #4caf50; font-weight: bold; font-size: 13px; }
        .reviews-container { margin-bottom: 25px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2d323d; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .reviewer { font-weight: 600; font-size: 14px; color: #e0bc67; }
        .stars { color: #f1c40f; font-size: 12px; }
        .review-text { font-size: 13px; color: #a0a6b1; font-style: italic; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid #2d323d; }
        .faq-item h3 { font-size: 15px; color: #e0bc67; margin: 0 0 10px; }
        .faq-item p { font-size: 13px; color: #a0a6b1; margin: 0; 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; }
        .nav-item { text-decoration: none; color: #a0a6b1; text-align: center; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: #e0bc67; }
        footer { background: #0f1218; padding: 30px 20px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-row a { color: #a0a6b1; text-decoration: none; font-size: 13px; transition: color 0.2s; }
        .footer-row a:hover { color: #e0bc67; }
        .copyright { font-size: 12px; color: #666; margin-top: 20px; }
        .btn-download-float { background: #e0bc67; color: #000; font-weight: bold; border-radius: 5px; padding: 2px 5px; font-size: 10px; vertical-align: middle; margin-left: 5px; }