* { 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; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header { background: #111317; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; 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(45deg, #FF6B35, #FF2E63); color: #ffffff; }

        .banner-section { margin-bottom: 20px; cursor: pointer; }
        .banner-img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }

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

        .intro-card { background: #252a34; padding: 25px; border-radius: 20px; margin-bottom: 30px; border-left: 5px solid #FFD700; }
        .intro-card h1 { font-size: 22px; color: #FFD700; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 15px; color: #cccccc; }

        .section-title { font-size: 20px; margin-bottom: 20px; color: #FFD700; display: flex; align-items: center; gap: 10px; padding-left: 5px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: #FFD700; display: inline-block; border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 35px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; transition: transform 0.3s; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 12px; color: #888; }

        .payments-section { background: #111317; padding: 20px; border-radius: 15px; margin-bottom: 35px; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; justify-items: center; opacity: 0.8; }
        .payment-icons i { font-size: 30px; color: #FFD700; }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 35px; }
        .guideline-item { background: #252a34; padding: 20px; border-radius: 15px; }
        .guideline-item h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .guideline-item p { font-size: 14px; color: #bbb; }

        .winners-marquee { background: #111317; padding: 15px 0; overflow: hidden; position: relative; margin-bottom: 35px; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; white-space: nowrap; }
        .winner-tag { background: #252a34; padding: 8px 15px; border-radius: 30px; border: 1px solid #444; font-size: 13px; }
        .winner-tag span { color: #FFD700; font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

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

        .testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 35px; }
        .testimonial-card { background: #252a34; padding: 20px; border-radius: 15px; position: relative; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-meta i { font-size: 24px; color: #FFD700; }
        .user-name { font-weight: bold; font-size: 15px; }
        .rating { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 12px; color: #666; position: absolute; top: 20px; right: 20px; }
        .testimonial-content { font-size: 14px; color: #bbb; }

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

        .security-section { background: #111317; padding: 25px; border-radius: 15px; text-align: center; margin-bottom: 35px; border: 1px dashed #444; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .badge { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 12px; color: #888; }
        .badge i { font-size: 24px; color: #2ecc71; }
        .age-limit { border: 2px solid #FF2E63; color: #FF2E63; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; margin: 0 auto 10px; }

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

        footer { background: #0c0e12; padding: 40px 15px; text-align: center; }
        .footer-contact { margin-bottom: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .footer-contact a { color: #FFD700; font-size: 14px; border-bottom: 1px solid #FFD700; padding-bottom: 2px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #888; transition: color 0.3s; }
        .footer-links a:hover { color: #FFD700; }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid { grid-template-columns: repeat(2, 1fr); }
            .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
        }