* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
        body { 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; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #11141a; padding: 10px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #ffffff; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2 / 1; background: #252a34; cursor: pointer; border-radius: 0 0 15px 15px; overflow: hidden; }
        .jackpot-box { margin: 20px 0; background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); padding: 20px; border-radius: 15px; text-align: center; border: 1px solid rgba(255, 215, 0, 0.3); }
        .jackpot-title { color: #FFD700; font-size: 14px; font-weight: bold; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 15px rgba(255, 215, 0, 0.6); font-variant-numeric: tabular-nums; }
        .intro-card { background: #252a34; padding: 25px; border-radius: 15px; margin: 20px 0; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 22px; color: #FFD700; margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { font-size: 15px; color: #cccccc; }
        .section-title { font-size: 20px; color: #ffffff; margin: 30px 0 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: #FF2E63; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; transition: transform 0.3s; position: relative; border: 1px solid rgba(255,255,255,0.05); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .game-info p { font-size: 12px; color: #888; }
        .methods-section { background: #11141a; padding: 25px; border-radius: 15px; margin: 30px 0; }
        .methods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; justify-items: center; opacity: 0.8; }
        .methods-grid i { font-size: 24px; color: #FFD700; }
        .methods-grid img { width: 50px; filter: grayscale(1); }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guideline-item { background: #252a34; padding: 20px; border-radius: 15px; font-size: 14px; color: #bbb; border: 1px solid rgba(255,255,255,0.05); }
        .guideline-item h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .marquee-container { background: #11141a; padding: 15px 0; margin: 30px 0; overflow: hidden; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: flex; animation: marquee 40s linear infinite; gap: 30px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { white-space: nowrap; font-size: 13px; color: #FFD700; background: rgba(255,215,0,0.1); padding: 5px 15px; border-radius: 20px; border: 1px solid rgba(255,215,0,0.2); }
        .winner-tag span { color: #fff; margin-left: 8px; }
        .providers-wall { background: #252a34; padding: 20px; border-radius: 15px; text-align: center; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; color: #888; font-weight: bold; font-size: 14px; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
        .review-card { background: #252a34; padding: 20px; border-radius: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-header i { font-size: 30px; color: #FFD700; }
        .review-user { font-weight: bold; font-size: 15px; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 12px; color: #666; margin-top: 5px; }
        .review-content { font-size: 14px; color: #ccc; font-style: italic; }
        .faq-section { margin: 40px 0; }
        .faq-item { background: #252a34; border-radius: 12px; padding: 15px; margin-bottom: 10px; border: 1px solid rgba(255,255,255,0.05); }
        .faq-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: #bbb; }
        .security-section { background: linear-gradient(135deg, #1a1d24 0%, #11141a 100%); padding: 30px 20px; border-radius: 15px; text-align: center; margin: 40px 0; border: 1px dashed #444; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 24px; color: #4CAF50; }
        .security-text { font-size: 13px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #11141a; 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; font-size: 11px; color: #888; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: #FF2E63; }
        footer { background: #0c0e12; padding: 40px 20px 100px; }
        .footer-contacts { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contacts a { font-size: 14px; color: #FFD700; border: 1px solid #FFD700; padding: 5px 15px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; border-top: 1px solid #222; padding-top: 30px; }
        .footer-links a { font-size: 13px; color: #888; }
        .copyright { text-align: center; font-size: 12px; color: #555; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines-grid { grid-template-columns: repeat(2, 1fr); }
            .reviews-grid { grid-template-columns: repeat(2, 1fr); }
        }