* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { background-color: #12141a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-container { display: flex; align-items: center; gap: 8px; }
        .logo-img { width: 25px; height: 25px; object-fit: contain; }
        .logo-name { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .header-actions { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: bold; border: none; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background-color: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: white; }
        .btn:active { transform: scale(0.95); }
        .banner-container { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner-img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .jackpot-section { margin: 20px 15px; background: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%); border: 2px solid #FFD700; border-radius: 15px; padding: 20px; text-align: center; box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
        .jackpot-label { color: #FFD700; font-size: 18px; font-weight: bold; text-transform: uppercase; margin-bottom: 5px; display: block; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255,255,255,0.5); font-family: monospace; }
        .intro-card { margin: 20px 15px; padding: 20px; background: #252932; border-radius: 15px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #cccccc; }
        .section-title { margin: 25px 15px 15px; font-size: 18px; display: flex; align-items: center; gap: 10px; color: #FFD700; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: #FF2E63; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: transform 0.3s; position: relative; }
        .game-img-wrapper { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
        .game-img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; font-weight: bold; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .game-provider { font-size: 11px; color: #888; text-transform: uppercase; }
        .payments-section { margin: 30px 15px; padding: 20px; background: #12141a; border-radius: 15px; text-align: center; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 24px; color: #fff; }
        .guidelines-section { padding: 0 15px; margin-bottom: 30px; }
        .guideline-item { background: #252932; padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .guideline-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guideline-item p { font-size: 13px; color: #bbb; }
        .marquee-container { background: #12141a; padding: 15px 0; margin: 20px 0; overflow: hidden; }
        .marquee-content { display: flex; animation: marquee 40s linear infinite; }
        .marquee-item { white-space: nowrap; padding: 0 20px; font-size: 13px; color: #fff; display: flex; align-items: center; gap: 10px; border-right: 1px solid #333; }
        .marquee-item span { color: #00ff88; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { margin: 20px 15px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
        .provider-tag { background: #252932; padding: 6px 12px; border-radius: 4px; font-size: 12px; color: #FFD700; border: 1px solid #333; }
        .reviews-section { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #252932; padding: 15px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 35px; height: 35px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFD700; }
        .review-user-info { display: flex; flex-direction: column; }
        .review-name { font-size: 14px; font-weight: bold; }
        .review-date { font-size: 11px; color: #888; }
        .stars { color: #FFD700; font-size: 12px; margin-bottom: 8px; }
        .review-text { font-size: 13px; color: #ccc; }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { background: #252932; border-radius: 12px; margin-bottom: 10px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: #FFD700; margin-bottom: 10px; }
        .faq-item p { font-size: 13px; color: #bbb; line-height: 1.5; }
        .security-section { margin: 30px 15px 100px; padding: 20px; background: #12141a; border-radius: 15px; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 12px; color: #888; }
        .age-badge { display: inline-block; border: 2px solid #FF2E63; color: #FF2E63; padding: 2px 8px; border-radius: 50%; font-weight: bold; margin-top: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; transition: color 0.3s; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        .nav-item:hover { color: #FFD700; }
        footer { background: #0d0f14; padding: 30px 15px 120px; text-align: center; border-top: 1px solid #222; }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contact a { font-size: 14px; color: #FFD700; text-decoration: underline; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-links a { font-size: 12px; color: #888; text-align: left; padding: 5px 0; }
        .copyright { font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .banner-container { width: 80%; margin: 0 auto; }
            .intro-card, .jackpot-section, .section-title, .game-grid, .guidelines-section, .reviews-section, .faq-section { max-width: 1000px; margin-left: auto; margin-right: auto; }
        }