* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { height: 60px; background: #1a1d24; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .header-logo { display: flex; align-items: center; gap: 8px; }
        .header-logo img { width: 25px; height: 25px; object-fit: contain; }
        .header-logo strong { font-size: 16px; font-weight: normal; color: #f1f1f1; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border: 1px solid #d4af37; color: #d4af37; border-radius: 20px; font-size: 14px; font-weight: 500; background: transparent; cursor: pointer; }
        .btn-register { padding: 7px 16px; background: linear-gradient(135deg, #d4af37, #f9e394); color: #000; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; height: 36px; display: flex; align-items: center; padding: 0 10px; border-bottom: 1px solid #2d323d; }
        .announcement i { color: #d4af37; margin-right: 10px; }
        .ticker { overflow: hidden; white-space: nowrap; width: 100%; }
        .ticker-inner { display: inline-block; animation: ticker 20s linear infinite; font-size: 13px; color: #ccc; }
        @keyframes ticker { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .container { padding: 15px; }
        .section-title { font-size: 18px; font-weight: 600; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; color: #d4af37; }
        .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; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.96); }
        .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: 13px; font-weight: 400; color: #e0e0e0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .intro-card { background: linear-gradient(145deg, #1e222b, #15181f); border-radius: 15px; padding: 20px; border: 1px solid #d4af3744; margin-bottom: 25px; }
        .intro-card h1 { font-size: 18px; color: #d4af37; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #b0b0b0; }
        .stats-strip { display: flex; justify-content: space-around; background: #1a1d24; padding: 15px 10px; border-radius: 12px; margin-bottom: 25px; border: 1px solid #2d323d; }
        .stat-item { text-align: center; }
        .stat-val { display: block; font-size: 16px; font-weight: 700; color: #d4af37; }
        .stat-label { font-size: 11px; color: #888; text-transform: uppercase; }
        .winners-box { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; border: 1px solid #2d323d; height: 300px; overflow-y: auto; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-user { color: #e0e0e0; }
        .winner-amount { color: #4caf50; font-weight: 600; }
        .reviews-box { margin-bottom: 25px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #d4af37; }
        .review-user { font-weight: 600; font-size: 14px; margin-bottom: 5px; color: #d4af37; display: flex; justify-content: space-between; }
        .review-text { font-size: 13px; color: #ccc; font-style: italic; }
        .stars { color: #ffc107; font-size: 12px; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; border: 1px solid #2d323d; padding: 15px; }
        .faq-question { font-weight: 600; font-size: 14px; color: #d4af37; margin-bottom: 8px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { font-size: 13px; color: #b0b0b0; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: #1a1d24; border-top: 1px solid #2d323d; display: flex; justify-content: space-around; align-items: center; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c10; padding: 30px 15px 80px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; font-size: 13px; }
        .footer-links a { color: #888; }
        .footer-links a:hover { color: #d4af37; }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; }
        .payment-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; opacity: 0.6; font-size: 24px; color: #888; }