* { 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: #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 #333; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 5px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #e3b12f; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #e3b12f; border: 1px solid #e3b12f; }
        .btn-register { background: linear-gradient(135deg, #e3b12f, #f9e281); color: #1a1d24; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; overflow: hidden; white-space: nowrap; border-bottom: 1px solid #333; }
        .announcement i { color: #e3b12f; }
        .scroll-text { 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: 10px; color: #e3b12f; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2a2e37; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; font-weight: 500; }
        .intro-card { background: linear-gradient(145deg, #1a1d24, #252a34); border-radius: 15px; padding: 20px; border: 1px solid #e3b12f44; margin: 25px 0; }
        .intro-card h1 { font-size: 18px; color: #e3b12f; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b3b8; text-align: justify; }
        .trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 25px 0; text-align: center; }
        .badge-item { background: #1a1d24; padding: 10px; border-radius: 10px; font-size: 11px; color: #e3b12f; border: 1px solid #333; }
        .badge-item i { font-size: 20px; margin-bottom: 5px; display: block; }
        .winner-panel { background: #1a1d24; border-radius: 12px; padding: 15px; margin: 25px 0; border: 1px solid #2a2e37; }
        .winner-list { max-height: 200px; overflow-y: auto; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #333; font-size: 13px; }
        .winner-item span:last-child { color: #4caf50; font-weight: bold; }
        .reviews { margin: 25px 0; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 12px; border-left: 4px solid #e3b12f; }
        .review-user { font-weight: bold; font-size: 14px; margin-bottom: 5px; display: flex; justify-content: space-between; }
        .stars { color: #e3b12f; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b3b8; font-style: italic; }
        .faq-section { margin: 25px 0; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: bold; font-size: 14px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; }
        .faq-answer { padding: 15px; font-size: 13px; color: #b0b3b8; display: block; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 60px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #b0b3b8; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item:hover { color: #e3b12f; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-link { color: #b0b3b8; font-size: 12px; transition: 0.3s; }
        .footer-link:hover { color: #e3b12f; }
        .copyright { font-size: 11px; color: #666; margin-top: 15px; }