* { 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; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header { background-color: #111419; 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 #2d323d; }
        .logo-container { display: flex; align-items: center; gap: 8px; }
        .logo-container img { width: 25px; height: 25px; }
        .logo-container strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .header-auth { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(45deg, #FF6B35, #FF2E63); color: #ffffff; }
        .btn:active { transform: scale(0.95); }

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

        .jackpot-container { margin: 20px 15px; background: radial-gradient(circle at center, #2d323d, #111419); border: 2px solid #FFD700; border-radius: 15px; padding: 20px; text-align: center; box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); font-family: monospace; }

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

        .section-container { padding: 0 15px 20px; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: #FFD700; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #242933; border-radius: 12px; overflow: hidden; display: block; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ffffff; }
        .game-provider { font-size: 11px; color: #888; }

        .payment-methods { background: #111419; padding: 20px 15px; margin: 20px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .payment-icon { background: #242933; padding: 10px; border-radius: 8px; width: 60px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #FFD700; }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 0 15px; }
        .guide-item { background: #242933; padding: 20px; border-radius: 12px; }
        .guide-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 10px; }
        .guide-item p { font-size: 13px; color: #aaa; }

        .marquee-container { background: #111419; padding: 15px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #2d323d; border-bottom: 1px solid #2d323d; }
        .marquee-content { display: inline-flex; animation: scroll 40s linear infinite; }
        .winner-tag { background: #242933; margin: 0 15px; padding: 10px 15px; border-radius: 30px; border: 1px solid #FFD700; font-size: 12px; display: flex; align-items: center; gap: 8px; }
        .winner-amount { color: #00ff88; font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

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

        .reviews-container { padding: 0 15px; }
        .review-card { background: #242933; padding: 20px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: #2d323d; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFD700; }
        .review-meta h3 { font-size: 14px; margin: 0; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; }
        .review-content { font-size: 13px; color: #ccc; }

        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: #242933; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: #FFD700; font-size: 14px; border-bottom: 1px solid #2d323d; }
        .faq-answer { padding: 15px; font-size: 13px; color: #aaa; }

        .security-section { padding: 20px 15px; background: #111419; text-align: center; border-radius: 15px; margin: 0 15px 100px; border: 1px dashed #444; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: #888; }
        .age-limit { display: inline-block; border: 2px solid #ff4444; color: #ff4444; border-radius: 50%; width: 35px; height: 35px; line-height: 31px; font-weight: bold; margin-bottom: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #111419; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #FFD700; z-index: 1000; padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 10px; color: #888; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #FFD700; }

        footer { background: #0d0f13; padding: 40px 15px 120px; text-align: center; font-size: 13px; color: #666; }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: #aaa; }
        .copyright { border-top: 1px solid #222; padding-top: 20px; }