body { margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, sans-serif; background-color: #1a1d24; color: #ffffff; line-height: 1.6; }
        header { background-color: #12141a; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .header-right { 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; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(45deg, #FF6B35, #FF2E63); color: #fff; }
        .btn:active { transform: scale(0.95); }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #000; padding: 15px; text-align: center; border-bottom: 2px solid #FFD700; margin-bottom: 20px; }
        .jackpot-label { color: #FFD700; font-size: 14px; 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); font-family: monospace; }
        .intro-card { margin: 20px; padding: 25px; background: #252932; border-radius: 15px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 22px; margin-top: 0; color: #FFD700; }
        .intro-card p { font-size: 15px; color: #ccc; margin-bottom: 0; }
        .section-title { margin: 30px 20px 15px; font-size: 20px; color: #FFD700; border-bottom: 1px solid #333; padding-bottom: 5px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 20px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; display: block; 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 { margin: 0; font-size: 14px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { margin: 5px 0 0; font-size: 12px; color: #888; }
        .payments-section { background: #12141a; padding: 25px 20px; margin: 30px 0; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 30px; color: #fff; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 20px; }
        .guide-item { background: #252932; padding: 20px; border-radius: 12px; }
        .guide-item h2 { font-size: 18px; color: #FFD700; margin-top: 0; }
        .guide-item p { font-size: 14px; color: #bbb; margin-bottom: 0; }
        .marquee-container { background: #000; padding: 10px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
        .win-item { display: inline-block; margin-right: 30px; font-size: 13px; color: #ccc; }
        .win-item strong { color: #FFD700; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 20px; background: #12141a; }
        .provider-tag { background: #252932; padding: 8px 15px; border-radius: 5px; font-size: 13px; font-weight: bold; color: #FFD700; border: 1px solid #333; }
        .reviews-container { padding: 20px; display: grid; gap: 15px; }
        .review-card { background: #252932; padding: 20px; border-radius: 12px; position: relative; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-meta i { font-size: 24px; color: #FFD700; }
        .user-name { font-weight: bold; font-size: 15px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; margin-bottom: 10px; }
        .faq-section { padding: 20px; }
        .faq-item { background: #252932; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; color: #FFD700; display: block; cursor: pointer; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: #bbb; }
        .security-section { padding: 30px 20px; text-align: center; background: #12141a; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 24px; color: #FFD700; }
        .responsible-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; font-size: 12px; }
        .responsible-links a { color: #888; text-decoration: none; }
        .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-align: center; text-decoration: none; color: #888; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #FFD700; }
        footer { padding: 40px 20px 100px; background: #0a0c10; border-top: 1px solid #333; }
        .footer-contact { margin-bottom: 30px; text-align: center; }
        .footer-contact h2 { font-size: 18px; margin-bottom: 15px; }
        .contact-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .contact-links a { color: #FFD700; text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: #888; text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; font-size: 12px; color: #666; padding-top: 20px; border-top: 1px solid #222; }