body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; line-height: 1.6; overflow-x: hidden; }
        header { background-color: #12141a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #FFD700; }
        .logo-container { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #ffffff; }
        .logo-container img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-container strong { font-size: 16px; font-weight: normal; }
        .header-btns { display: flex; gap: 8px; }
        .btn { border: none; padding: 8px 16px; border-radius: 20px; font-weight: bold; cursor: pointer; text-decoration: none; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background: #333; color: #fff; }
        .btn-register { background: linear-gradient(to right, #FF6B35, #FF2E63); color: #fff; }
        .btn:active { transform: scale(0.95); }
        main { padding-bottom: 80px; }
        .banner-container { width: 100%; cursor: pointer; }
        .banner-container img { width: 100%; aspect-ratio: 2/1; display: block; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%); padding: 20px; text-align: center; border-bottom: 1px solid #333; }
        .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: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .platform-intro { padding: 20px; background: #22262f; margin: 15px; border-radius: 12px; border-left: 4px solid #FFD700; }
        .platform-intro h1 { font-size: 20px; color: #FFD700; margin: 0 0 10px 0; }
        .platform-intro p { font-size: 14px; color: #ccc; margin: 0; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; display: flex; align-items: center; gap: 10px; border-left: 3px solid #FF2E63; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #2a2e38; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; transition: background 0.3s; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 12px; color: #888; margin: 4px 0 0; }
        .payment-methods { padding: 20px 15px; background: #12141a; text-align: center; margin: 20px 0; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 24px; color: #FFD700; }
        .guidelines-grid { padding: 0 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guideline-item { background: #22262f; padding: 15px; border-radius: 8px; border-bottom: 2px solid #333; }
        .guideline-item h2 { font-size: 16px; color: #FFD700; margin-top: 0; }
        .marquee-container { background: #12141a; padding: 10px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winner-item { display: inline-block; margin-right: 30px; font-size: 13px; color: #eee; }
        .winner-item span { color: #FFD700; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; text-align: center; color: #888; font-size: 14px; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 10px; }
        .provider-tag { background: #2a2e38; padding: 5px 12px; border-radius: 4px; color: #ddd; }
        .reviews-grid { padding: 0 15px; margin: 20px 0; }
        .review-card { background: #22262f; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #333; }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 8px; }
        .user-info i { color: #FFD700; font-size: 20px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; }
        .review-body { font-size: 13px; color: #bbb; }
        .faq-section { padding: 0 15px; margin: 30px 0; }
        .faq-item { background: #2a2e38; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; color: #FFD700; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: #ccc; }
        .security-section { padding: 20px 15px; background: #12141a; text-align: center; font-size: 12px; color: #888; }
        .security-icons { margin-bottom: 15px; display: flex; justify-content: center; gap: 20px; font-size: 24px; color: #4caf50; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-decoration: none; color: #888; text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 2px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0d0f14; padding: 30px 15px 100px; border-top: 1px solid #333; }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contacts a { color: #FFD700; text-decoration: none; font-size: 14px; }
        .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 { text-align: center; font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }