body { margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f0f0f0; }
        .header-right { display: flex; gap: 10px; }
        .btn { border: none; padding: 8px 16px; border-radius: 20px; font-weight: bold; cursor: pointer; font-size: 14px; text-decoration: none; transition: transform 0.2s; }
        .btn-login { background: transparent; border: 1px solid #d4af37; color: #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e29b); color: #000; }
        .btn:active { transform: scale(0.95); }
        main { padding-bottom: 80px; max-width: 600px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .section-title { padding: 20px 15px 10px; display: flex; align-items: center; gap: 10px; font-size: 18px; color: #d4af37; }
        .section-title i { font-size: 20px; }
        .jackpot-card { margin: 15px; background: linear-gradient(135deg, #2c1f0d, #1a1d24); border: 2px solid #d4af37; border-radius: 15px; padding: 20px; text-align: center; }
        .jackpot-value { font-size: 32px; font-weight: bold; color: #f9e29b; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); font-family: monospace; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; font-size: 14px; 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: 1.2rem; margin-top: 0; color: #d4af37; }
        .intro-card p { font-size: 0.95rem; color: #b0b0b0; margin-bottom: 0; }
        .guidelines { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; text-align: center; border: 1px solid #333; }
        .guide-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; display: block; }
        .guide-item span { font-size: 13px; font-weight: 500; }
        .winners-box { margin: 15px; background: #1a1d24; border-radius: 15px; height: 200px; overflow: hidden; position: relative; }
        .winners-scroll { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 15px; border-bottom: 1px solid #2a2d35; font-size: 13px; }
        .winner-name { color: #f9e29b; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; color: #d4af37; }
        .review-stars { color: #ffc107; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b0b0; font-style: italic; }
        .casino-features { padding: 15px; background: #161920; margin: 20px 0; }
        .feature-item { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; background: #1a1d24; padding: 12px; border-radius: 10px; }
        .feature-item i { font-size: 20px; color: #d4af37; width: 30px; text-align: center; }
        .feature-text h3 { margin: 0; font-size: 15px; }
        .feature-text p { margin: 0; font-size: 12px; color: #888; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; border-bottom: 1px solid #2a2d35; color: #d4af37; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 15px; font-size: 13px; color: #b0b0b0; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-decoration: none; color: #888; display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        footer { background: #0f1218; padding: 30px 15px 100px; border-top: 1px solid #1a1d24; text-align: center; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #888; text-decoration: none; font-size: 13px; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { color: #d4af37; font-size: 20px; }
        .copyright { color: #555; font-size: 12px; }