* { 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; }
        img { max-width: 100%; height: auto; display: block; }
        .container { padding: 15px; max-width: 1200px; margin: 0 auto; }
        
        header { background: #111419; 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 #333; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login { padding: 6px 12px; border-radius: 20px; border: 1px solid #FFD700; color: #FFD700; font-size: 14px; font-weight: bold; }
        .btn-register { padding: 6px 12px; border-radius: 20px; background: linear-gradient(90deg, #FF6B35, #FF2E63); color: white; font-size: 14px; font-weight: bold; border: none; }

        .banner { width: 100%; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; border-radius: 0 0 15px 15px; }

        .jackpot-section { background: #252a34; margin: 20px 0; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; }
        .jackpot-label { font-size: 14px; color: #FFD700; text-transform: uppercase; margin-bottom: 5px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }

        .intro-card { background: #252a34; padding: 20px; border-radius: 15px; margin-bottom: 25px; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #ccc; }

        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; color: #FFD700; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: #FF2E63; border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 11px; color: #888; }

        .payment-methods { background: #111419; padding: 20px; border-radius: 15px; margin-bottom: 25px; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 30px; color: #aaa; }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #252a34; padding: 15px; border-radius: 12px; border-left: 3px solid #FFD700; }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .guide-item p { font-size: 13px; color: #bbb; }

        .winners-marquee { background: #111419; padding: 15px; border-radius: 10px; overflow: hidden; margin-bottom: 25px; position: relative; }
        .marquee-content { display: flex; flex-direction: column; animation: scrollUp 40s linear infinite; }
        .winner-row { display: flex; justify-content: space-between; font-size: 12px; padding: 8px 0; border-bottom: 1px solid #222; }
        .winner-name { color: #FFD700; }
        .winner-amount { color: #00ff88; font-weight: bold; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

        .providers-wall { background: #252a34; padding: 20px; border-radius: 15px; text-align: center; color: #888; font-size: 14px; margin-bottom: 25px; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 10px; }
        .provider-tag { background: #1a1d24; padding: 5px 12px; border-radius: 5px; color: #ddd; font-weight: bold; }

        .comments-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: #252a34; padding: 15px; border-radius: 15px; position: relative; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-avatar { width: 40px; height: 40px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFD700; }
        .stars { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 11px; color: #666; margin-top: 5px; }

        .faq-section { background: #252a34; border-radius: 15px; padding: 15px; margin-bottom: 25px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #333; padding-bottom: 10px; }
        .faq-item h2 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; }

        .security-box { background: #111419; padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 25px; }
        .security-icons { font-size: 24px; color: #FF2E63; margin-bottom: 10px; display: flex; justify-content: center; gap: 20px; }
        .security-box p { font-size: 12px; color: #888; }

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

        footer { background: #0d0f13; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: #666; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { color: #FFD700; font-weight: bold; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: #bbb; }
        .copyright { margin-top: 20px; font-size: 11px; border-top: 1px solid #222; padding-top: 20px; }