body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; line-height: 1.6; }
        header { background: #1a1d24; border-bottom: 2px solid #FFD700; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; }
        .logo-container { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #ffffff; }
        .logo-container img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-container strong { font-size: 16px; font-weight: normal; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn-login, .btn-register { border: none; border-radius: 20px; padding: 6px 15px; font-weight: bold; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background: transparent; border: 1px solid #FFD700; color: #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: white; }
        .btn-register:active, .btn-login:active { transform: scale(0.95); }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; cursor: pointer; object-fit: cover; }
        .jackpot-section { background: #242832; margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid #FFD700; text-align: center; }
        .jackpot-title { font-size: 1.2rem; color: #FFD700; text-transform: uppercase; margin-bottom: 10px; }
        #jackpot-counter { font-size: 2rem; font-weight: bold; color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { margin: 15px; padding: 20px; background: #242832; border-radius: 15px; border-left: 4px solid #FFD700; }
        h1 { font-size: 1.4rem; color: #FFD700; margin-bottom: 10px; }
        h2 { font-size: 1.3rem; margin: 25px 15px 15px; border-left: 4px solid #FF6B35; padding-left: 10px; }
        h3 { font-size: 0.9rem; margin: 5px 0; color: #ffffff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #242832; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #333; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; }
        .provider-name { font-size: 0.75rem; color: #aaa; }
        .payment-section, .providers-section { background: #242832; margin: 15px; padding: 20px; border-radius: 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .payment-icon, .provider-text { background: #1a1d24; padding: 8px 12px; border-radius: 8px; border: 1px solid #333; font-size: 0.8rem; }
        .guidelines { padding: 0 15px; }
        .guideline-item { background: #242832; margin-bottom: 15px; padding: 15px; border-radius: 12px; border: 1px solid #333; }
        .marquee-container { background: #000; padding: 10px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winning-item { display: inline-block; padding: 0 20px; font-size: 0.85rem; border-right: 1px solid #333; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .reviews-grid { padding: 0 15px; }
        .review-card { background: #242832; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #333; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 2rem; color: #FFD700; }
        .review-stars { color: #FFD700; font-size: 0.8rem; }
        .faq-section { padding: 0 15px; }
        .faq-item { background: #242832; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; border-bottom: 1px solid #333; color: #FFD700; font-size: 0.95rem; }
        .faq-answer { padding: 15px; font-size: 0.85rem; color: #ccc; }
        .security-section { margin: 20px 15px 100px; padding: 20px; background: #242832; border-radius: 15px; text-align: center; }
        .security-logos { display: flex; justify-content: center; gap: 20px; font-size: 1.5rem; margin-bottom: 15px; color: #FFD700; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; border-top: 1px solid #333; display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; }
        .nav-item { text-decoration: none; color: #aaa; text-align: center; font-size: 0.7rem; }
        .nav-item i { display: block; font-size: 1.2rem; margin-bottom: 3px; }
        footer { background: #000; padding: 30px 15px 120px; text-align: center; font-size: 0.8rem; }
        .footer-contact { margin-bottom: 20px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 30px; }
        .footer-links a, .footer-contact a { color: #ccc; text-decoration: none; }
        .copyright { color: #666; padding-top: 20px; border-top: 1px solid #333; }