body { background-color: #0f1216; 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; border-bottom: 1px solid #2d323b; }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #fff; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e29b); color: #000; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .section-title { padding: 20px 15px 10px; font-size: 18px; font-weight: bold; display: flex; align-items: center; gap: 8px; color: #d4af37; }
        .jackpot-container { margin: 15px; background: linear-gradient(45deg, #1a1d24, #2d323b); border-radius: 15px; padding: 20px; text-align: center; border: 1px solid #d4af37; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2); }
        .jackpot-label { font-size: 14px; color: #aaa; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #d4af37; margin: 10px 0; font-family: monospace; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323b; transition: transform 0.2s; position: relative; }
        .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-title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; background: #1a1d24; padding: 20px; border-radius: 15px; border-left: 4px solid #d4af37; }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: #fff; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2d323b; }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: #d4af37; display: flex; align-items: center; gap: 8px; }
        .winning-scroll { margin: 15px; background: #0a0c0f; border-radius: 12px; height: 150px; overflow: hidden; border: 1px solid #2d323b; }
        .winning-list { animation: scrollUp 40s linear infinite; padding: 10px; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #1a1d24; font-size: 12px; }
        .winner-name { color: #fff; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 15px; background: #1a1d24; margin: 20px 0; text-align: center; }
        .badge-item i { font-size: 24px; color: #d4af37; margin-bottom: 5px; }
        .badge-item span { display: block; font-size: 11px; color: #aaa; }
        .comment-section { padding: 0 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2d323b; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 10px; }
        .user-avatar { width: 30px; height: 30px; border-radius: 50%; background: #2d323b; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #d4af37; }
        .stars { color: #ffc107; font-size: 12px; }
        .comment-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; background: #22262e; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: #fff; }
        .faq-answer { padding: 15px; font-size: 13px; color: #bbb; border-top: 1px solid #2d323b; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323b; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #aaa; font-size: 10px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c0f; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323b; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; font-size: 13px; color: #aaa; }
        .footer-links a:hover { color: #d4af37; }
        .copyright { font-size: 12px; color: #666; margin-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines { grid-template-columns: 1fr 1fr; }
        }