body { background-color: #0f1217; color: #e0e0e0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 18px; font-weight: normal; color: #fff; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; border: 1px solid #d4af37; color: #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%); color: #000; }
        .btn:active { transform: scale(0.95); }
        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1c1f26; padding: 8px 15px; display: flex; align-items: center; border-bottom: 1px solid #2d323d; }
        .announcement i { color: #d4af37; margin-right: 10px; }
        .marquee-box { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee-content { display: inline-block; animation: marquee 25s linear infinite; font-size: 13px; color: #bbb; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #fff; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: #d4af37; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1c1f26; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: 0.3s; position: relative; }
        .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: 12px; margin: 0; color: #ddd; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 25px 15px; padding: 20px; background: linear-gradient(145deg, #1c1f26, #14171d); border-radius: 15px; border: 1px solid #d4af3733; text-align: center; }
        .intro-card h1 { font-size: 18px; color: #d4af37; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #aaa; margin: 0; }
        .trust-badge { display: flex; justify-content: space-around; padding: 20px 15px; background: #161920; margin: 20px 0; }
        .trust-item { text-align: center; font-size: 11px; color: #888; }
        .trust-item i { display: block; font-size: 24px; color: #d4af37; margin-bottom: 5px; }
        .winners-container { margin: 20px 15px; background: #1c1f26; border-radius: 12px; padding: 15px; max-height: 300px; overflow-y: auto; border: 1px solid #2d323d; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-name { color: #ddd; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .reviews-container { padding: 0 15px; margin-bottom: 25px; }
        .review-card { background: #1c1f26; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #d4af37; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
        .review-user { color: #fff; font-weight: 600; }
        .stars { color: #ffc107; font-size: 10px; }
        .review-body { font-size: 13px; color: #aaa; font-style: italic; }
        .faq-container { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: #1c1f26; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-size: 14px; font-weight: 600; color: #d4af37; cursor: pointer; border-bottom: 1px solid #2d323d; display: flex; justify-content: space-between; }
        .faq-answer { padding: 15px; font-size: 13px; color: #aaa; background: #161920; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.3); }
        .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: #d4af37; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1c1f26; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #888; font-size: 13px; transition: 0.3s; }
        .footer-links a:hover { color: #d4af37; }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; }
        .contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
        .contact-btn { background: #1c1f26; padding: 10px; border-radius: 6px; font-size: 13px; color: #bbb; border: 1px solid #2d323d; display: flex; align-items: center; justify-content: center; gap: 8px; }