* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Roboto', sans-serif; background-color: #0A0A0A; color: #E0E0E0; line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: #FFFFFF; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        
        header {
            background-color: #161616;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        header .logo-area { display: flex; align-items: center; gap: 8px; }
        header .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-area strong { font-size: 16px; font-weight: 400; color: #D4AF37; text-transform: uppercase; letter-spacing: 1px; }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn { padding: 6px 15px; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; font-family: 'Montserrat', sans-serif; }
        header .btn-login { background: transparent; color: #FFFFFF; border: 1px solid #D4AF37; }
        header .btn-register { background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728); color: #000; }

        main { max-width: 800px; margin: 0 auto; padding-bottom: 80px; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: radial-gradient(circle, #8B0000 0%, #0A0A0A 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid #D4AF37;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-label { color: #FFD700; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-value { font-family: 'Oswald', sans-serif; font-size: 36px; color: #FFFFFF; font-weight: 700; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }

        .intro-card { padding: 20px; margin: 15px; background: #1E1E1E; border-radius: 12px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-size: 22px; margin-bottom: 10px; color: #FFD700; }
        .intro-card p { font-size: 15px; color: #A0A0A0; text-align: justify; }

        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 18px; text-transform: uppercase; border-left: 3px solid #D4AF37; padding-left: 10px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1E1E1E; border-radius: 8px; overflow: hidden; border: 1px solid #333; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 13px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #E0E0E0; }

        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: #161616; margin: 15px; border-radius: 10px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 11px; color: #A0A0A0; }
        .payment-item i { font-size: 20px; color: #D4AF37; }

        .guide-section { padding: 15px; }
        .guide-item { background: #1E1E1E; padding: 15px; border-radius: 10px; margin-bottom: 15px; border: 1px solid #444; }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .guide-item p { font-size: 14px; color: #A0A0A0; }

        .marquee-container { background: #161616; padding: 10px 0; margin: 20px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; overflow: hidden; }
        .marquee-content { display: flex; gap: 30px; animation: scrollMarquee 30s linear infinite; white-space: nowrap; }
        @keyframes scrollMarquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .winner-tag { color: #E0E0E0; font-size: 13px; }
        .winner-tag span { color: #28A745; font-weight: bold; }

        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; justify-content: center; }
        .provider-box { padding: 8px 15px; background: #8B0000; color: #FFF; border-radius: 4px; font-weight: 600; font-size: 12px; min-width: 45%; text-align: center; }

        .comment-grid { padding: 15px; }
        .comment-card { background: #1E1E1E; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #333; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: #D4AF37; }
        .comment-user { font-weight: 600; font-size: 15px; }
        .comment-stars { color: #FFC107; font-size: 12px; }
        .comment-text { font-size: 14px; font-style: italic; color: #E0E0E0; margin: 10px 0; }
        .comment-date { font-size: 11px; color: #A0A0A0; }

        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: #161616; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: #FFD700; margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: #A0A0A0; }

        .security-section { padding: 20px 15px; text-align: center; background: #111; border-top: 2px solid #333; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #D4AF37; }
        .responsible-text { font-size: 13px; color: #A0A0A0; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: #161616;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #D4AF37;
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #A0A0A0; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) i { color: #FFD700; font-size: 26px; }

        footer { background: #0A0A0A; padding: 30px 15px 100px; border-top: 1px solid #333; text-align: center; }
        .footer-contacts { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { font-size: 13px; color: #D4AF37; border: 1px solid #333; padding: 5px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: #A0A0A0; font-size: 13px; }
        .footer-copy { font-size: 12px; color: #666; margin-top: 20px; }