.places{
    padding: 2% 6%;
}
.container-places {
    position: relative;
    overflow: hidden;
    padding: 50px ;
}

.carousel-places {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.movie-card {
    min-width: 250px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 25px 70px #1c397718;
    /* flex-shrink: 0; */
    border: 1px solid #1c397718;
}

.movie-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.rating {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 14px;
    color: #e74c3c;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
}

.movie-content {
    padding: 10px;
}

.movie-title {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 5px;
}

.movie-details {
    font-size: 13px;
    color: #666;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 22px;
    padding: 10px;
    width: 50px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.nav-button:hover {
    background: black;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

@media (max-width: 600px) {
    .movie-title {
    font-size: 13px;
    }
    .movie-details {
    font-size: 12px;
    }
}