* { 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; }
        header { background: #11141a; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-right { display: flex; gap: 8px; }
        .btn { border: none; padding: 8px 15px; border-radius: 5px; font-weight: bold; cursor: pointer; font-size: 14px; text-decoration: none; display: inline-block; transition: opacity 0.3s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #fff; }
        .banner-container { width: 100%; cursor: pointer; }
        .banner-container img { width: 100%; height: auto; display: block; aspect-ratio: 2/1; }
        .jackpot-section { background: #000; padding: 15px; text-align: center; margin: 15px 10px; border-radius: 12px; border: 1px solid #FFD700; }
        .jackpot-label { color: #FFD700; font-size: 14px; font-weight: bold; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 900; color: #fff; text-shadow: 0 0 10px #FFD700; font-family: monospace; }
        .intro-card { background: #252932; padding: 20px; margin: 15px 10px; border-radius: 15px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .section-title { padding: 10px 15px; font-size: 18px; color: #FFD700; display: flex; align-items: center; gap: 10px; }
        .section-title i { font-size: 16px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 10px; }
        .game-card { background: #252932; border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; margin: 2px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: #888; display: block; }
        .payments-section { background: #11141a; padding: 20px 10px; margin: 15px 0; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; filter: grayscale(1); opacity: 0.7; }
        .payment-icons i { font-size: 24px; color: #fff; }
        .guidelines { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: #252932; padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #aaa; }
        .winners-marquee { background: #11141a; padding: 10px 0; margin: 15px 0; overflow: hidden; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: flex; animation: scrollMarquee 30s linear infinite; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-item { white-space: nowrap; padding: 0 20px; font-size: 13px; display: flex; align-items: center; gap: 8px; }
        .winner-item span { color: #FFD700; font-weight: bold; }
        .providers-wall { padding: 15px; text-align: center; background: #252932; margin: 15px 10px; border-radius: 10px; font-size: 12px; color: #888; line-height: 2.5; }
        .providers-wall span { margin: 0 10px; color: #fff; font-weight: bold; border: 1px solid #444; padding: 2px 8px; border-radius: 4px; }
        .reviews-section { padding: 15px; display: grid; gap: 15px; }
        .review-card { background: #252932; padding: 15px; border-radius: 10px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #FFD700; }
        .user-meta { display: flex; flex-direction: column; }
        .user-name { font-weight: bold; font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #888; }
        .review-body { font-size: 13px; color: #ccc; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: #11141a; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 12px 15px; font-weight: bold; font-size: 14px; color: #FFD700; border-bottom: 1px solid #333; cursor: pointer; }
        .faq-answer { padding: 12px 15px; font-size: 13px; color: #ccc; }
        .security-section { padding: 20px 15px; text-align: center; background: #0b0d11; margin-top: 20px; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 12px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #11141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 2000; }
        .nav-item { text-decoration: none; color: #888; display: flex; flex-direction: column; align-items: center; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: #FFD700; }
        footer { background: #000; padding: 30px 15px 100px; text-align: center; }
        .footer-contacts { margin-bottom: 25px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-contacts a { color: #ccc; text-decoration: none; font-size: 13px; border: 1px solid #333; padding: 5px 10px; border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: #888; text-decoration: none; font-size: 12px; }
        .copyright { font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }