body { margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1014; color: #e0e0e0; line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        header { position: sticky; top: 0; z-index: 1000; background: #1a1d24; border-bottom: 1px solid #2d323e; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 5px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #fff; letter-spacing: 1px; }
        .header-buttons { display: flex; gap: 8px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9df7b); color: #1a1d24; }
        .btn-register:active { transform: scale(0.95); }
        main { padding-bottom: 80px; max-width: 800px; margin: 0 auto; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-container { background: #1a1d24; margin: 15px; border-radius: 12px; padding: 15px; text-align: center; border: 1px solid #2d323e; position: relative; overflow: hidden; }
        .jackpot-container::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%); z-index: 0; }
        .jackpot-title { font-size: 14px; color: #d4af37; text-transform: uppercase; letter-spacing: 2px; position: relative; z-index: 1; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; margin: 5px 0; text-shadow: 0 0 10px rgba(212,175,55,0.5); position: relative; z-index: 1; }
        .section-title { padding: 0 15px; margin-top: 25px; display: flex; align-items: center; gap: 10px; font-size: 18px; color: #fff; }
        .section-title i { color: #d4af37; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: all 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; font-size: 13px; font-weight: 500; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #d4af37; }
        .intro-card h1 { font-size: 20px; margin: 0 0 10px 0; color: #fff; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b0b0; margin: 0; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; border: 1px solid #2d323e; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: #d4af37; font-size: 18px; margin-top: 3px; }
        .guide-item h3 { margin: 0; font-size: 15px; color: #fff; }
        .guide-item p { margin: 5px 0 0 0; font-size: 13px; color: #888; }
        .winning-box { height: 150px; overflow: hidden; margin: 15px; background: #0a0a0c; border-radius: 10px; border: 1px solid #2d323e; padding: 5px 15px; }
        .winning-scroll { animation: scrollList 30s linear infinite; }
        .winning-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #1a1d24; font-size: 13px; }
        .win-user { color: #d4af37; }
        .win-amount { color: #4caf50; font-weight: bold; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .provider-strip { display: flex; overflow-x: auto; gap: 20px; padding: 20px 15px; opacity: 0.6; scrollbar-width: none; }
        .provider-strip::-webkit-scrollbar { display: none; }
        .provider-strip i { font-size: 24px; color: #fff; }
        .comments-grid { padding: 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 15px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 30px; color: #444; }
        .comment-name { font-weight: 600; font-size: 14px; }
        .comment-stars { color: #d4af37; font-size: 10px; }
        .comment-text { font-size: 13px; color: #b0b0b0; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 8px; border: 1px solid #2d323e; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; color: #fff; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px 15px; font-size: 13px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 5px; border-top: 1px solid #2d323e; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #888; transition: color 0.3s; }
        .nav-item i { font-size: 18px; }
        .nav-item:active { color: #d4af37; }
        footer { padding: 30px 15px 100px; background: #0a0a0c; border-top: 1px solid #2d323e; text-align: center; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-link { font-size: 13px; color: #888; }
        .footer-link:hover { color: #d4af37; }
        .footer-copy { font-size: 12px; color: #555; border-top: 1px solid #1a1d24; padding-top: 20px; }