* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1218; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2d323e; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f0c05a; }
        .header-right { 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: #f0c05a; border: 1px solid #f0c05a; }
        .btn-register { background: linear-gradient(135deg, #f0c05a, #d4a017); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #3a1c1c 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #4a2a2a; }
        .jackpot-title { color: #f0c05a; font-size: 18px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #fff; text-shadow: 0 0 10px rgba(240,192,90,0.5); margin: 10px 0; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; display: flex; align-items: center; gap: 8px; color: #f0c05a; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ccc; }
        .intro-card { margin: 15px; padding: 20px; background: #1a1d24; border-radius: 15px; border-left: 4px solid #f0c05a; }
        .intro-card h1 { font-size: 18px; color: #f0c05a; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a6b1; }
        .guidelines { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 10px; }
        .guide-item { background: #1e222a; padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 12px; border: 1px solid #2d323e; }
        .guide-item i { color: #f0c05a; font-size: 20px; }
        .winning-records { margin: 15px; background: #1a1d24; border-radius: 15px; padding: 15px; height: 200px; overflow-y: auto; border: 1px solid #2d323e; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winner-name { color: #a0a6b1; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 15px; opacity: 0.7; }
        .trust-badges i { font-size: 24px; color: #f0c05a; }
        .comments-section { padding: 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2d323e; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user img { width: 35px; height: 35px; border-radius: 50%; background: #2d323e; }
        .comment-name { font-weight: bold; font-size: 14px; }
        .comment-stars { color: #f0c05a; font-size: 12px; }
        .comment-text { font-size: 13px; color: #a0a6b1; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 10px; padding: 15px; border: 1px solid #2d323e; }
        .faq-item h3 { font-size: 15px; color: #f0c05a; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #a0a6b1; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #a0a6b1; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #f0c05a; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: #666; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-links a { color: #a0a6b1; }
        .copyright { margin-top: 20px; border-top: 1px solid #222; padding-top: 20px; }