* { 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: #111419; padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; gap: 10px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 5px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 8px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(45deg, #FF6B35, #FF2E63); color: #ffffff; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-sec { background: #242933; margin: 20px 0; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; position: relative; overflow: hidden; }
        .jackpot-sec::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #FFD700, transparent); }
        .jackpot-label { font-size: 14px; color: #FFD700; text-transform: uppercase; font-weight: bold; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .intro-card { background: #242933; padding: 20px; border-radius: 15px; margin-bottom: 25px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #cccccc; }
        .section-title { font-size: 18px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; border-left: 3px solid #FF2E63; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #242933; border-radius: 12px; overflow: hidden; transition: transform 0.3s; border: 1px solid #2d323d; }
        .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; }
        .game-info span { font-size: 11px; color: #888; display: block; }
        .methods-sec { background: #111419; padding: 20px; border-radius: 15px; margin: 25px 0; }
        .methods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; justify-items: center; opacity: 0.8; }
        .methods-grid i { font-size: 24px; color: #FFD700; }
        .methods-grid span { font-size: 10px; text-align: center; display: block; margin-top: 5px; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #242933; padding: 15px; border-radius: 12px; border-top: 2px solid #FF6B35; }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .guide-item p { font-size: 13px; color: #bbb; }
        .winners-marquee { background: #111419; padding: 15px 0; margin: 25px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; animation: marquee 40s linear infinite; gap: 20px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { white-space: nowrap; background: #242933; padding: 8px 15px; border-radius: 30px; border: 1px solid #3d4452; display: flex; align-items: center; gap: 10px; font-size: 12px; }
        .winner-tag b { color: #00ff88; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 20px; background: #111419; border-radius: 15px; }
        .provider-item { background: #242933; padding: 8px 15px; border-radius: 8px; font-size: 12px; border: 1px solid #2d323d; color: #FFD700; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .review-card { background: #242933; padding: 15px; border-radius: 15px; position: relative; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 30px; color: #FFD700; }
        .review-meta h3 { font-size: 14px; margin-bottom: 2px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { position: absolute; top: 15px; right: 15px; font-size: 11px; color: #666; }
        .review-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-sec { background: #111419; padding: 20px; border-radius: 15px; margin: 25px 0; }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid #2d323d; padding-bottom: 15px; }
        .faq-item:last-child { border-bottom: none; }
        .faq-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; }
        .security-sec { text-align: center; padding: 25px; background: #242933; border-radius: 15px; margin-bottom: 30px; border: 1px solid #FF2E63; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-sec p { font-size: 12px; color: #aaa; margin-bottom: 10px; }
        .security-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .security-links a { font-size: 11px; color: #FF6B35; text-decoration: underline; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #111419; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) i { color: #FFD700; font-size: 24px; margin-top: -15px; background: #1a1d24; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #FFD700; }
        footer { background: #0c0e12; padding: 30px 15px 100px; text-align: center; }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        .footer-contact a { font-size: 13px; color: #FFD700; border: 1px solid #3d4452; padding: 5px 12px; border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: left; }
        .footer-links a { font-size: 12px; color: #888; }
        .copyright { font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }