.movies-container {
    background-color: #f0f0f0; /* светло-серый фон */
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* расстояние между карточками */
    justify-content: center;
    border-radius: 8px; /* скругление углов */
}

.movie-card {
    background-color: #fff; /* белая карточка фильма */
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.movie-card:hover {
    transform: translateY(-5px);
}

.movie-card img {
    width: 100%;
    height: auto;
    display: block;
}

.movie-info {
    padding: 10px;
    text-align: center;
}

.movie-info h3 {
    font-size: 16px;
    margin: 0 0 5px 0;
}

.movie-info .rating {
    color: #ff9900;
    font-weight: bold;
}