* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #e0e0e0; 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 #2d323d; 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; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #fff; }
        .header-right { 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: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f1c40f); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1c2028; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #f1c40f; }
        .announcement i { font-size: 14px; }
        .scrolling-text { white-space: nowrap; overflow: hidden; position: relative; width: 100%; }
        .scrolling-text span { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; max-width: 1200px; margin: 0 auto; }
        .section-title { font-size: 18px; margin: 20px 0 15px; padding-left: 10px; border-left: 4px solid #d4af37; display: flex; justify-content: space-between; align-items: center; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: 0.3s; position: relative; }
        .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: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .platform-intro { background: linear-gradient(145deg, #1a1d24, #252a34); padding: 20px; border-radius: 15px; margin: 25px 0; border: 1px solid #333; }
        .platform-intro h1 { font-size: 20px; color: #d4af37; margin-bottom: 12px; line-height: 1.3; }
        .platform-intro p { font-size: 14px; color: #b0b0b0; text-align: justify; }
        .trust-elements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; }
        .trust-item { text-align: center; background: #1a1d24; padding: 12px 5px; border-radius: 10px; font-size: 11px; }
        .trust-item i { font-size: 20px; color: #d4af37; margin-bottom: 5px; display: block; }
        .winners-list { background: #1a1d24; border-radius: 12px; padding: 15px; margin: 20px 0; max-height: 300px; overflow-y: auto; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-name { color: #888; }
        .winner-amount { color: #2ecc71; font-weight: bold; }
        .reviews { margin: 25px 0; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #d4af37; }
        .review-user { font-weight: 600; font-size: 14px; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
        .stars { color: #f1c40f; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b0b0; font-style: italic; }
        .faq-section { margin: 30px 0; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: #d4af37; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0b0b0; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 1001; }
        .nav-item { text-align: center; color: #888; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #888; }
        .copyright { font-size: 12px; color: #555; margin-top: 15px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .section-title { font-size: 24px; }
        }