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

        .banner { width: 100%; display: block; cursor: pointer; margin-bottom: 20px; }
        .banner img { width: 100%; height: auto; aspect-ratio: 2 / 1; object-fit: cover; display: block; border-radius: 0 0 15px 15px; }

        .jackpot-sec { background: #22262f; margin: 20px 15px; padding: 20px; border-radius: 15px; text-align: center; border: 2px solid #FFD700; position: relative; overflow: hidden; }
        .jackpot-sec h2 { color: #FFD700; font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 2.5rem; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }

        .intro-card { background: #22262f; margin: 20px 15px; padding: 20px; border-radius: 15px; }
        .intro-card h1 { color: #FFD700; font-size: 1.5rem; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { color: #b0b3b8; font-size: 0.95rem; }

        .section-title { margin: 25px 15px 15px; display: flex; align-items: center; gap: 10px; border-left: 4px solid #FFD700; padding-left: 10px; }
        .section-title h2 { font-size: 1.3rem; color: #ffffff; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 15px; }
        .game-card { background: #22262f; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e38; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.9rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 0.75rem; color: #8a8d91; }

        .payment-lic-sec { background: #22262f; margin: 20px 15px; padding: 20px; border-radius: 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .payment-lic-sec i { font-size: 30px; color: #8a8d91; }

        .guidelines { padding: 0 15px; }
        .guide-item { background: #22262f; padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 3px solid #FF2E63; }
        .guide-item h2 { font-size: 1.1rem; color: #FFD700; margin-bottom: 8px; }
        .guide-item p { font-size: 0.9rem; color: #b0b3b8; }

        .win-records { background: #12141a; margin: 20px 0; padding: 15px 0; overflow: hidden; position: relative; }
        .marquee-wrap { display: flex; animation: marquee 40s linear infinite; width: max-content; }
        .record-item { background: #22262f; padding: 10px 20px; border-radius: 20px; margin: 0 10px; display: flex; align-items: center; gap: 10px; border: 1px solid #2a2e38; white-space: nowrap; }
        .record-item span { color: #FFD700; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 20px 15px; text-align: center; color: #8a8d91; font-weight: bold; font-size: 1rem; line-height: 2; }
        .providers-wall span { margin: 0 10px; display: inline-block; color: #FFD700; opacity: 0.8; }

        .comments-sec { padding: 0 15px; }
        .comment-card { background: #22262f; padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .comment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 10px; }
        .user-info i { font-size: 20px; color: #FF6B35; }
        .stars { color: #FFD700; font-size: 0.8rem; }
        .comment-date { font-size: 0.8rem; color: #8a8d91; }
        .comment-content { font-size: 0.9rem; color: #b0b3b8; }

        .faq-sec { padding: 0 15px; }
        .faq-item { background: #22262f; border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
        .faq-item h2 { font-size: 1rem; padding: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #2a2e38; color: #FFD700; }
        .faq-item p { padding: 15px; font-size: 0.9rem; color: #b0b3b8; border-top: 1px solid #1a1d24; }

        .security-sec { text-align: center; padding: 30px 15px; background: #12141a; margin-top: 20px; }
        .security-icons { font-size: 40px; margin-bottom: 15px; color: #FFD700; display: flex; justify-content: center; gap: 20px; }
        .security-sec p { font-size: 0.85rem; color: #8a8d91; max-width: 600px; margin: 0 auto 10px; }
        .security-links { display: flex; justify-content: center; gap: 15px; margin-top: 15px; flex-wrap: wrap; }
        .security-links a { font-size: 0.8rem; color: #FF2E63; border: 1px solid #FF2E63; padding: 4px 10px; border-radius: 5px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #8a8d91; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) { position: relative; top: -15px; background: linear-gradient(135deg, #FF6B35, #FF2E63); width: 55px; height: 55px; border-radius: 50%; justify-content: center; color: #ffffff; box-shadow: 0 4px 10px rgba(255, 46, 99, 0.4); border: 4px solid #1a1d24; }
        .nav-item:nth-child(3) i { font-size: 22px; }

        footer { background: #0d0f13; padding: 30px 15px; text-align: center; }
        .footer-social { margin-bottom: 25px; }
        .footer-social h2 { font-size: 1.1rem; margin-bottom: 15px; color: #ffffff; }
        .social-links { display: flex; justify-content: center; gap: 20px; }
        .footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 25px; }
        .footer-grid a { font-size: 0.85rem; color: #8a8d91; transition: color 0.2s; }
        .footer-grid a:hover { color: #FFD700; }
        .copyright { font-size: 0.8rem; color: #5a5d63; border-top: 1px solid #2a2e38; padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
            .footer-grid { grid-template-columns: repeat(5, 1fr); }
        }