* { 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; }
        a { text-decoration: none; color: inherit; }
        header { background-color: #12141a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .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: 400; color: #FFD700; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid #FFD700; color: #FFD700; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        .btn-register { background: linear-gradient(to right, #FF6B35, #FF2E63); border: none; color: #fff; padding: 7px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%); padding: 20px; text-align: center; border-bottom: 2px solid #FFD700; margin: 15px 0; }
        .jackpot-title { color: #FFD700; font-size: 1.2rem; font-weight: bold; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 2.2rem; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .platform-intro { padding: 20px; max-width: 1200px; margin: 0 auto; }
        .platform-card { background: #252932; border-radius: 15px; padding: 20px; border-left: 5px solid #FFD700; }
        .platform-card h1 { font-size: 1.4rem; color: #FFD700; margin-bottom: 12px; line-height: 1.3; }
        .platform-card p { font-size: 0.95rem; color: #ccc; }
        .section-container { padding: 20px 10px; max-width: 1200px; margin: 0 auto; }
        .section-title { font-size: 1.3rem; margin-bottom: 20px; border-left: 4px solid #FF2E63; padding-left: 10px; display: flex; align-items: center; justify-content: space-between; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; display: block; 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: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
        .game-provider { font-size: 0.7rem; color: #888; text-transform: uppercase; }
        .trust-section { background: #12141a; padding: 25px 15px; text-align: center; margin: 20px 0; border-radius: 15px; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 2rem; color: #fff; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: #252932; padding: 15px; border-radius: 12px; border: 1px solid #333; }
        .guide-item h2 { color: #FFD700; font-size: 1.1rem; margin-bottom: 10px; }
        .winning-marquee { background: #12141a; padding: 10px 0; overflow: hidden; position: relative; margin: 20px 0; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: scrollMarquee 40s linear infinite; }
        .win-tag { display: inline-flex; align-items: center; background: #252932; padding: 8px 15px; border-radius: 20px; margin-right: 15px; border: 1px solid #444; }
        .win-tag span { color: #FFD700; font-weight: bold; margin: 0 5px; }
        @keyframes scrollMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 20px 0; }
        .provider-badge { background: #12141a; padding: 8px 15px; border-radius: 5px; font-size: 0.8rem; border: 1px solid #333; color: #aaa; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .review-card { background: #252932; padding: 15px; border-radius: 12px; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-meta i { font-size: 2rem; color: #FFD700; }
        .star-rating { color: #FFD700; font-size: 0.8rem; }
        .review-date { font-size: 0.7rem; color: #777; margin-left: auto; }
        .faq-section { background: #252932; border-radius: 15px; padding: 20px; margin-bottom: 40px; }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 15px; }
        .faq-item:last-child { border-bottom: none; }
        .faq-item h2 { font-size: 1.05rem; color: #FFD700; margin-bottom: 10px; }
        .faq-item p { font-size: 0.9rem; color: #ccc; }
        .responsible-gaming { text-align: center; padding: 30px 15px; border-top: 1px solid #333; background: #12141a; }
        .responsible-gaming h2 { color: #FFD700; font-size: 1.2rem; margin-bottom: 15px; }
        .responsible-icons { display: flex; justify-content: center; gap: 20px; font-size: 1.8rem; margin-top: 15px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 0.7rem; color: #888; }
        .nav-item i { font-size: 1.2rem; margin-bottom: 3px; }
        footer { padding: 40px 15px 100px; background: #0a0c10; text-align: center; }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { font-size: 0.9rem; color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 0.8rem; color: #888; }
        .copyright { font-size: 0.75rem; color: #555; border-top: 1px solid #222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines, .reviews-grid { grid-template-columns: 1fr 1fr; }
        }