* { 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; }
        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: 1px solid #2d323d; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%); color: #ffffff; }
        .btn:active { transform: scale(0.95); }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-section { background: radial-gradient(circle, #2d323d 0%, #1a1d24 100%); padding: 20px; text-align: center; border-bottom: 2px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .platform-intro { padding: 20px; text-align: center; background-color: #1e222a; margin: 15px; border-radius: 15px; }
        .platform-intro h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .platform-intro p { font-size: 14px; color: #a0a0a0; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #FFD700; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #2d323d; border-radius: 12px; overflow: hidden; position: relative; display: flex; flex-direction: column; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: #FFD700; opacity: 0.8; }
        .payments-licenses { background: #12141a; padding: 20px; margin: 15px; border-radius: 15px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.7; }
        .payment-icons i { font-size: 24px; }
        .guidelines { padding: 15px; }
        .guideline-card { background: #2d323d; padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 4px solid #FF2E63; }
        .guideline-card h2 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .guideline-card p { font-size: 13px; color: #d0d0d0; }
        .winners-marquee { background: #12141a; padding: 10px 0; overflow: hidden; border-top: 1px solid #2d323d; border-bottom: 1px solid #2d323d; }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; }
        .winner-item { white-space: nowrap; padding: 0 20px; font-size: 13px; color: #a0a0a0; }
        .winner-item strong { color: #FFD700; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px; text-align: center; background: #1e222a; margin: 15px; border-radius: 15px; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 10px; }
        .provider-tag { background: #2d323d; padding: 5px 12px; border-radius: 15px; font-size: 12px; color: #FFD700; }
        .reviews-section { padding: 15px; }
        .review-card { background: #2d323d; padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #a0a0a0; }
        .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: #707070; margin-top: 2px; }
        .review-content { font-size: 13px; color: #d0d0d0; }
        .faq-section { padding: 15px; background: #12141a; }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid #2d323d; padding-bottom: 15px; }
        .faq-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #a0a0a0; }
        .security-section { padding: 20px; text-align: center; background: #1e222a; margin: 15px; border-radius: 15px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: #FF2E63; }
        .security-text { font-size: 12px; color: #a0a0a0; margin-top: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; color: #a0a0a0; }
        .nav-item i { font-size: 18px; }
        footer { padding: 30px 15px; background: #0d0f13; color: #707070; text-align: center; }
        .footer-contact { margin-bottom: 20px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 12px; color: #a0a0a0; }
        .footer-copy { font-size: 11px; border-top: 1px solid #2d323d; padding-top: 20px; }