* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1216; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        .container { width: 100%; max-width: 600px; margin: 0 auto; padding: 0 15px; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323e; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #f39c12; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #f39c12; color: #f39c12; }
        .btn-register { background: linear-gradient(135deg, #f39c12, #e67e22); color: #fff; }
        .banner { width: 100%; margin: 10px 0; border-radius: 12px; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; display: block; aspect-ratio: 2/1; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2c3e50 0%, #000000 100%); padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 20px; border: 2px solid #f39c12; box-shadow: 0 0 15px rgba(243, 156, 18, 0.3); }
        .jackpot-title { font-size: 18px; color: #f39c12; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #f39c12; animation: pulse 1.5s infinite; }
        @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; border-left: 4px solid #f39c12; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card .game-info { padding: 10px; text-align: center; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; padding: 20px; border-radius: 15px; margin-bottom: 20px; border: 1px solid #2d323e; }
        .intro-card h1 { font-size: 20px; color: #f39c12; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #bdc3c7; }
        .trust-elements { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; text-align: center; }
        .trust-item { font-size: 10px; color: #95a5a6; }
        .trust-item i { font-size: 24px; color: #f39c12; display: block; margin-bottom: 5px; }
        .guidelines { background: #1a1d24; border-radius: 15px; padding: 20px; margin-bottom: 20px; }
        .guideline-item { display: flex; gap: 12px; margin-bottom: 15px; font-size: 14px; }
        .guideline-item i { color: #f39c12; margin-top: 4px; }
        .winning-scroll { background: rgba(0,0,0,0.3); border-radius: 15px; padding: 15px; height: 200px; overflow-y: auto; border: 1px solid #2d323e; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winner-name { color: #f39c12; }
        .winner-amount { color: #2ecc71; font-weight: bold; }
        .reviews { margin-bottom: 20px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #f39c12; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 12px; }
        .stars { color: #f1c40f; }
        .review-text { font-size: 13px; color: #ecf0f1; font-style: italic; }
        .faq-section { margin-bottom: 20px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: #f39c12; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bdc3c7; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323e; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #95a5a6; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #f39c12; }
        footer { background: #1a1d24; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #95a5a6; }
        .footer-row { margin-bottom: 15px; }
        .copyright { font-size: 12px; color: #7f8c8d; border-top: 1px solid #2d323e; padding-top: 15px; }
        .game-badge { position: absolute; top: 5px; right: 5px; background: #e74c3c; font-size: 10px; padding: 2px 6px; border-radius: 4px; }