body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #ffffff; margin: 0; padding-bottom: 70px; line-height: 1.6; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; text-decoration: none; color: #fff; }
        .header-left img { width: 25px; height: 25px; margin-right: 8px; }
        .header-left strong { font-size: 16px; font-weight: normal; }
        .header-right .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; text-decoration: none; border: none; cursor: pointer; font-weight: 600; margin-left: 8px; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #d4af37; color: #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e29b); color: #1a1d24; }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner { position: relative; width: 100%; padding-bottom: 50%; border-radius: 12px; overflow: hidden; cursor: pointer; margin-bottom: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .banner img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box { background: radial-gradient(circle, #2c0000 0%, #000000 100%); border: 2px solid #d4af37; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
        .jackpot-label { color: #d4af37; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 36px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #ff0000; margin: 10px 0; }
        .section-title { font-size: 18px; margin: 20px 0 15px; padding-left: 10px; border-left: 4px solid #d4af37; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.2s; border: 1px solid #2a2d34; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; margin: 0; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1e222a; border-radius: 15px; padding: 20px; margin: 20px 0; border: 1px solid #333; }
        .intro-card h1 { font-size: 1.2rem; color: #d4af37; margin-bottom: 10px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #ccc; margin: 0; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 20px 0; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; display: flex; align-items: flex-start; border: 1px solid #2a2d34; }
        .guide-item i { color: #d4af37; margin-right: 15px; font-size: 20px; }
        .guide-item h4 { margin: 0 0 5px; font-size: 15px; color: #fff; }
        .guide-item p { margin: 0; font-size: 13px; color: #aaa; }
        .winning-ticker { background: #1a1d24; border-radius: 12px; padding: 15px; margin: 20px 0; height: 200px; overflow-y: hidden; position: relative; }
        .ticker-list { animation: ticker-scroll 30s linear infinite; }
        .ticker-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2d34; font-size: 13px; }
        .ticker-item .user { color: #d4af37; }
        .ticker-item .amount { color: #4caf50; font-weight: bold; }
        @keyframes ticker-scroll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; text-align: center; }
        .feature-item { padding: 10px; background: #1a1d24; border-radius: 10px; }
        .feature-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; }
        .feature-item span { display: block; font-size: 11px; color: #eee; }
        .reviews { margin: 20px 0; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2a2d34; }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .stars { color: #d4af37; font-size: 12px; }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { margin: 20px 0; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; padding: 15px; border-left: 3px solid #d4af37; }
        .faq-item h3 { font-size: 15px; margin: 0 0 10px; color: #fff; }
        .faq-item p { font-size: 13px; margin: 0; color: #aaa; text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: #888; font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #111; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #222; }
        .footer-links { margin-bottom: 20px; }
        .footer-links a { color: #888; text-decoration: none; margin: 0 10px; font-size: 13px; }
        .footer-social { margin-bottom: 20px; }
        .footer-social a { color: #fff; font-size: 20px; margin: 0 15px; }
        .footer-copyright { color: #555; font-size: 12px; }