* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0B0B; color: #FFFFFF; font-family: 'Inter', sans-serif; line-height: 1.6; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.2; color: #D4AF37; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background-color: #161616;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #D4AF37;
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        header .auth-buttons { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        header .btn-login { background: transparent; color: #D4AF37; border: 1px solid #D4AF37; }
        header .btn-register { background: #D4AF37; color: #0B0B0B; }

        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(145deg, #1e1e1e, #0b0b0b);
            margin: 20px;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #D4AF37;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: #BDBDBD; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Playfair Display', serif; font-size: 36px; color: #F9E076; font-weight: 900; }

        .intro-card { margin: 20px; padding: 20px; background: #1E1E1E; border-radius: 15px; }
        .intro-card h1 { font-size: 24px; margin-bottom: 15px; }
        .intro-card p { color: #BDBDBD; font-size: 16px; }

        .section-title { padding: 0 20px; margin: 30px 0 15px; font-size: 24px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 24px; background: #D4AF37; display: inline-block; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 20px; }
        .game-card { background: #1E1E1E; border-radius: 12px; overflow: hidden; border: 1px solid #333333; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: #FFFFFF; }

        .payment-license { background: #161616; padding: 30px 20px; margin: 30px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
        .pay-item i { font-size: 24px; color: #D4AF37; margin-bottom: 8px; display: block; }
        .pay-item span { font-size: 12px; color: #BDBDBD; }

        .guide-section { padding: 0 20px; display: flex; flex-direction: column; gap: 20px; }
        .guide-card { background: #1E1E1E; padding: 20px; border-radius: 12px; border-left: 3px solid #D4AF37; }
        .guide-card h3 { font-size: 18px; margin-bottom: 10px; color: #F9E076; }
        .guide-card p { font-size: 14px; color: #BDBDBD; }

        .lottery-ticker { margin: 30px 20px; background: #161616; border-radius: 15px; padding: 15px; overflow: hidden; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #333; font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .win-user { color: #D4AF37; font-weight: 600; }
        .win-amount { color: #28A745; font-weight: 700; }

        .providers-wall { padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 30px 0; }
        .provider-box { background: #D4AF37; color: #0B0B0B; padding: 15px; text-align: center; font-weight: 900; border-radius: 8px; font-size: 14px; text-transform: uppercase; }
        .provider-box:nth-child(even) { background: #996515; color: #FFFFFF; }

        .comment-section { padding: 0 20px; display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: #1E1E1E; padding: 20px; border-radius: 15px; position: relative; }
        .user-info { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .user-info i { font-size: 24px; color: #D4AF37; }
        .rating { color: #FFBB33; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: #757575; margin-top: 10px; text-align: right; }

        .faq-section { padding: 0 20px; margin-top: 30px; }
        .faq-item { margin-bottom: 15px; background: #161616; border-radius: 10px; padding: 15px; border: 1px solid #333; }
        .faq-item h3 { font-size: 16px; margin-bottom: 10px; color: #D4AF37; }
        .faq-item p { font-size: 14px; color: #BDBDBD; }

        .responsible-gaming { margin: 30px 20px; padding: 20px; background: #1E1E1E; border-radius: 15px; text-align: center; border: 1px dashed #E63946; }
        .responsible-gaming h2 { font-size: 20px; color: #E63946; margin-bottom: 10px; }
        .age-limit { display: inline-block; padding: 5px 10px; border: 2px solid #E63946; color: #E63946; font-weight: 900; border-radius: 50%; margin: 10px 0; }
        .secure-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 20px; color: #D4AF37; }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #161616;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid #D4AF37;
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #BDBDBD; font-size: 12px; }
        .nav-item i { font-size: 20px; color: #D4AF37; }

        footer {
            background: #0B0B0B;
            padding: 40px 20px 100px;
            border-top: 1px solid #333;
        }
        footer .contact-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 30px; }
        footer .contact-link { background: #1E1E1E; padding: 10px 15px; border-radius: 5px; font-size: 14px; border: 1px solid #444; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        footer .links-grid a { color: #BDBDBD; font-size: 14px; }
        footer .copyright { text-align: center; color: #757575; font-size: 12px; border-top: 1px solid #333; padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .payment-license { grid-template-columns: repeat(8, 1fr); }
        }