* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #f1c40f; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #f1c40f; }
        .btn-register { background: linear-gradient(180deg, #f1c40f 0%, #d4af37 100%); color: #000; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-section { background: radial-gradient(circle at center, #2c3e50 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #34495e; }
        .jackpot-title { color: #f1c40f; font-size: 18px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(241,196,15,0.5); }
        .section-container { padding: 15px; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #f1c40f; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.3s; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ecf0f1; }
        .intro-card { background: linear-gradient(135deg, #1e272e 0%, #2f3640 100%); padding: 20px; border-radius: 15px; margin: 15px; border-bottom: 3px solid #f1c40f; }
        .intro-card h1 { font-size: 18px; color: #f1c40f; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #bdc3c7; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: #f1c40f; font-size: 20px; margin-top: 3px; }
        .guide-text h3 { font-size: 15px; margin-bottom: 5px; color: #fff; }
        .guide-text p { font-size: 13px; color: #95a5a6; }
        .winners-box { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; height: 200px; overflow: hidden; position: relative; }
        .winners-scroll { animation: scrollWinners 30s linear infinite; }
        @keyframes scrollWinners { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2c3e50; font-size: 13px; }
        .winner-name { color: #f1c40f; }
        .winner-amount { color: #2ecc71; font-weight: bold; }
        .platform-features { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 25px; text-align: center; }
        .feature-item { background: #1a1d24; padding: 15px 5px; border-radius: 10px; }
        .feature-item i { font-size: 24px; color: #f1c40f; margin-bottom: 8px; }
        .feature-item span { display: block; font-size: 11px; font-weight: 600; }
        .comments-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 15px; border-left: 3px solid #f1c40f; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-avatar { width: 35px; height: 35px; border-radius: 50%; background: #34495e; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #f1c40f; }
        .comment-meta h4 { font-size: 14px; }
        .comment-rating { color: #f1c40f; font-size: 10px; }
        .comment-body { font-size: 13px; color: #bdc3c7; font-style: italic; }
        .faq-section { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; }
        .faq-item { border-bottom: 1px solid #2c3e50; padding: 12px 0; }
        .faq-item:last-child { border-bottom: none; }
        .faq-question { font-size: 15px; font-weight: 600; color: #f1c40f; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
        .faq-answer { font-size: 13px; color: #bdc3c7; 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 #2c3e50; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #95a5a6; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #f1c40f; }
        footer { background: #0f1217; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2c3e50; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #bdc3c7; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { font-size: 20px; color: #f1c40f; }
        .copyright { font-size: 12px; color: #7f8c8d; }