* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        
        header { background: #11141a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%); color: #fff; }
        .btn:active { transform: scale(0.95); }

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

        .jackpot-section { background: #242831; margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-label { color: #FFD700; font-size: 14px; text-transform: uppercase; font-weight: bold; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; background: linear-gradient(180deg, #FFD700, #FFA500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: monospace; }

        .intro-card { margin: 15px; padding: 20px; background: #242831; border-radius: 15px; }
        .intro-card h1 { font-size: 1.4rem; color: #FFD700; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 0.95rem; color: #ccc; }

        .section-title { margin: 20px 15px 10px; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; border-left: 4px solid #FFD700; padding-left: 10px; }
        
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #242831; border-radius: 12px; overflow: hidden; position: relative; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: 0.3s; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 0.85rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 0.75rem; color: #FFD700; opacity: 0.8; }

        .payment-section { margin: 20px 15px; padding: 20px; background: #11141a; border-radius: 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; place-items: center; }
        .payment-icon { width: 100%; max-width: 50px; opacity: 0.7; filter: grayscale(1); }

        .guidelines-section { padding: 0 15px; margin-top: 20px; }
        .guideline-item { background: #242831; padding: 15px; border-radius: 12px; margin-bottom: 10px; }
        .guideline-item h2 { font-size: 1rem; color: #FFD700; margin-bottom: 8px; }
        .guideline-item p { font-size: 0.85rem; color: #bbb; }

        .marquee-container { background: #11141a; margin: 20px 0; padding: 10px 0; overflow: hidden; }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; }
        .win-record { white-space: nowrap; padding: 5px 20px; font-size: 0.85rem; color: #ccc; border-right: 1px solid #333; }
        .win-record span { color: #FFD700; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { margin: 20px 15px; padding: 15px; background: #242831; border-radius: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: #1a1d24; padding: 5px 12px; border-radius: 5px; font-size: 0.75rem; border: 1px solid #333; color: #FFD700; }

        .reviews-section { padding: 0 15px; margin-top: 20px; }
        .review-card { background: #242831; padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #333; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 24px; color: #FFD700; }
        .review-name { font-weight: bold; font-size: 0.9rem; }
        .stars { color: #FFD700; font-size: 0.75rem; }
        .review-date { font-size: 0.7rem; color: #666; margin-left: auto; }
        .review-body { font-size: 0.85rem; color: #bbb; }

        .faq-section { padding: 0 15px; margin-top: 20px; }
        .faq-item { background: #242831; margin-bottom: 10px; border-radius: 12px; overflow: hidden; border: 1px solid #333; }
        .faq-item h2 { font-size: 0.95rem; padding: 15px; color: #FFD700; cursor: pointer; }
        .faq-item p { font-size: 0.85rem; padding: 0 15px 15px; color: #bbb; }

        .security-footer { margin: 20px 15px; text-align: center; padding: 20px; border-top: 1px solid #333; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 0.75rem; color: #666; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #11141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #888; }
        .nav-item i { font-size: 18px; }
        .nav-item:hover { color: #FFD700; }

        footer { background: #0d0f13; padding: 30px 15px 90px; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 12px; color: #888; text-align: center; padding: 5px; }
        .footer-copy { text-align: center; font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }