/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1c1c1e;
    color: #f5f5f5;
    line-height: 1.6;
}

header {
    background-color: #ff2e63;
    padding: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

main.peliculas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 20px;
    gap: 30px;
}

.pelicula {
    background: #2c2c34;
    border-radius: 15px;
    width: 300px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 46, 99, 0.3);
    transition: transform 0.3s ease;
}

.pelicula:hover {
    transform: translateY(-10px);
}

.pelicula img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.pelicula h2 {
    color: #ff2e63;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pelicula p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #ccc;
}

footer {
    background-color: #292929;
    color: #ccc;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    border-top: 1px solid #444;
}
