body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: #333;
}

#peliculas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.movie-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
}

.movie-card h2 {
    margin-top: 0;
    color: #2c3e50;
}

.stars {
    display: flex;
    gap: 5px;
}

.star {
    cursor: pointer;
    font-size: 24px;
    color: #ddd;
}

.star:hover, .star:hover ~ .star {
    color: #ffd700;
}

.stars:hover .star {
    color: #ffd700;
}

.stars .star:hover ~ .star {
    color: #ddd;
}