* { 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; }
        header { background: linear-gradient(180deg, #1e222d 0%, #1a1d24 100%); padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; display: flex; align-items: center; justify-content: space-between; }
        .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: #ffd700; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffd700; border: 1px solid #ffd700; }
        .btn-register { background: linear-gradient(90deg, #ffd700, #ffae00); color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #333; }
        .announcement i { color: #ffd700; }
        .marquee { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee p { display: inline-block; animation: scroll 20s linear infinite; font-size: 13px; color: #ccc; }
        @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; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffd700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1e222d; border-radius: 12px; overflow: hidden; border: 1px solid #2a2f3a; transition: 0.3s; }
        .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: #eee; }
        .intro-card { background: linear-gradient(135deg, #1e222d 0%, #14171e 100%); border-radius: 15px; padding: 20px; margin: 25px 0; border: 1px solid #3d3410; position: relative; }
        .intro-card h1 { font-size: 20px; color: #ffd700; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #aaa; text-align: justify; }
        .winners-list { background: #1e222d; 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 #2a2f3a; font-size: 13px; }
        .winner-item span:first-child { color: #ccc; }
        .winner-item span:last-child { color: #4caf50; font-weight: bold; }
        .trust-elements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 25px 0; text-align: center; }
        .trust-item { background: #1e222d; padding: 15px 5px; border-radius: 10px; border: 1px solid #2a2f3a; }
        .trust-item i { font-size: 24px; color: #ffd700; margin-bottom: 8px; }
        .trust-item span { display: block; font-size: 11px; color: #eee; }
        .reviews-section { margin: 25px 0; }
        .review-card { background: #1e222d; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #ffd700; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: bold; font-size: 14px; color: #ffd700; }
        .stars { color: #ffae00; font-size: 12px; }
        .review-body { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { margin: 25px 0; }
        .faq-item { background: #1e222d; border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: #ffd700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #aaa; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 90px; text-align: center; border-top: 1px solid #222; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #888; transition: 0.3s; }
        .footer-links a:hover { color: #ffd700; }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .trust-elements { grid-template-columns: repeat(6, 1fr); }
        }