* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; border-radius: 8px; }
        .container { padding: 0 15px; width: 100%; max-width: 1200px; margin: 0 auto; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        .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; letter-spacing: 0.5px; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffd700; border: 1px solid #ffd700; }
        .btn-register { background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; margin-bottom: 20px; }
        .banner img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
        .jackpot-section { background: radial-gradient(circle, #2d323d 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #ffd70044; }
        .jackpot-title { color: #ffd700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px #ffd700; font-family: monospace; }
        .section-title { padding: 15px; display: flex; align-items: center; gap: 10px; font-size: 18px; color: #ffd700; }
        .section-title i { font-size: 20px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px 12px 0 0; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 25px; border-radius: 15px; border-left: 4px solid #ffd700; }
        .intro-card h1 { font-size: 20px; margin-bottom: 15px; color: #ffd700; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: #ffd700; font-size: 20px; margin-top: 3px; }
        .guide-item h3 { font-size: 16px; margin-bottom: 5px; color: #ffffff; }
        .guide-item p { font-size: 13px; color: #b0b3b8; }
        .winners-box { background: #1a1d24; margin: 15px; border-radius: 15px; padding: 15px; overflow: hidden; height: 300px; position: relative; }
        .winners-list { animation: scrollList 30s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-name { color: #ffd700; }
        .winner-amount { color: #00ff00; font-weight: bold; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 15px; background: #1a1d24; margin: 15px; border-radius: 15px; }
        .badge { text-align: center; font-size: 10px; color: #b0b3b8; }
        .badge i { font-size: 24px; color: #ffd700; margin-bottom: 5px; display: block; }
        .reviews { padding: 15px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .reviewer { font-weight: 600; font-size: 14px; color: #ffd700; }
        .rating { color: #ffd700; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b3b8; font-style: italic; }
        .faqs { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 12px; margin-bottom: 10px; padding: 15px; border: 1px solid #2d323d; }
        .faq-item h3 { font-size: 15px; color: #ffd700; margin-bottom: 10px; }
        .faq-item p { font-size: 13px; color: #b0b3b8; text-align: justify; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1000; }
        .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: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-row a { font-size: 13px; color: #b0b3b8; }
        .footer-row a:hover { color: #ffd700; }
        .copyright { font-size: 12px; color: #666; margin-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines { grid-template-columns: 1fr 1fr; }
        }