* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

        header { background: #1a1d24; border-bottom: 1px solid #2a2e37; position: sticky; top: 0; z-index: 1000; height: 60px; display: flex; align-items: center; }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; 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: #f1c40f; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #ffffff; }
        .btn-register { background: linear-gradient(135deg, #f1c40f, #f39c12); color: #000; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; margin-bottom: 20px; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { background: linear-gradient(45deg, #1a1d24, #2c3e50); padding: 20px; border-radius: 15px; text-align: center; margin: 20px 15px; border: 1px solid #f1c40f; }
        .jackpot-title { color: #f1c40f; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #ffffff; margin: 10px 0; font-family: monospace; }

        .section-title { font-size: 18px; margin: 20px 15px 10px; border-left: 4px solid #f1c40f; padding-left: 10px; }
        .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 #2a2e37; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .intro-card { background: #1a1d24; margin: 25px 15px; padding: 20px; border-radius: 15px; border: 1px solid #2a2e37; }
        .intro-card h1 { font-size: 18px; color: #f1c40f; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #bdc3c7; }

        .guidelines { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; margin: 20px 0; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; text-align: center; font-size: 13px; }
        .guide-item i { font-size: 24px; color: #f1c40f; margin-bottom: 8px; }

        .winning-records { background: #1a1d24; margin: 20px 15px; border-radius: 15px; padding: 15px; height: 300px; overflow-y: auto; border: 1px solid #2a2e37; }
        .winning-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winner-name { color: #f1c40f; }
        .winner-amount { color: #2ecc71; font-weight: bold; }

        .trust-badges { display: flex; justify-content: space-around; padding: 20px 15px; background: #16191f; margin: 20px 0; }
        .badge-item { text-align: center; font-size: 11px; color: #7f8c8d; }
        .badge-item i { font-size: 20px; color: #f1c40f; display: block; margin-bottom: 5px; }

        .comments { padding: 0 15px; margin: 20px 0; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px dotted #2a2e37; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 30px; height: 30px; background: #34495e; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
        .comment-text { font-size: 13px; font-style: italic; color: #ecf0f1; }
        .stars { color: #f1c40f; font-size: 10px; margin-top: 5px; }

        .faq-section { padding: 0 15px; margin: 30px 0; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 10px; padding: 15px; }
        .faq-item h4 { font-size: 15px; color: #f1c40f; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bdc3c7; line-height: 1.6; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2a2e37; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #bdc3c7; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #f1c40f; }

        footer { background: #0b0d11; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-row a { font-size: 13px; color: #7f8c8d; transition: 0.3s; }
        .footer-row a:hover { color: #f1c40f; }
        .copyright { font-size: 12px; color: #5d6d7e; margin-top: 10px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines { grid-template-columns: repeat(3, 1fr); }
        }