* { 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; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #1a1d24; border-bottom: 1px solid #333; height: 60px; position: sticky; top: 0; z-index: 1000; }
        .header-content { display: flex; justify-content: space-between; align-items: center; height: 100%; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: bold; border: none; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background: transparent; border: 1px solid #FFD700; color: #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #fff; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2 / 1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { margin: 20px 0; background: #252932; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 18px; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; background: linear-gradient(180deg, #FFD700, #FFA500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: monospace; }
        .platform-intro { margin: 20px 0; padding: 20px; background: #252932; border-radius: 15px; }
        .platform-intro h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .platform-intro p { font-size: 14px; color: #cccccc; }
        .section-title { font-size: 18px; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid #FF2E63; color: #FFD700; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; border: 1px solid #333; display: block; }
        .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; }
        .trust-section { background: #252932; padding: 20px; border-radius: 15px; margin: 20px 0; }
        .trust-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; justify-items: center; }
        .trust-icons i { font-size: 30px; color: #888; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .guideline-card { background: #252932; padding: 15px; border-radius: 12px; border: 1px solid #333; }
        .guideline-card h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guideline-card p { font-size: 13px; color: #bbb; }
        .marquee-container { background: #000; 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: scrollMarquee 40s linear infinite; }
        .winner-item { display: inline-block; margin-right: 30px; font-size: 13px; }
        .winner-name { color: #FFD700; }
        .winner-amount { color: #00FF00; font-weight: bold; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 15px; background: #252932; border-radius: 12px; }
        .provider-tag { background: #333; padding: 5px 12px; border-radius: 5px; font-size: 12px; color: #ddd; }
        .reviews-grid { display: flex; flex-direction: column; gap: 15px; margin: 20px 0; }
        .review-card { background: #252932; 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; }
        .review-date { font-size: 11px; color: #777; margin-left: auto; }
        .stars { color: #FFD700; font-size: 12px; margin-bottom: 8px; }
        .review-content { font-size: 13px; color: #ccc; }
        .faq-section { margin: 20px 0; }
        .faq-item { background: #252932; margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: bold; font-size: 14px; color: #FFD700; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #bbb; display: block; }
        .security-section { text-align: center; padding: 30px 15px; background: #111; border-radius: 15px; margin: 20px 0; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #888; }
        .age-limit { display: inline-block; border: 2px solid #FF2E63; color: #FF2E63; border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; margin-bottom: 10px; }
        .security-text { font-size: 12px; color: #777; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #252932; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #444; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10px; color: #aaa; }
        .nav-item i { font-size: 18px; }
        footer { padding: 30px 15px; background: #0d0f13; border-top: 1px solid #333; }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contact a { font-size: 13px; color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: center; }
        .footer-links a { font-size: 12px; color: #888; }
        .footer-copyright { text-align: center; font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }