* { 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-color: #12141a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .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; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: bold; font-size: 14px; cursor: pointer; border: none; 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(90deg, #FF6B35, #FF2E63); color: #fff; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .container { max-width: 1200px; margin: 0 auto; padding: 15px; }
        .jackpot-section { background: radial-gradient(circle, #2a2e38 0%, #12141a 100%); padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; margin-bottom: 20px; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .intro-card { background: #232730; padding: 20px; border-radius: 15px; margin-bottom: 25px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }
        .section-title { font-size: 18px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; color: #FFD700; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: #FF2E63; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #232730; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2a2e38; }
        .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; color: #fff; }
        .game-provider { font-size: 11px; color: #888; text-transform: uppercase; }
        .methods-box { background: #232730; padding: 20px; border-radius: 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .method-item { width: 60px; height: 35px; background: #fff; border-radius: 4px; display: flex; align-items: center; justify-content: center; padding: 5px; opacity: 0.9; }
        .method-item i { color: #1a1d24; font-size: 20px; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #232730; padding: 15px; border-radius: 12px; border: 1px solid #2a2e38; }
        .guide-item h3 { color: #FFD700; font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #b0b3b8; }
        .marquee-box { background: #12141a; padding: 10px 0; overflow: hidden; border-top: 1px solid #2a2e38; border-bottom: 1px solid #2a2e38; margin: 20px 0; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-item { white-space: nowrap; font-size: 13px; display: flex; gap: 8px; align-items: center; }
        .winner-name { color: #FFD700; }
        .winner-amount { color: #4CAF50; font-weight: bold; }
        .providers-wall { background: #232730; padding: 20px; border-radius: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 25px; }
        .provider-badge { padding: 6px 12px; background: #1a1d24; border: 1px solid #2a2e38; border-radius: 20px; font-size: 12px; color: #b0b3b8; }
        .reviews { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .review-card { background: #232730; padding: 15px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #FFD700; }
        .review-user { font-weight: bold; font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; margin-left: auto; }
        .faq-list { margin-bottom: 25px; }
        .faq-item { background: #232730; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: bold; display: flex; justify-content: space-between; font-size: 15px; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: #b0b3b8; }
        .responsible-box { background: #12141a; padding: 20px; border-radius: 15px; text-align: center; border: 1px dashed #444; }
        .responsible-box i { font-size: 30px; color: #FF2E63; margin-bottom: 10px; }
        .age-badge { display: inline-block; padding: 2px 8px; border: 2px solid #FF2E63; border-radius: 50%; color: #FF2E63; font-weight: bold; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #b0b3b8; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0d0f13; padding: 30px 15px 100px; text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .social-link { color: #b0b3b8; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; text-align: left; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: #666; display: block; margin-bottom: 5px; }
        .copyright { font-size: 12px; color: #444; border-top: 1px solid #222; padding-top: 20px; }