* { 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: #12141a; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .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-btns { 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:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: white; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; }
        .jackpot-section { background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); padding: 20px; text-align: center; margin: 15px 0; border-radius: 15px; border: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 18px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        #jackpot-amount { font-size: 32px; font-weight: bold; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .intro-card { background: #232730; padding: 20px; border-radius: 15px; margin-bottom: 20px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #ced4da; }
        .section-title { font-size: 18px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; border-left: 3px solid #FF2E63; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #232730; border-radius: 12px; overflow: hidden; display: block; border: 1px solid #2a2e38; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 12px; color: #888; display: block; }
        .payments-licenses { background: #232730; padding: 20px; border-radius: 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .payments-licenses i { font-size: 30px; color: #ced4da; opacity: 0.8; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #232730; padding: 15px; border-radius: 12px; border-top: 2px solid #FF6B35; }
        .guide-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #adb5bd; }
        .marquee-container { background: #12141a; padding: 10px 0; overflow: hidden; white-space: nowrap; margin: 20px 0; border-top: 1px solid #2a2e38; border-bottom: 1px solid #2a2e38; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: #232730; padding: 5px 15px; border-radius: 20px; margin-right: 20px; border: 1px solid #3d424d; font-size: 13px; }
        .winner-tag strong { color: #FFD700; margin: 0 5px; }
        .winner-tag i { color: #2ecc71; margin-right: 5px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { background: #232730; padding: 20px; border-radius: 15px; text-align: center; color: #adb5bd; font-size: 14px; margin-bottom: 25px; border: 1px dashed #3d424d; }
        .comments-list { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: #232730; padding: 15px; border-radius: 12px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: #FFD700; }
        .comment-user { flex: 1; }
        .comment-user span { display: block; font-size: 14px; font-weight: bold; }
        .stars { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 12px; color: #888; }
        .comment-text { font-size: 13px; color: #ced4da; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #232730; border-radius: 12px; margin-bottom: 10px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: #FFD700; margin-bottom: 8px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-item p { font-size: 13px; color: #adb5bd; display: block; }
        .security-section { background: #12141a; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FF2E63; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FF2E63; }
        .security-text { font-size: 12px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 12px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #12141a; padding: 30px 15px; border-top: 1px solid #2a2e38; text-align: center; }
        .footer-contact { margin-bottom: 20px; }
        .footer-contact h2 { font-size: 16px; margin-bottom: 10px; }
        .footer-socials { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-socials a { color: #adb5bd; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 20px; text-align: left; }
        .footer-links a { font-size: 12px; color: #888; }
        .footer-copyright { font-size: 12px; color: #555; border-top: 1px solid #2a2e38; pt: 20px; }