* { 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; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header { background: #111419; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .header-content { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0 15px; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%); color: #fff; }

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

        .jackpot-section { background: #111419; margin: 20px 15px; padding: 15px; border-radius: 12px; border: 1px solid #FFD700; text-align: center; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }

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

        .section-title { padding: 0 15px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 18px; color: #FFD700; }
        .section-title i { color: #FFD700; }

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

        .trust-section { background: #111419; margin: 25px 15px; padding: 20px; border-radius: 15px; text-align: center; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; justify-items: center; }
        .payment-icons i { font-size: 24px; color: #888; }
        .license-seals { margin-top: 20px; display: flex; justify-content: center; gap: 20px; opacity: 0.7; }

        .guidelines-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: #242933; padding: 15px; border-radius: 12px; }
        .guide-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #ccc; }

        .marquee-container { background: #111419; margin: 25px 0; padding: 10px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #2d323d; border-bottom: 1px solid #2d323d; }
        .marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
        .win-item { display: inline-flex; align-items: center; gap: 10px; background: #242933; padding: 5px 15px; border-radius: 20px; margin-right: 20px; border: 1px solid #3d4452; }
        .win-item span:first-child { color: #FFD700; font-weight: bold; }
        .win-item .amount { color: #00ff88; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 0 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
        .provider-tag { background: #242933; padding: 5px 12px; border-radius: 5px; font-size: 12px; color: #aaa; border: 1px solid #2d323d; }

        .reviews-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #242933; padding: 15px; border-radius: 12px; border: 1px solid #2d323d; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #FFD700; }
        .user-meta { flex: 1; }
        .user-meta span { display: block; font-size: 14px; font-weight: bold; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; }
        .review-card p { font-size: 13px; color: #ccc; font-style: italic; }

        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { background: #242933; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-item h2 { font-size: 15px; padding: 15px; color: #FFD700; cursor: pointer; border-bottom: 1px solid #2d323d; }
        .faq-content { padding: 15px; font-size: 13px; color: #ccc; }

        .security-footer { background: #111419; margin: 30px 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px dotted #444; }
        .security-footer i { font-size: 24px; color: #FFD700; margin-bottom: 10px; }
        .security-footer h2 { font-size: 16px; margin-bottom: 10px; }
        .security-footer p { font-size: 12px; color: #888; }
        .age-limit { display: inline-block; margin-top: 10px; padding: 2px 8px; border: 2px solid #ff4444; color: #ff4444; border-radius: 50%; font-weight: bold; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: #111419; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #888; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #FFD700; }

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