* { 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; }

        header { background-color: #12141a; 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 #2a2e38; }
        .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: #FFD700; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background-color: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(45deg, #FF6B35, #FF2E63); color: #ffffff; }
        .btn:active { transform: scale(0.95); }

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

        .container { padding: 15px; }
        .jackpot-box { background: radial-gradient(circle, #2a2e38 0%, #12141a 100%); border: 2px solid #FFD700; border-radius: 15px; padding: 20px; text-align: center; margin: 15px 0; box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: #FFD700; font-size: 18px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; font-family: 'Courier New', monospace; }

        .platform-intro { background-color: #242831; border-radius: 15px; padding: 20px; margin-bottom: 25px; border-left: 4px solid #FFD700; }
        .platform-intro h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .platform-intro p { font-size: 14px; color: #cccccc; }

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

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background-color: #242831; border-radius: 10px; overflow: hidden; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-bottom: 2px solid #1a1d24; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
        .game-provider { font-size: 11px; color: #888; text-transform: uppercase; }

        .trust-section { background-color: #12141a; border-radius: 15px; padding: 20px; margin-bottom: 25px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 24px; color: #ffffff; }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background-color: #242831; padding: 15px; border-radius: 10px; border-top: 2px solid #FF6B35; }
        .guide-item h3 { color: #FFD700; font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #bbbbbb; }

        .winners-ticker { background-color: #12141a; padding: 10px 0; overflow: hidden; position: relative; border-y: 1px solid #2a2e38; margin: 20px 0; }
        .ticker-wrapper { display: flex; animation: ticker 40s linear infinite; }
        .ticker-item { white-space: nowrap; padding: 0 30px; font-size: 13px; color: #FFD700; }
        .ticker-item span { color: #ffffff; margin: 0 5px; }
        @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 25px; }
        .provider-tag { background: #242831; padding: 5px 12px; border-radius: 5px; font-size: 12px; border: 1px solid #333; }

        .comments-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: #242831; padding: 15px; border-radius: 15px; position: relative; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: #FFD700; }
        .user-meta h3 { font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 11px; color: #666; position: absolute; top: 15px; right: 15px; }
        .comment-content { font-size: 13px; color: #bbbbbb; font-style: italic; }

        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #242831; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: #FFD700; cursor: pointer; border-bottom: 1px solid #1a1d24; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 15px; font-size: 13px; color: #cccccc; }

        .security-section { background: linear-gradient(180deg, #12141a 0%, #1a1d24 100%); padding: 20px; border-radius: 15px; text-align: center; border: 1px dashed #444; }
        .security-grid { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: #FFD700; }
        .responsible-text { font-size: 12px; margin-top: 15px; color: #888; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #12141a; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2a2e38; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #FFD700; }

        footer { background: #0f1116; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: #666; }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-social a { color: #FFD700; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: #888; }
        .copyright { border-top: 1px solid #222; padding-top: 20px; font-size: 11px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid { grid-template-columns: 1fr 1fr; }
            .container { max-width: 1000px; margin: 0 auto; }
        }