body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #1a1d24; color: #ffffff; margin: 0; padding: 0; line-height: 1.6; overflow-x: hidden; }
        header { background-color: #252a34; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; 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: #ffca28; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; border: none; font-size: 14px; cursor: pointer; font-weight: 600; text-decoration: none; display: inline-block; }
        .btn-login { background-color: transparent; color: #ffffff; border: 1px solid #ffca28; }
        .btn-register { background-color: #ffca28; color: #1a1d24; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #2c323e; padding: 10px; overflow: hidden; position: relative; display: flex; align-items: center; border-bottom: 1px solid #3d4452; }
        .announcement i { color: #ffca28; margin-right: 10px; }
        .scrolling-text { white-space: nowrap; animation: marquee 25s linear infinite; font-size: 13px; color: #cfd8dc; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #ffca28; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffca28; margin: 15px 0; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; text-decoration: none; color: #ffffff; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { margin: 0; font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; padding: 20px; background: linear-gradient(135deg, #252a34 0%, #1a1d24 100%); border-radius: 15px; border: 1px solid #3d4452; }
        .intro-card h1 { font-size: 20px; color: #ffca28; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #cfd8dc; margin: 0; }
        .trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 15px; text-align: center; }
        .badge-item { background: #252a34; padding: 15px 5px; border-radius: 10px; font-size: 11px; }
        .badge-item i { font-size: 24px; color: #ffca28; display: block; margin-bottom: 8px; }
        .winners-list { margin: 15px; background: #252a34; border-radius: 12px; height: 200px; overflow-y: auto; padding: 10px; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #3d4452; font-size: 12px; }
        .winner-row span:last-child { color: #4caf50; font-weight: bold; }
        .reviews { padding: 15px; }
        .review-card { background: #2c323e; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #ffca28; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
        .stars { color: #ffca28; font-size: 12px; }
        .review-text { font-size: 13px; color: #cfd8dc; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #252a34; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: #ffca28; border-bottom: 1px solid #3d4452; display: flex; align-items: center; gap: 10px; }
        .faq-answer { padding: 15px; font-size: 13px; color: #cfd8dc; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #252a34; display: flex; justify-content: space-around; padding: 10px 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 1000; }
        .nav-item { text-decoration: none; color: #cfd8dc; display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item:last-child { color: #ffca28; }
        footer { background: #16191f; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #3d4452; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #cfd8dc; text-decoration: none; font-size: 13px; }
        .copyright { color: #90a4ae; font-size: 12px; margin-top: 20px; }