* { 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; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #11141a; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .header-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: #fff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #fff; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #252932; margin: 15px 0; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; position: relative; overflow: hidden; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255,215,0,0.5); font-family: monospace; }
        .platform-intro { padding: 20px 0; text-align: center; }
        .platform-intro h1 { font-size: 22px; color: #FFD700; margin-bottom: 15px; line-height: 1.3; }
        .platform-intro p { font-size: 14px; color: #ccc; }
        .section-title { font-size: 20px; color: #FFD700; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid #FF2E63; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: 0.3s; 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: 11px; color: #888; text-transform: uppercase; }
        .payment-methods { background: #252932; padding: 20px; border-radius: 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; justify-items: center; }
        .payment-methods i { font-size: 30px; color: #aaa; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .guide-item { background: #252932; padding: 15px; border-radius: 12px; border-bottom: 2px solid #FFD700; }
        .guide-item h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: #bbb; }
        .winners-marquee { background: #11141a; padding: 10px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; gap: 8px; background: #252932; padding: 5px 15px; border-radius: 20px; margin-right: 20px; font-size: 13px; border: 1px solid #444; }
        .winner-tag span { color: #FFD700; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 20px 0; }
        .provider-tag { background: #252932; padding: 8px 15px; border-radius: 5px; font-size: 12px; color: #ddd; border: 1px solid #444; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .review-card { background: #252932; padding: 15px; border-radius: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #FFD700; }
        .user-name { font-weight: bold; font-size: 15px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #777; margin-bottom: 8px; }
        .review-content { font-size: 13px; color: #ccc; }
        .faq-section { margin: 30px 0; }
        .faq-item { background: #252932; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #FFD700; font-size: 15px; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: #bbb; }
        .security-section { background: #11141a; padding: 25px; border-radius: 15px; text-align: center; margin-top: 30px; }
        .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; width: 100%; background: #11141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item:hover, .nav-item.active { color: #FFD700; }
        footer { background: #0b0d11; padding: 40px 15px 100px; text-align: center; }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contact a { font-size: 14px; 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-copy { font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }