* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0D0D0D; color: #FFFFFF; font-family: 'Inter', sans-serif; line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        
        header { background: #1A1A1A; border-bottom: 2px solid #D4AF37; padding: 10px 20px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 8px; font-size: 0.875rem; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #D4AF37; color: #D4AF37; }
        .btn-login:hover { background: rgba(212, 175, 55, 0.1); }
        .btn-register { background: #D4AF37; color: #000000; }
        .btn-register:hover { background: #F1C40F; }

        main { padding-bottom: 80px; max-width: 1200px; margin: 0 auto; }
        .banner-container { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { background: linear-gradient(135deg, #1A1A1A 0%, #262626 100%); padding: 25px; text-align: center; border-radius: 15px; margin: 20px; border: 1px solid #D4AF37; }
        .jackpot-label { color: #D4AF37; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'JetBrains Mono', monospace; font-size: 2.5rem; color: #FFFFFF; font-weight: 900; text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }

        .platform-card { background: #1A1A1A; padding: 30px 20px; margin: 20px; border-radius: 20px; border-left: 5px solid #D4AF37; }
        .platform-card h1 { font-size: 1.5rem; color: #D4AF37; margin-bottom: 15px; }
        .platform-card p { color: #B3B3B3; font-size: 1rem; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 20px; }
        .game-card { background: #1A1A1A; border-radius: 12px; overflow: hidden; border: 1px solid #333; transition: transform 0.2s; }
        .game-card:hover { transform: translateY(-5px); border-color: #D4AF37; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 0.875rem; text-align: center; color: #FFFFFF; }

        .section-title { padding: 0 20px; font-size: 1.5rem; color: #FFFFFF; border-left: 4px solid #059669; margin-left: 20px; margin-top: 30px; margin-bottom: 15px; }

        .trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px; background: #1A1A1A; margin: 20px; border-radius: 15px; }
        .badge-item { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 0.65rem; color: #B3B3B3; text-align: center; }
        .badge-item i { font-size: 1.5rem; color: #D4AF37; }

        .guide-section { padding: 20px; display: flex; flex-direction: column; gap: 20px; }
        .guide-card { background: #1A1A1A; padding: 20px; border-radius: 15px; border: 1px solid #333; }
        .guide-card h2 { font-size: 1.25rem; color: #D4AF37; margin-bottom: 10px; }
        .guide-card p { color: #B3B3B3; font-size: 0.9rem; }

        .marquee-container { background: #1A1A1A; padding: 15px 0; overflow: hidden; margin: 20px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-track { display: flex; animation: scroll 40s linear infinite; width: max-content; }
        .marquee-item { padding: 0 30px; border-right: 1px solid #333; white-space: nowrap; font-size: 0.85rem; }
        .marquee-item span { color: #D4AF37; font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .provider-block { background: #059669; padding: 15px; border-radius: 10px; text-align: center; font-weight: bold; color: #FFFFFF; font-size: 0.9rem; }
        .provider-block:nth-child(even) { background: #D4AF37; color: #000000; }

        .reviews-grid { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #1A1A1A; padding: 20px; border-radius: 15px; border: 1px solid #333; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 2rem; color: #737373; }
        .stars { color: #FFCC00; font-size: 0.8rem; }
        .review-content { font-size: 0.875rem; color: #B3B3B3; font-style: italic; }
        .review-date { font-size: 0.75rem; color: #737373; margin-top: 10px; }

        .faq-section { padding: 20px; }
        .faq-item { background: #1A1A1A; margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; color: #D4AF37; font-weight: 600; font-size: 1rem; border-bottom: 1px solid #333; }
        .faq-answer { padding: 15px; color: #B3B3B3; font-size: 0.875rem; }

        .security-section { padding: 30px 20px; text-align: center; background: #0D0D0D; border-top: 1px solid #333; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 2rem; color: #059669; }
        .security-text { font-size: 0.8rem; color: #737373; max-width: 600px; margin: 0 auto; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1A1A1A; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 2px solid #D4AF37; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #B3B3B3; font-size: 0.75rem; gap: 4px; }
        .nav-item i { font-size: 1.25rem; }
        .nav-item:hover { color: #D4AF37; }

        footer { background: #1A1A1A; padding: 40px 20px 100px 20px; text-align: center; color: #B3B3B3; font-size: 0.875rem; }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-social a { color: #D4AF37; border: 1px solid #D4AF37; padding: 5px 15px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-copyright { border-top: 1px solid #333; padding-top: 20px; font-size: 0.75rem; color: #737373; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
            .reviews-grid { flex-direction: row; flex-wrap: wrap; }
            .review-card { width: calc(50% - 15px); }
        }