* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1216; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        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: 16px; font-weight: normal; color: #f3ba2f; }
        .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; text-decoration: none; display: inline-block; }
        .btn-login { background-color: transparent; color: #f3ba2f; border: 1px solid #f3ba2f; }
        .btn-register { background-color: #f3ba2f; color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: linear-gradient(135deg, #1a1d24 0%, #2d323d 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #3d4452; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .jackpot-title { color: #f3ba2f; font-size: 14px; 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(243,186,47,0.5); }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #f3ba2f; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background-color: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #2d323d; display: block; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info span { color: #fff; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #f3ba2f; }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: #f3ba2f; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0aabb; }
        .guidelines { padding: 15px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; text-align: center; }
        .guide-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 8px; }
        .guide-item h3 { font-size: 14px; margin-bottom: 5px; }
        .winning-list { margin: 15px; background: #1a1d24; border-radius: 15px; height: 200px; overflow-y: auto; padding: 10px; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winning-user { color: #a0aabb; }
        .winning-amount { color: #4caf50; font-weight: bold; }
        .casino-features { padding: 15px; display: flex; flex-direction: column; gap: 10px; }
        .feature-box { display: flex; align-items: center; gap: 15px; background: #1a1d24; padding: 15px; border-radius: 12px; }
        .feature-box i { font-size: 20px; color: #f3ba2f; width: 30px; text-align: center; }
        .comments-section { padding: 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 5px; }
        .comment-name { font-weight: bold; font-size: 14px; }
        .stars { color: #f3ba2f; font-size: 12px; }
        .comment-text { font-size: 13px; color: #a0aabb; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; color: #f3ba2f; border-bottom: 1px solid #2d323d; }
        .faq-answer { padding: 15px; font-size: 13px; color: #a0aabb; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { text-decoration: none; color: #a0aabb; display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0a0c0f; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-link { color: #a0aabb; text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: #616e85; margin-top: 20px; }