body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #ffffff; margin: 0; padding-bottom: 70px; line-height: 1.6; }
        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; text-decoration: none; color: #fff; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; border: none; font-weight: bold; font-size: 14px; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #d4af37; color: #d4af37; }
        .btn-register { background: linear-gradient(180deg, #f3d078 0%, #d4af37 100%); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; border-bottom: 3px solid #d4af37; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #d4af37; border-bottom: 1px solid #2a2e37; }
        .announcement-icon { flex-shrink: 0; }
        .announcement-text { overflow: hidden; white-space: nowrap; }
        .announcement-text span { display: inline-block; animation: marquee 20s linear infinite; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .content-section { padding: 15px; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; color: #d4af37; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; transition: transform 0.2s; border: 1px solid #2a2e37; }
        .game-card:active { transform: scale(0.95); }
        .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: #1a1d24; border-radius: 15px; padding: 20px; margin-bottom: 25px; border-left: 4px solid #d4af37; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .intro-card h1 { font-size: 20px; color: #d4af37; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #ccc; margin-bottom: 15px; }
        .intro-card strong { color: #d4af37; }
        .trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: center; }
        .badge-item { background: #1a1d24; padding: 10px; border-radius: 10px; font-size: 11px; color: #d4af37; border: 1px solid #2a2e37; }
        .badge-item i { font-size: 20px; margin-bottom: 5px; display: block; }
        .winners-list { background: #1a1d24; border-radius: 12px; padding: 15px; height: 250px; overflow-y: auto; margin-bottom: 25px; border: 1px solid #2a2e37; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winner-item .name { color: #eee; }
        .winner-item .amount { color: #4caf50; font-weight: bold; }
        .reviews-section { margin-bottom: 25px; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 12px; border: 1px solid #2a2e37; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; align-items: center; }
        .user-name { font-weight: bold; color: #d4af37; font-size: 14px; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid #2a2e37; }
        .faq-question { font-weight: bold; color: #d4af37; margin-bottom: 8px; font-size: 14px; display: flex; gap: 8px; }
        .faq-answer { font-size: 13px; color: #ccc; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 1000; border-top: 2px solid #d4af37; }
        .nav-item { text-decoration: none; color: #8e94a3; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; width: 20%; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2e37; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #8e94a3; text-decoration: none; font-size: 13px; }
        .footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-socials a { color: #d4af37; font-size: 20px; }
        .copyright { font-size: 12px; color: #5a616d; margin-top: 15px; }