* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1216; 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: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .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: #fff; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffc107; border: 1px solid #ffc107; }
        .btn-register { background: linear-gradient(135deg, #ffc107, #ff9800); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #232730; padding: 8px 15px; display: flex; align-items: center; gap: 10px; overflow: hidden; }
        .announcement i { color: #ffc107; }
        .marquee { white-space: nowrap; overflow: hidden; position: relative; flex: 1; }
        .marquee span { display: inline-block; padding-left: 100%; animation: marquee 20s linear infinite; font-size: 14px; }
        @keyframes marquee { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
        .container { padding: 15px; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffc107; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2d323d; }
        .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: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: linear-gradient(145deg, #1a1d24, #232730); border-radius: 15px; padding: 20px; margin: 20px 0; border: 1px solid #333; }
        .intro-card h1 { font-size: 1.4rem; color: #ffc107; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: #b0b0b0; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 0; background: #16191f; margin: 20px -15px; }
        .trust-item { text-align: center; font-size: 12px; color: #888; }
        .trust-item i { font-size: 24px; color: #ffc107; display: block; margin-bottom: 5px; }
        .winners-list { background: #1a1d24; border-radius: 15px; padding: 15px; height: 300px; overflow-y: auto; border: 1px solid #2d323d; }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #262a33; font-size: 13px; }
        .winner-id { color: #fff; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .reviews-container { margin: 20px 0; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 10px; border: 1px solid #2d323d; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: 600; color: #ffc107; font-size: 14px; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-content { font-size: 13px; color: #b0b0b0; font-style: italic; }
        .faq-section { margin-top: 30px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; color: #fff; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: #b0b0b0; }
        .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; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-align: center; color: #888; font-size: 11px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #ffc107; }
        footer { background: #111; padding: 30px 15px 100px; text-align: center; color: #666; font-size: 13px; }
        .footer-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-row a { color: #888; transition: color 0.2s; }
        .footer-row a:hover { color: #ffc107; }
        .copyright { margin-top: 20px; border-top: 1px solid #222; padding-top: 15px; font-size: 12px; }