* { 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; overflow-x: hidden; padding-bottom: 70px; }
        header { background: #121418; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-area { display: flex; align-items: center; text-decoration: none; color: #ffffff; }
        .logo-area img { width: 25px; height: 25px; margin-right: 8px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: normal; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { border: none; padding: 8px 16px; border-radius: 20px; font-weight: bold; cursor: pointer; transition: transform 0.2s; font-size: 14px; }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(45deg, #FF6B35, #FF2E63); color: #fff; }
        .btn:active { transform: scale(0.95); }
        .main-content { max-width: 1200px; margin: 0 auto; padding: 15px; }
        .banner { width: 100%; border-radius: 15px; overflow: hidden; cursor: pointer; aspect-ratio: 2 / 1; margin-bottom: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%); border: 2px solid #FFD700; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: #FFD700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 2.5rem; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); font-variant-numeric: tabular-nums; }
        .platform-intro { background: #23272e; padding: 25px; border-radius: 15px; margin-bottom: 25px; border-left: 5px solid #FF6B35; }
        .platform-intro h1 { font-size: 22px; color: #FFD700; margin-bottom: 15px; line-height: 1.3; }
        .platform-intro p { font-size: 15px; color: #ccc; }
        .section-title { font-size: 1.4rem; color: #FFD700; margin: 25px 0 15px; border-bottom: 2px solid #FF6B35; display: inline-block; padding-bottom: 5px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .game-card { background: #23272e; border-radius: 12px; overflow: hidden; text-decoration: none; transition: 0.3s; 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 { font-size: 14px; color: #fff; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 12px; color: #888; }
        .payments-licenses { background: #fff; padding: 20px; border-radius: 15px; margin-bottom: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; align-items: center; }
        .payment-icon { height: 30px; filter: grayscale(20%); opacity: 0.9; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guideline-item { background: #23272e; padding: 20px; border-radius: 12px; border-top: 3px solid #FFD700; }
        .guideline-item h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .guideline-item p { font-size: 14px; color: #bbb; }
        .marquee-container { background: #121418; padding: 15px 0; overflow: hidden; white-space: nowrap; border-radius: 10px; margin-bottom: 30px; border: 1px solid #444; }
        .marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-tag { display: inline-flex; align-items: center; background: #2a2e38; margin: 0 15px; padding: 5px 15px; border-radius: 20px; border-left: 3px solid #4caf50; }
        .win-tag span { color: #FFD700; margin: 0 5px; font-weight: bold; }
        .providers-wall { background: #23272e; padding: 20px; border-radius: 15px; text-align: center; color: #888; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; font-weight: bold; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .review-card { background: #23272e; padding: 20px; border-radius: 15px; position: relative; }
        .review-header { display: flex; align-items: center; margin-bottom: 12px; }
        .review-avatar { font-size: 24px; color: #FFD700; margin-right: 12px; }
        .review-meta h3 { font-size: 16px; margin: 0; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; position: absolute; top: 20px; right: 20px; }
        .review-content { font-size: 14px; color: #ccc; font-style: italic; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: #23272e; margin-bottom: 10px; border-radius: 10px; padding: 15px; }
        .faq-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; cursor: pointer; }
        .faq-item p { font-size: 14px; color: #bbb; }
        .security-section { background: #121418; padding: 25px; border-radius: 15px; text-align: center; border: 1px dashed #555; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; }
        .age-badge { background: #FF2E63; color: #fff; width: 40px; height: 40px; border-radius: 50%; line-height: 40px; font-weight: bold; display: inline-block; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #121418; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-decoration: none; color: #888; display: flex; flex-direction: column; align-items: center; font-size: 12px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:hover, .nav-item.active { color: #FFD700; }
        footer { padding: 30px 15px; background: #121418; color: #888; text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { color: #fff; text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: #888; text-decoration: none; font-size: 13px; transition: 0.2s; }
        .footer-links a:hover { color: #FFD700; }
        .copyright { font-size: 12px; border-top: 1px solid #333; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
        }