* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #1a1d24; color: #ffffff; line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        header { background: #13151a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 14px; border: none; cursor: pointer; transition: opacity 0.3s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%); color: #ffffff; }
        .btn:hover { opacity: 0.9; }
        main { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .banner { width: 100%; aspect-ratio: 2/1; margin-top: 10px; border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .jackpot-section { background: #252a34; margin: 20px 0; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; }
        .jackpot-label { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .platform-intro { background: #252a34; padding: 25px; border-radius: 15px; margin-bottom: 25px; }
        .platform-intro h1 { font-size: 20px; color: #FFD700; margin-bottom: 15px; }
        .platform-intro p { font-size: 14px; color: #cccccc; text-align: justify; }
        .section-title { font-size: 18px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; display: block; width: 4px; height: 18px; background: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; transition: transform 0.3s; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: #888; text-transform: uppercase; }
        .payment-licensing { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; background: #13151a; padding: 20px; border-radius: 15px; margin: 25px 0; }
        .payment-licensing i { font-size: 24px; color: #555; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .guideline-item { background: #252a34; padding: 15px; border-radius: 12px; border-left: 3px solid #FFD700; }
        .guideline-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 10px; }
        .guideline-item p { font-size: 13px; color: #bbb; }
        .win-marquee { background: #13151a; padding: 15px 0; margin: 25px 0; overflow: hidden; position: relative; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: flex; gap: 30px; animation: marquee 40s linear infinite; white-space: nowrap; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-item { display: flex; align-items: center; gap: 10px; font-size: 12px; background: #252a34; padding: 5px 15px; border-radius: 20px; }
        .win-user { color: #FFD700; font-weight: bold; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 25px 0; padding: 15px; opacity: 0.7; }
        .provider-tag { font-size: 12px; background: #333; padding: 4px 12px; border-radius: 4px; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .review-card { background: #252a34; padding: 20px; border-radius: 15px; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 10px; }
        .user-avatar { width: 35px; height: 35px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFD700; }
        .user-details span { display: block; font-size: 14px; font-weight: bold; }
        .user-details small { font-size: 11px; color: #888; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { margin: 25px 0; }
        .faq-item { background: #252a34; border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-size: 15px; font-weight: bold; color: #FFD700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #bbb; }
        .security-section { background: #13151a; padding: 20px; border-radius: 15px; text-align: center; border: 1px dashed #444; margin: 25px 0; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 12px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #13151a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) i { color: #FFD700; font-size: 24px; margin-top: -15px; background: #1a1d24; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 2px solid #FFD700; }
        footer { background: #0d0f13; padding: 30px 15px 100px; text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { font-size: 14px; color: #bbb; transition: color 0.3s; }
        .footer-social a:hover { color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #888; }
        .footer-copyright { font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
        }