* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
        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; }
        img { max-width: 100%; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #1a1d24; height: 60px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255, 215, 0, 0.2); }
        .header-content { display: flex; justify-content: space-between; align-items: center; height: 100%; }
        .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; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: bold; cursor: pointer; border: none; font-size: 14px; transition: 0.3s; }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #fff; box-shadow: 0 4px 15px rgba(255, 46, 99, 0.3); }
        .banner-container { width: 100%; cursor: pointer; background: #000; overflow: hidden; }
        .banner-img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
        .jackpot-section { background: rgba(255, 215, 0, 0.1); border: 2px solid #FFD700; margin: 20px 0; padding: 20px; border-radius: 15px; text-align: center; position: relative; overflow: hidden; }
        .jackpot-label { color: #FFD700; font-size: 18px; font-weight: bold; text-transform: uppercase; display: block; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; font-family: 'Courier New', monospace; text-shadow: 0 0 10px #FFD700; }
        .platform-intro { padding: 30px 15px; background: rgba(255,255,255,0.03); border-radius: 20px; margin-bottom: 30px; text-align: center; }
        .platform-intro h1 { font-size: 24px; color: #FFD700; margin-bottom: 15px; }
        .platform-intro p { font-size: 16px; color: #ccc; }
        .section-title { font-size: 20px; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid #FF6B35; color: #FFD700; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: 0.3s; border: 1px solid rgba(255,255,255,0.05); }
        .game-card:hover { transform: translateY(-5px); border-color: #FFD700; }
        .game-img-wrapper { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .game-info p { font-size: 12px; color: #888; }
        .trust-section { background: #252932; padding: 25px 15px; border-radius: 15px; margin: 30px 0; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.8; }
        .trust-icons i { font-size: 30px; color: #FFD700; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
        .guide-item { background: rgba(255,255,255,0.03); padding: 20px; border-radius: 15px; border-bottom: 2px solid #FF6B35; }
        .guide-item h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .winners-marquee { background: #000; padding: 10px 0; overflow: hidden; white-space: nowrap; margin: 30px 0; border-top: 1px solid #FFD700; border-bottom: 1px solid #FFD700; }
        .marquee-content { display: inline-flex; animation: scroll-left 40s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; gap: 10px; margin-right: 40px; font-size: 13px; }
        .winner-tag strong { color: #FFD700; }
        @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px; background: rgba(255,255,255,0.02); border-radius: 15px; text-align: center; color: #888; font-size: 14px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .reviews-section { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
        .review-card { background: #252932; padding: 20px; border-radius: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #FFD700; }
        .review-user { font-weight: bold; color: #fff; font-size: 15px; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 12px; color: #666; position: absolute; top: 20px; right: 20px; }
        .faq-section { margin-bottom: 40px; }
        .faq-item { background: #252932; margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px 20px; font-weight: bold; color: #FFD700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 20px 15px; color: #ccc; font-size: 14px; }
        .security-section { text-align: center; padding: 30px 15px; background: rgba(255, 46, 99, 0.05); border-radius: 15px; margin-bottom: 80px; }
        .security-section h2 { font-size: 20px; color: #FF2E63; margin-bottom: 15px; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-badges i { font-size: 40px; color: #FF2E63; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid rgba(255, 215, 0, 0.3); z-index: 1001; }
        .nav-link { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; color: #888; }
        .nav-link i { font-size: 18px; }
        .nav-link.active { color: #FFD700; }
        footer { background: #11141a; padding: 40px 15px 100px; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; border-bottom: 1px solid #222; padding-bottom: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #888; }
        .footer-copy { text-align: center; font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines, .reviews-section { grid-template-columns: repeat(2, 1fr); }
        }