body { margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #1a1d24; color: #ffffff; 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; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; border: 1px solid #FFD700; color: #FFD700; }
        .btn-register { background: linear-gradient(135deg, #FF6B35, #FF2E63); color: white; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2d323d 0%, #1a1d24 100%); padding: 20px; text-align: center; margin: 15px; border-radius: 15px; border: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { padding: 20px; margin: 15px; background: #252932; border-radius: 15px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin: 0 0 10px 0; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b3b8; margin: 0; }
        section { padding: 15px; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: #FFD700; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .game-provider { font-size: 11px; color: #FFD700; opacity: 0.8; }
        .payment-section { background: #252932; padding: 20px 15px; margin: 15px 0; text-align: center; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; justify-items: center; opacity: 0.7; }
        .payment-grid i { font-size: 24px; color: #fff; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: #252932; padding: 20px; border-radius: 12px; }
        .guide-item h2 { font-size: 17px; color: #FFD700; margin-top: 0; }
        .guide-item p { font-size: 13px; color: #b0b3b8; margin-bottom: 0; }
        .marquee-container { background: #12141a; padding: 10px 0; overflow: hidden; border-top: 1px solid #2d323d; border-bottom: 1px solid #2d323d; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-item { white-space: nowrap; font-size: 12px; background: #252932; padding: 5px 15px; border-radius: 20px; border: 1px solid #3d424d; }
        .win-user { color: #FFD700; font-weight: bold; }
        .win-amount { color: #00ff88; font-weight: bold; }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 10px; }
        .provider-tag { background: #2d323d; padding: 5px 12px; border-radius: 4px; font-size: 12px; color: #b0b3b8; border: 1px solid #3d424d; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .review-card { background: #252932; padding: 20px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; border-radius: 50%; background: #3d424d; display: flex; align-items: center; justify-content: center; color: #FFD700; font-size: 20px; }
        .review-user-info h3 { font-size: 14px; margin: 0; color: #fff; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #6e7681; }
        .review-content { font-size: 13px; color: #b0b3b8; font-style: italic; }
        .faq-section { background: #12141a; padding: 20px 15px; }
        .faq-item { margin-bottom: 20px; }
        .faq-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0b3b8; }
        .security-section { text-align: center; padding: 30px 15px; background: #252932; margin-top: 20px; border-top: 2px solid #FFD700; }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 30px; margin-bottom: 15px; color: #FFD700; }
        .security-text { font-size: 12px; color: #6e7681; max-width: 600px; margin: 0 auto; }
        .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: 11px; color: #b0b3b8; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0d0f14; padding: 40px 15px 100px 15px; border-top: 1px solid #2d323d; }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-contact a { color: #FFD700; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        .footer-links a { font-size: 13px; color: #6e7681; }
        .footer-copy { text-align: center; font-size: 11px; color: #4e555f; border-top: 1px solid #1a1d24; padding-top: 20px; }