* { 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; }
        img { max-width: 100%; height: auto; display: block; }
        header { background: #11141a; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; 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 { border: none; padding: 8px 16px; border-radius: 20px; font-weight: bold; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(to right, #FF6B35, #FF2E63); color: #ffffff; }
        .btn:active { transform: scale(0.95); }
        .banner-container { width: 100%; aspect-ratio: 1000/500; cursor: pointer; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #11141a; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-label { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-variant-numeric: tabular-nums; }
        .intro-card { margin: 15px; padding: 20px; background: #242832; border-radius: 12px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 18px; color: #FFD700; margin-bottom: 10px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 18px; color: #ffffff; position: relative; }
        .section-title h2::after { content: ''; display: block; width: 40px; height: 3px; background: #FFD700; margin-top: 4px; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #242832; border-radius: 10px; overflow: hidden; transition: 0.3s; display: block; border: 1px solid #2d323d; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; color: #ffffff; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
        .game-provider { font-size: 11px; color: #888; text-transform: uppercase; }
        .payment-section { background: #11141a; margin: 25px 0; padding: 20px 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; border-top: 1px solid #2d323d; border-bottom: 1px solid #2d323d; }
        .payment-item { width: 60px; height: 35px; background: #242832; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #888; border: 1px solid #2d323d; }
        .guidelines-section { padding: 0 15px; margin-top: 30px; }
        .guideline-item { background: #242832; padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guideline-item h3 { color: #FFD700; font-size: 16px; margin-bottom: 8px; }
        .guideline-item p { font-size: 13px; color: #b0b3b8; }
        .winners-marquee { background: #11141a; margin: 20px 0; padding: 10px 0; overflow: hidden; position: relative; height: 120px; border-top: 1px solid #2d323d; border-bottom: 1px solid #2d323d; }
        .winners-track { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-row { padding: 8px 15px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #1a1d24; }
        .winner-user { font-size: 13px; color: #FFD700; width: 80px; }
        .winner-game { font-size: 13px; color: #ffffff; flex-grow: 1; padding: 0 10px; text-align: center; }
        .winner-amount { font-size: 13px; color: #00ff88; font-weight: bold; width: 100px; text-align: right; }
        .providers-wall { padding: 20px 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .provider-tag { background: #242832; padding: 6px 12px; border-radius: 4px; font-size: 12px; color: #b0b3b8; border: 1px solid #2d323d; }
        .comments-section { padding: 0 15px; margin-top: 30px; }
        .comment-card { background: #242832; padding: 15px; border-radius: 10px; margin-bottom: 15px; border: 1px solid #2d323d; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: #FFD700; }
        .comment-user-info { flex-grow: 1; }
        .comment-username { font-size: 14px; font-weight: bold; display: block; }
        .comment-date { font-size: 11px; color: #666; }
        .stars { color: #FFD700; font-size: 12px; }
        .comment-content { font-size: 13px; color: #b0b3b8; font-style: italic; }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { background: #11141a; border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid #2d323d; }
        .faq-question { padding: 15px; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #FFD700; font-size: 14px; }
        .faq-answer { padding: 0 15px 15px 15px; font-size: 13px; color: #b0b3b8; }
        .security-section { margin: 30px 15px; padding: 20px; background: #0c0e12; border-radius: 12px; text-align: center; border: 1px dashed #2d323d; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 20px; color: #FFD700; }
        .security-text { font-size: 12px; color: #666; }
        .security-links { margin-top: 10px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
        .security-links a { font-size: 11px; color: #FFD700; text-decoration: underline; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #11141a; height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 2000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 10px; font-weight: bold; }
        .nav-item.active, .nav-item:active { color: #FFD700; }
        footer { background: #0c0e12; padding: 30px 15px 80px; border-top: 2px solid #FFD700; }
        .footer-row { margin-bottom: 25px; }
        .footer-title { font-size: 14px; font-weight: bold; color: #FFD700; margin-bottom: 15px; text-transform: uppercase; }
        .contact-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .contact-links a { font-size: 13px; color: #b0b3b8; display: flex; align-items: center; gap: 8px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
        .footer-grid a { font-size: 12px; color: #888; transition: 0.2s; }
        .footer-grid a:hover { color: #FFD700; }
        .copyright { text-align: center; font-size: 11px; color: #444; margin-top: 20px; padding-top: 20px; border-top: 1px solid #1a1d24; }