* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1217; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .app-container { max-width: 600px; margin: 0 auto; background-color: #1a1d24; min-height: 100vh; }
        header { background-color: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .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: #f1c40f; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid #f1c40f; color: #f1c40f; padding: 5px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(180deg, #f1c40f, #d4a017); color: #000; border: none; padding: 5px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        .main-banner { width: 100%; display: block; cursor: pointer; }
        .main-banner img { width: 100%; aspect-ratio: 2/1; display: block; }
        .jackpot-section { background: radial-gradient(circle, #2d323d 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #3d4452; }
        .jackpot-title { color: #f1c40f; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #ffffff; margin: 10px 0; font-family: monospace; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #f1c40f; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #2d323d; border-radius: 12px; overflow: hidden; position: relative; transition: transform 0.2s; border: 1px solid #3d4452; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-name { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 15px; padding: 20px; background: #2d323d; border-radius: 15px; border-left: 4px solid #f1c40f; }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: #f1c40f; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines-grid { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 10px; }
        .guideline-item { background: #22272f; padding: 15px; border-radius: 10px; display: flex; align-items: flex-start; gap: 12px; }
        .guideline-item i { color: #f1c40f; font-size: 20px; margin-top: 3px; }
        .guideline-text h3 { font-size: 15px; margin-bottom: 5px; }
        .guideline-text p { font-size: 13px; color: #aaa; }
        .winners-box { margin: 15px; background: #1a1d24; border: 1px solid #2d323d; border-radius: 15px; height: 250px; overflow: hidden; position: relative; }
        .winners-list { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-item { padding: 12px 15px; display: flex; justify-content: space-between; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-name { color: #aaa; }
        .winner-amount { color: #2ecc71; font-weight: bold; }
        .casino-features { padding: 15px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; }
        .feature-item { font-size: 12px; color: #aaa; }
        .feature-item i { display: block; font-size: 24px; color: #f1c40f; margin-bottom: 5px; }
        .comments-section { padding: 15px; }
        .comment-card { background: #2d323d; padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
        .comment-user { color: #f1c40f; font-weight: bold; }
        .comment-rating { color: #f1c40f; }
        .comment-body { font-size: 13px; color: #ddd; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #2d323d; margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-size: 14px; font-weight: bold; color: #f1c40f; border-bottom: 1px solid #3d4452; display: flex; justify-content: space-between; }
        .faq-answer { padding: 15px; font-size: 13px; color: #bbb; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; max-width: 600px; margin: 0 auto; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #aaa; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #f1c40f; }
        footer { padding: 30px 15px 100px; background: #0f1217; text-align: center; font-size: 13px; color: #666; }
        .footer-links { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-links a { color: #aaa; }
        .footer-row { margin-bottom: 15px; }
        .legal-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .copyright { font-size: 11px; }