* { 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; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }

        header { background: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323e; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #d4af37; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid #d4af37; color: #d4af37; padding: 6px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; transition: 0.3s; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9df7b); color: #000; border: none; padding: 7px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; transition: 0.3s; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .announcement { background: #1a1d24; padding: 10px 15px; border-bottom: 1px solid #2d323e; display: flex; align-items: center; gap: 10px; }
        .announcement i { color: #d4af37; }
        .scroll-text { flex: 1; overflow: hidden; white-space: nowrap; font-size: 13px; color: #cbd5e0; }
        .scroll-content { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #d4af37; display: flex; align-items: center; gap: 8px; border-left: 4px solid #d4af37; margin: 15px 0; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 8px; font-size: 13px; text-align: center; color: #e2e8f0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: normal; }

        .intro-card { margin: 25px 15px; padding: 20px; background: linear-gradient(145deg, #1e222b, #15181f); border-radius: 15px; border: 1px solid #d4af37; }
        .intro-card h1 { font-size: 18px; color: #d4af37; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0aec0; text-align: justify; }

        .winners-list { margin: 0 15px; background: #1a1d24; border-radius: 12px; height: 200px; overflow-y: auto; padding: 10px; border: 1px solid #2d323e; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 5px; font-size: 12px; border-bottom: 1px solid #262a33; }
        .winner-user { color: #cbd5e0; }
        .winner-amount { color: #48bb78; font-weight: bold; }

        .trust-badges { display: flex; justify-content: space-around; padding: 20px 15px; background: #15181f; margin-top: 20px; border-radius: 15px; margin: 20px 15px; }
        .badge-item { text-align: center; font-size: 11px; color: #a0aec0; }
        .badge-item i { font-size: 24px; color: #d4af37; margin-bottom: 5px; display: block; }

        .reviews { padding: 0 15px; margin-bottom: 25px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #d4af37; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; color: #d4af37; }
        .review-body { font-size: 13px; color: #cbd5e0; font-style: italic; }

        .faq { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 8px; padding: 15px; border: 1px solid #2d323e; }
        .faq-item h4 { color: #d4af37; font-size: 14px; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #a0aec0; line-height: 1.5; }

        .navigator { position: fixed; bottom: 0; width: 100%; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 2px solid #d4af37; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #a0aec0; font-size: 12px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #d4af37; }

        footer { background: #0b0d11; padding: 30px 15px 90px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; font-size: 13px; color: #d4af37; }
        .footer-policies { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 12px; color: #718096; }
        .copyright { font-size: 11px; color: #4a5568; margin-top: 10px; }