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: #111419; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; }
        .logo-box { display: flex; align-items: center; text-decoration: none; color: #FFD700; }
        .logo-box img { width: 25px; height: 25px; margin-right: 8px; }
        .logo-box strong { font-size: 16px; font-weight: normal; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { border: none; padding: 8px 15px; border-radius: 20px; font-weight: bold; cursor: pointer; text-decoration: none; font-size: 14px; transition: transform 0.2s; color: #fff; }
        .btn-login { background: transparent; border: 1px solid #FFD700; color: #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); }
        .btn:active { transform: scale(0.95); }
        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); padding: 20px; text-align: center; margin: 15px; border-radius: 15px; border: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 18px; margin-bottom: 10px; font-weight: bold; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { padding: 20px; margin: 15px; background: #242832; border-radius: 15px; text-align: center; }
        .intro-card h1 { font-size: 22px; color: #FFD700; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 15px; color: #ccc; }
        .section-title { padding: 0 20px; margin-top: 25px; font-size: 20px; border-left: 4px solid #FF6B35; margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 15px; }
        .game-card { background: #242832; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; transition: background 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { margin: 0; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #FFD700; }
        .game-info p { margin: 5px 0 0; font-size: 12px; color: #888; }
        .payment-section { background: #111419; padding: 25px 15px; text-align: center; margin: 15px; border-radius: 15px; }
        .icon-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .icon-row i { font-size: 30px; color: #aaa; }
        .provider-wall { background: #242832; padding: 20px; margin: 15px; border-radius: 15px; text-align: center; }
        .provider-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; font-size: 13px; color: #FFD700; font-weight: bold; }
        .guidelines { padding: 15px; }
        .guide-item { background: #242832; padding: 20px; border-radius: 15px; margin-bottom: 15px; border-top: 3px solid #FF2E63; }
        .guide-item h2 { font-size: 18px; margin-top: 0; color: #FFD700; }
        .marquee-container { background: #111419; padding: 15px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; animation: scrollMarquee 40s linear infinite; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-item { white-space: nowrap; padding: 0 30px; color: #ccc; font-size: 13px; }
        .winner-item span { color: #FFD700; font-weight: bold; }
        .comments-section { padding: 15px; }
        .comment-card { background: #242832; padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .user-meta { display: flex; align-items: center; margin-bottom: 10px; }
        .user-meta i { font-size: 30px; margin-right: 12px; color: #888; }
        .user-info h4 { margin: 0; font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .faq-section { padding: 15px; background: #111419; }
        .faq-item { margin-bottom: 20px; }
        .faq-item h2 { font-size: 17px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #bbb; }
        .responsible-gaming { padding: 20px; text-align: center; background: #242832; margin: 15px; border-radius: 15px; }
        .responsible-icons { font-size: 24px; margin-bottom: 15px; display: flex; justify-content: center; gap: 20px; color: #FF2E63; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #111419; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: #888; font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0a0c0f; padding: 30px 15px 100px; text-align: center; }
        .footer-contacts { margin-bottom: 25px; }
        .footer-contacts a { margin: 0 10px; color: #FFD700; text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: #888; text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #222; pt: 20px; }