* { 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; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2d323e; 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: #f1c40f; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 8px; }
        .btn-login, .btn-reg { padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #f1c40f; }
        .btn-reg { background: linear-gradient(135deg, #f1c40f, #e67e22); color: #1a1d24; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #161920; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; border-bottom: 1px solid #2d323e; }
        .announcement i { color: #f1c40f; }
        .scrolling-text { white-space: nowrap; overflow: hidden; position: relative; flex: 1; }
        .scrolling-text span { display: inline-block; animation: scroll-left 20s linear infinite; }
        @keyframes scroll-left { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .container { padding: 15px; }
        h2 { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; color: #f1c40f; }
        h2::before { content: ""; display: inline-block; width: 4px; height: 18px; background: #f1c40f; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1e232b; border-radius: 12px; overflow: hidden; transition: 0.3s; border: 1px solid #2d323e; }
        .game-card img { width: 100%; height: auto; display: block; }
        .game-info { padding: 10px; text-align: center; font-size: 13px; font-weight: 500; }
        .intro-section { background: #1a1d24; padding: 20px; border-radius: 15px; margin-bottom: 25px; border: 1px solid #2d323e; }
        .intro-section h1 { font-size: 20px; margin-bottom: 12px; color: #f1c40f; }
        .intro-section p { font-size: 14px; color: #b0b0b0; margin-bottom: 10px; }
        .winners-box { background: #161920; border-radius: 15px; padding: 15px; margin-bottom: 25px; max-height: 300px; overflow-y: auto; border: 1px solid #2d323e; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winner-name { color: #b0b0b0; }
        .winner-amount { color: #2ecc71; font-weight: bold; }
        .reviews-section { margin-bottom: 25px; }
        .review-card { background: #1e232b; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2d323e; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-name { font-weight: 600; font-size: 14px; }
        .review-stars { color: #f1c40f; font-size: 12px; }
        .review-content { font-size: 13px; color: #b0b0b0; font-style: italic; }
        .faq-section { background: #1a1d24; border-radius: 15px; padding: 20px; margin-bottom: 25px; border: 1px solid #2d323e; }
        .faq-item { margin-bottom: 15px; }
        .faq-question { font-weight: 600; font-size: 15px; color: #f1c40f; margin-bottom: 5px; }
        .faq-answer { font-size: 14px; color: #b0b0b0; }
        .features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .feature-item { background: #1e232b; padding: 15px; border-radius: 12px; text-align: center; border: 1px solid #2d323e; }
        .feature-item i { font-size: 24px; color: #f1c40f; margin-bottom: 8px; }
        .feature-item div { font-size: 12px; font-weight: 600; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #b0b0b0; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #f1c40f; }
        footer { background: #161920; padding: 30px 15px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-links a { font-size: 13px; color: #b0b0b0; }
        .footer-copyright { font-size: 12px; color: #666; margin-top: 15px; }