* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1116; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        .container { width: 100%; max-width: 600px; margin: 0 auto; padding: 0 15px; }
        header { background: #1a1d24; padding: 10px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; padding: 0 15px; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #ffc107; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #ffc107; color: #ffc107; }
        .btn-register { background: linear-gradient(180deg, #ffde59 0%, #ff9100 100%); color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; border-radius: 12px; overflow: hidden; margin: 15px 0; }
        .banner img { width: 100%; aspect-ratio: 2/1; display: block; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2c3e50 0%, #000000 100%); border: 2px solid #ffc107; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
        .jackpot-title { color: #ffc107; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255,193,7,0.8); font-family: monospace; }
        .section-header { display: flex; align-items: center; gap: 10px; margin: 20px 0 15px; }
        .section-header h2 { font-size: 18px; border-left: 4px solid #ffc107; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e38; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 12px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 20px 0; border-bottom: 3px solid #ffc107; }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: #ffc107; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 20px 0; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: #ffc107; font-size: 20px; }
        .guide-content h3 { font-size: 15px; margin-bottom: 5px; }
        .guide-content p { font-size: 13px; color: #999; }
        .winning-records { background: #1a1d24; border-radius: 15px; padding: 15px; margin: 20px 0; height: 250px; overflow-y: hidden; position: relative; }
        .winning-scroll { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e38; font-size: 12px; }
        .win-user { color: #ffc107; }
        .win-amt { color: #4caf50; font-weight: bold; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 0; filter: grayscale(1); opacity: 0.6; }
        .trust-badges i { font-size: 30px; }
        .comments-section { margin: 20px 0; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 3px solid #ffc107; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
        .user-name { font-weight: bold; }
        .stars { color: #ffc107; }
        .comment-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { margin: 20px 0; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
        .faq-q { padding: 12px 15px; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2a2e38; }
        .faq-a { padding: 15px; font-size: 13px; color: #bbb; background: #14171c; }
        .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; color: #999; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        footer { background: #08090b; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .foot-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .foot-links a { font-size: 13px; color: #999; }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; }