* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1218; color: #e0e0e0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background-color: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 18px; font-weight: normal; color: #fff; letter-spacing: 1px; }
        .header-right { 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: #cba35c; border: 1px solid #cba35c; }
        .btn-register { background: linear-gradient(135deg, #cba35c, #b08d4a); color: #000; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box { margin: 15px; background: linear-gradient(135deg, #252a34, #1a1d24); border-radius: 12px; padding: 20px; text-align: center; border: 1px solid #3d4452; box-shadow: 0 4px 15px rgba(0,0,0,0.4); }
        .jackpot-title { color: #cba35c; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(203, 163, 92, 0.5); }
        .section-title { margin: 20px 15px 10px; font-size: 18px; color: #fff; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: #cba35c; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; color: #ccc; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; background: #1a1d24; padding: 20px; border-radius: 12px; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 20px; color: #cba35c; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a0a0; text-align: justify; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 0 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; border-left: 3px solid #cba35c; }
        .guide-item h3 { font-size: 15px; color: #fff; margin-bottom: 5px; }
        .guide-item p { font-size: 13px; color: #888; }
        .winners-box { margin: 20px 15px; background: #1a1d24; border-radius: 12px; height: 250px; overflow: hidden; border: 1px solid #2d323d; }
        .winners-title { padding: 10px; background: #252a34; font-size: 14px; color: #cba35c; font-weight: bold; text-align: center; }
        .winners-list { padding: 10px; animation: scrollList 40s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323d; font-size: 12px; }
        .winner-name { color: #fff; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 15px; background: #1a1d24; margin-top: 20px; text-align: center; }
        .trust-item i { font-size: 24px; color: #cba35c; margin-bottom: 8px; }
        .trust-item span { display: block; font-size: 11px; color: #888; }
        .comments { padding: 0 15px; margin: 20px 0; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2d323d; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user i { font-size: 20px; color: #888; }
        .user-meta { font-size: 13px; font-weight: bold; color: #fff; }
        .comment-stars { color: #ffc107; font-size: 10px; }
        .comment-text { font-size: 13px; color: #aaa; font-style: italic; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 8px; overflow: hidden; border: 1px solid #2d323d; }
        .faq-q { padding: 12px 15px; font-size: 14px; color: #fff; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-a { padding: 0 15px 15px; font-size: 13px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 60px; background: #1a1d24; 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; color: #888; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        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-link { color: #888; font-size: 13px; }
        .copyright { font-size: 12px; color: #555; margin-top: 10px; }