* { 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; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        
        header { background-color: #111419; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .nav-top { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 5px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-weight: bold; font-size: 14px; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; border: 1px solid #FFD700; color: #FFD700; }
        .btn-register { background: linear-gradient(to right, #FF6B35, #FF2E63); color: white; }
        .btn:active { transform: scale(0.95); }

        .banner-container { width: 100%; max-width: 1200px; margin: 0 auto; cursor: pointer; }
        .banner-container img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }

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

        .platform-intro { padding: 20px; max-width: 800px; margin: 0 auto; text-align: center; }
        .platform-intro h1 { font-size: 24px; color: #FFD700; margin-bottom: 15px; }
        .platform-intro p { font-size: 15px; color: #ccc; }

        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 20px; border-left: 4px solid #FFD700; margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: #888; }

        .trust-section { background: #111419; padding: 25px 15px; text-align: center; margin: 20px 0; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; margin-bottom: 20px; }
        .payment-icons i { font-size: 30px; color: #ccc; }

        .guides-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px; }
        .guide-card { background: #252a34; padding: 15px; border-radius: 12px; border-bottom: 2px solid #FFD700; }
        .guide-card h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }

        .marquee-container { background: #000; padding: 10px 0; overflow: hidden; white-space: nowrap; margin: 20px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
        .win-item { display: inline-block; margin-right: 30px; font-size: 13px; color: #fff; }
        .win-item span { color: #FFD700; font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

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

        .comments-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px; }
        .comment-card { background: #252a34; padding: 15px; border-radius: 12px; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-meta i { font-size: 24px; color: #FFD700; }
        .stars { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 11px; color: #888; margin-top: 5px; }

        .faq-section { padding: 15px; }
        .faq-item { background: #252a34; margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h2 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .faq-item p { font-size: 14px; color: #ccc; }

        .security-section { text-align: center; padding: 30px 15px; background: #111419; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: #FFD700; }

        .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: 1000; }
        .nav-item { text-align: center; color: #888; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: #FFD700; }

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