* { 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; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        header { background: #12141a; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        header .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 14px; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%); color: #fff; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box { background: radial-gradient(circle at center, #2d323d 0%, #1a1d24 100%); margin: 20px 15px; padding: 20px; border-radius: 15px; border: 1px solid #FFD700; text-align: center; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-label { color: #FFD700; font-size: 14px; text-transform: uppercase; font-weight: bold; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
        .intro-card { background: #252932; margin: 0 15px 25px; padding: 20px; border-radius: 12px; }
        .intro-card h1 { font-size: 18px; color: #FFD700; margin-bottom: 10px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }
        .section-title { font-size: 18px; margin: 25px 15px 15px; color: #FFD700; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ""; display: block; width: 4px; height: 18px; background: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #252932; border-radius: 10px; overflow: hidden; transition: transform 0.2s; }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 11px; color: #888; }
        .payment-section { background: #12141a; padding: 25px 15px; margin-top: 30px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; justify-items: center; opacity: 0.8; }
        .payment-grid i { font-size: 24px; color: #b0b3b8; }
        .guideline-container { padding: 0 15px; }
        .guideline-item { background: #252932; padding: 15px; border-radius: 10px; margin-bottom: 15px; border-left: 3px solid #FFD700; }
        .guideline-item h2 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .guideline-item p { font-size: 13px; color: #b0b3b8; }
        .marquee-winning { background: #12141a; padding: 10px 0; margin: 25px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #2d323d; border-bottom: 1px solid #2d323d; }
        .marquee-content { display: inline-block; animation: scrollLeft 30s linear infinite; }
        .win-item { display: inline-flex; align-items: center; gap: 8px; margin-right: 30px; font-size: 13px; }
        .win-item span:first-child { color: #FFD700; }
        @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; text-align: center; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; font-size: 12px; color: #888; font-weight: bold; }
        .providers-list span { padding: 5px 12px; background: #252932; border-radius: 4px; border: 1px solid #333; }
        .comments-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: #252932; padding: 15px; border-radius: 10px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-header i { font-size: 24px; color: #FFD700; }
        .user-meta h3 { font-size: 14px; }
        .stars { color: #FFD700; font-size: 10px; }
        .comment-date { font-size: 11px; color: #666; float: right; }
        .comment-content { font-size: 13px; color: #b0b3b8; clear: both; padding-top: 5px; }
        .faq-section { padding: 25px 15px; }
        .faq-item { margin-bottom: 20px; }
        .faq-item h2 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0b3b8; }
        .security-section { background: #12141a; padding: 30px 15px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 20px; color: #FFD700; }
        .security-text { font-size: 12px; color: #888; max-width: 600px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #12141a; height: 60px; display: flex; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #b0b3b8; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        footer { background: #0c0d11; padding: 40px 15px 30px; border-top: 2px solid #2d323d; }
        .footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-socials a { font-size: 20px; color: #b0b3b8; transition: color 0.3s; }
        .footer-socials a:hover { color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 12px; color: #888; }
        .copyright { text-align: center; font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }