* { box-sizing: border-box; margin: 0; padding: 0; }
        body { 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: #12141a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; }
        .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-weight: bold; font-size: 14px; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(45deg, #FF6B35, #FF2E63); color: #fff; }
        main { padding: 15px; max-width: 1200px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #252a34; border: 2px solid #FFD700; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: #FFD700; font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; font-weight: bold; }
        .jackpot-amount { font-size: 2.2rem; font-weight: 900; color: #fff; text-shadow: 0 0 10px #FF6B35; font-family: monospace; }
        .platform-intro { background: #252a34; padding: 20px; border-radius: 15px; margin-bottom: 25px; border-left: 4px solid #FFD700; }
        .platform-intro h1 { font-size: 1.4rem; color: #FFD700; margin-bottom: 10px; }
        .section-title { font-size: 1.2rem; color: #FFD700; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; display: block; border: 1px solid #333; transition: transform 0.3s; }
        .game-card:hover { transform: translateY(-5px); border-color: #FF6B35; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.9rem; margin-bottom: 4px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 0.75rem; color: #aaa; }
        .payment-licensing { background: #12141a; padding: 20px; border-radius: 15px; margin: 25px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; }
        .payment-icon { width: 100%; filter: grayscale(1); transition: 0.3s; opacity: 0.7; }
        .payment-icon:hover { filter: grayscale(0); opacity: 1; }
        .guidelines { margin: 25px 0; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: #252a34; padding: 15px; border-radius: 12px; }
        .guide-item h2 { font-size: 1.1rem; color: #FFD700; margin-bottom: 8px; }
        .marquee-container { background: #12141a; padding: 15px; overflow: hidden; border-radius: 12px; margin: 25px 0; border: 1px solid #333; }
        .marquee-content { display: flex; flex-direction: column; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #222; font-size: 0.85rem; }
        .winner-val { color: #4CAF50; font-weight: bold; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 25px 0; padding: 15px; background: #252a34; border-radius: 12px; }
        .provider-tag { background: #1a1d24; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; border: 1px solid #444; }
        .reviews-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .review-card { background: #252a34; padding: 15px; border-radius: 12px; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .review-user { display: flex; align-items: center; gap: 8px; font-weight: bold; }
        .stars { color: #FFD700; }
        .review-date { font-size: 0.75rem; color: #888; margin-bottom: 8px; }
        .faq-section { margin: 25px 0; }
        .faq-item { background: #252a34; margin-bottom: 10px; border-radius: 12px; padding: 15px; }
        .faq-item h3 { color: #FFD700; font-size: 1rem; margin-bottom: 8px; }
        .security-section { background: #12141a; border-radius: 15px; padding: 20px; text-align: center; margin: 25px 0; border: 1px dashed #555; }
        .security-badges { display: flex; justify-content: center; gap: 20px; font-size: 2rem; margin-bottom: 15px; color: #FFD700; }
        .security-text { font-size: 0.85rem; color: #aaa; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #333; z-index: 1000; }
        .nav-item { text-align: center; color: #888; font-size: 10px; flex: 1; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; display: block; }
        .nav-item.active { color: #FFD700; }
        footer { background: #12141a; padding: 30px 15px 100px; border-top: 1px solid #333; }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; border-bottom: 1px solid #222; padding-bottom: 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-link { font-size: 0.85rem; color: #aaa; }
        .copyright { font-size: 0.75rem; color: #666; text-align: center; border-top: 1px solid #222; padding-top: 20px; }