* { 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; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 92%; max-width: 1200px; margin: 0 auto; }
        header { background: #1a1d24; padding: 15px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid #FFD700; color: #FFD700; padding: 8px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(to right, #FF6B35, #FF2E63); border: none; color: #fff; padding: 8px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; font-weight: bold; }
        .banner-section { margin-bottom: 20px; cursor: pointer; }
        .banner-section img { width: 100%; aspect-ratio: 2 / 1; border-radius: 12px; object-fit: cover; }
        .jackpot-box { background: #252a34; border: 2px solid #FFD700; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-box h2 { color: #FFD700; font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 2rem; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px #FFD700; }
        .intro-card { background: #252a34; padding: 20px; border-radius: 15px; margin-bottom: 20px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 15px; color: #FFD700; }
        .intro-card p { font-size: 0.95rem; color: #ccc; }
        .section-title { margin: 25px 0 15px; font-size: 1.3rem; color: #FFD700; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.9rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 0.75rem; color: #888; }
        .payment-methods { background: #252a34; padding: 20px; border-radius: 15px; margin-bottom: 20px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; justify-items: center; }
        .payment-grid i { font-size: 1.8rem; color: #FFD700; }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .guide-item { background: #252a34; padding: 15px; border-radius: 12px; font-size: 0.9rem; color: #ccc; }
        .guide-item h2 { font-size: 1.1rem; color: #FFD700; margin-bottom: 10px; }
        .winning-marquee { background: #252a34; padding: 10px 0; overflow: hidden; margin-bottom: 20px; white-space: nowrap; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .win-item { display: inline-block; margin-right: 30px; font-size: 0.85rem; }
        .win-item span { color: #FFD700; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { background: #252a34; padding: 20px; border-radius: 15px; margin-bottom: 20px; text-align: center; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; font-weight: bold; color: #888; font-size: 0.9rem; }
        .comments-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .comment-card { background: #252a34; padding: 15px; border-radius: 12px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 1.5rem; color: #FFD700; }
        .user-meta { flex-grow: 1; }
        .user-name { font-weight: bold; font-size: 0.9rem; }
        .stars { color: #FFD700; font-size: 0.8rem; }
        .comment-date { font-size: 0.75rem; color: #888; }
        .comment-text { font-size: 0.85rem; color: #ccc; }
        .faq-section { margin-bottom: 20px; }
        .faq-item { background: #252a34; border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; cursor: pointer; color: #FFD700; border-bottom: 1px solid #333; }
        .faq-answer { padding: 15px; font-size: 0.9rem; color: #ccc; }
        .security-section { background: #1a1d24; border: 1px solid #333; padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 1.5rem; color: #FFD700; }
        .security-text { font-size: 0.8rem; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #252a34; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-align: center; color: #888; font-size: 0.75rem; }
        .nav-item i { font-size: 1.2rem; display: block; margin-bottom: 4px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #11141a; padding: 30px 0 80px; text-align: center; font-size: 0.85rem; color: #888; }
        .footer-contacts { margin-bottom: 20px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-contacts a { color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: #888; }
        .footer-copy { border-top: 1px solid #333; padding-top: 15px; font-size: 0.75rem; }