body { margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #e0e0e0; line-height: 1.6; overflow-x: hidden; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; 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; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffd700; border: 1px solid #ffd700; }
        .btn-register { background: linear-gradient(135deg, #ffd700, #b8860b); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #232730; padding: 10px; display: flex; align-items: center; gap: 10px; overflow: hidden; border-bottom: 1px solid #333; }
        .announcement i { color: #ffd700; }
        .marquee { white-space: nowrap; animation: scroll 20s linear infinite; font-size: 13px; color: #bbb; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; padding-bottom: 80px; max-width: 1200px; margin: 0 auto; }
        .section-title { font-size: 1.2rem; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffd700; padding-left: 10px; color: #fff; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s; border: 1px solid #2d323d; display: block; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info span { font-size: 13px; font-weight: 500; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #f0f0f0; }
        .intro-content { background: #1a1d24; padding: 20px; border-radius: 15px; margin-bottom: 25px; border: 1px solid #2d323d; }
        .intro-content h1 { font-size: 1.5rem; color: #ffd700; margin-top: 0; }
        .intro-content p { font-size: 14px; color: #ccc; }
        .winners-box { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; border: 1px solid #2d323d; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #232730; font-size: 13px; }
        .winner-item:last-child { border: none; }
        .winner-name { color: #ffd700; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 0; margin-bottom: 25px; }
        .badge-item { text-align: center; font-size: 11px; color: #888; flex: 1; }
        .badge-item i { font-size: 24px; color: #ffd700; margin-bottom: 5px; display: block; }
        .reviews { margin-bottom: 25px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 3px solid #ffd700; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 5px; }
        .review-user { font-weight: 600; color: #fff; font-size: 14px; }
        .review-rating { color: #ffd700; font-size: 12px; }
        .review-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { background: #1a1d24; border-radius: 15px; padding: 20px; margin-bottom: 25px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #2d323d; padding-bottom: 10px; }
        .faq-item:last-child { border: none; }
        .faq-question { font-weight: 600; color: #ffd700; font-size: 15px; margin-bottom: 5px; }
        .faq-answer { font-size: 14px; color: #ccc; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-decoration: none; color: #888; display: flex; flex-direction: column; align-items: center; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active, .nav-item:hover { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-link { color: #888; text-decoration: none; font-size: 13px; transition: 0.3s; }
        .footer-link:hover { color: #ffd700; }
        .copyright { font-size: 12px; color: #555; margin-top: 10px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .header-left strong { font-size: 20px; }
        }