body {
    font-family: 'Roboto', sans-serif;
    color: white;
    text-align: center;
    padding: 20px;
    overflow-x: hidden;
    background: linear-gradient(135deg, rgb(68, 0, 255), rgba(34, 194, 19, 0.64));
   

    background-attachment: fixed;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(255, 0, 255, 0.4), rgba(0, 0, 0, 0.6));
    animation: neon-flash 24s infinite alternate, pulse 5s infinite ease-in-out;
    z-index: 0;
    background-size: 200% 200%;
}

@keyframes neon-flash {
    0% {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(255, 0, 255, 0.4), rgba(0, 0, 0, 0.6));
    }

    25% {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(255, 165, 0, 0.4), rgba(0, 0, 0, 0.6));
    }

    50% {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 255, 255, 0.4), rgba(0, 0, 0, 0.6));
    }

    75% {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(255, 255, 0, 0.4), rgba(0, 0, 0, 0.6));
    }

    100% {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(255, 0, 255, 0.4), rgba(0, 0, 0, 0.6));
    }

    25% {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 255, 255, 0.4), rgba(0, 0, 0, 0.6));
    }

    50% {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 255, 0, 0.4), rgba(0, 0, 0, 0.6));
    }

    75% {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 255, 0.4), rgba(0, 0, 0, 0.6));
    }

    100% {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 255, 255, 0.4), rgba(0, 0, 0, 0.6));
    }
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #222;
    padding: 15px;
    border-radius: 10px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    border-left: 1px;
    border-bottom: 2px;
}

.navbar a:hover {
    color: #ff7b00;
}

.swiper-container {
    margin: 30px auto;
    width: 90%;
    max-width: 700px;
    padding: 30px 0;
}

.swiper-slide {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(255, 165, 0, 0.3);
    text-align: center;
    padding: 20px;
    transition: transform 0.5s ease-in-out;
       /* backdrop-filter: blur(10px); */
}


.swiper-slide:hover {
    transform: scale(1.05);
    box-shadow: 0px 15px 40px rgba(255, 69, 0, 0.5);
}

.swiper-slide img {
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
}

.buy-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background: linear-gradient(90deg, #ff7b00, #ff3d00);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.buy-btn:hover {
    transform: scale(1.1);
}

.info-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background: linear-gradient(90deg, #ff7b00, #ff3d00);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.info-btn:hover {
    transform: scale(1.1);
}

.swiper-button-next,
.swiper-button-prev {
    color: #ff7b00;
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #ff3d00;
    transform: scale(1.2);
}


@media (max-width: 768px) {
    .swiper-container {
        width: 100%;
    }

    .swiper-slide img {
        max-width: 160px;
    }
}