* { 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; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background-color: #111419; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2c303a; }
        .header-content { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0 15px; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: bold; font-size: 14px; border: none; cursor: pointer; 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 { width: 100%; display: block; aspect-ratio: 2 / 1; object-fit: cover; cursor: pointer; }
        .jackpot-container { background: #111419; margin: 20px 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: #FFD700; font-size: 18px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; font-family: monospace; text-shadow: 0 0 10px #FFD700; }
        .platform-intro { padding: 20px 15px; }
        .platform-intro h1 { font-size: 22px; color: #FFD700; margin-bottom: 15px; line-height: 1.3; }
        .platform-intro p { font-size: 15px; color: #b0b3b8; }
        .section-header { padding: 20px 15px 10px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 18px; color: #FFD700; border-left: 4px solid #FF2E63; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 10px 15px; }
        .game-card { background: #2c303a; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-bottom: 2px solid #1a1d24; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ffffff; }
        .game-info span { font-size: 12px; color: #888; }
        .payment-methods { background: #111419; margin: 20px 15px; padding: 20px; border-radius: 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: center; }
        .payment-methods i { font-size: 30px; color: #b0b3b8; }
        .trust-badge { width: 60px; height: auto; opacity: 0.8; }
        .guidelines-section { padding: 20px 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-card { background: #2c303a; padding: 20px; border-radius: 15px; border-top: 3px solid #FFD700; }
        .guide-card h2 { font-size: 18px; margin-bottom: 10px; color: #FFD700; }
        .winners-marquee { background: #111419; padding: 15px 0; margin: 20px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; animation: scroll-left 40s linear infinite; gap: 30px; width: max-content; }
        .winner-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 13px; background: #2c303a; padding: 8px 15px; border-radius: 20px; border: 1px solid #444; }
        .winner-item strong { color: #FFD700; }
        @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; text-align: center; }
        .providers-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .provider-tag { background: #111419; color: #FFD700; padding: 8px 15px; border-radius: 5px; font-size: 13px; border: 1px solid #2c303a; }
        .comments-section { padding: 20px 15px; display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: #2c303a; padding: 15px; border-radius: 15px; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 30px; color: #FFD700; }
        .comment-meta h4 { font-size: 15px; margin-bottom: 2px; }
        .comment-meta span { font-size: 11px; color: #888; }
        .stars { color: #FFD700; font-size: 12px; margin-bottom: 8px; }
        .comment-body { font-size: 14px; color: #b0b3b8; }
        .faq-section { padding: 20px 15px; }
        .faq-item { background: #111419; margin-bottom: 10px; border-radius: 10px; overflow: hidden; border: 1px solid #2c303a; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 15px; color: #FFD700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: #b0b3b8; }
        .security-section { padding: 30px 15px; text-align: center; background: #111419; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 20px 0; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 13px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #111419; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2c303a; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #b0b3b8; font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0a0c0f; padding: 40px 15px 20px; border-top: 1px solid #2c303a; }
        .footer-contact { margin-bottom: 30px; text-align: center; }
        .footer-contact h2 { font-size: 16px; margin-bottom: 15px; color: #FFD700; }
        .contact-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .contact-links a { font-size: 14px; color: #b0b3b8; background: #1a1d24; padding: 8px 15px; border-radius: 5px; border: 1px solid #2c303a; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
        .footer-grid a { display: block; font-size: 13px; color: #888; margin-bottom: 8px; }
        .copyright { text-align: center; font-size: 12px; color: #555; border-top: 1px solid #1a1d24; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-section { grid-template-columns: repeat(2, 1fr); }
            .comment-card { margin-bottom: 0; }
        }