/* Encabezado */
header {
    background-color: #333;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    color: #ff7043;
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff7043;
}

nav ul li a.active {
    color: #f2b600;
}
/* Imagen Destacada */
.imagen-pelicula {
    text-align: center;
    margin: 20px 0;
}

.imagen-pelicula img {
    width: 300px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.imagen-pelicula img:hover {
    transform: scale(1.05);
}

/* Tabla de Detalles */
.detalles-pelicula {
    max-width: 600px;
    margin: 0 auto 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.detalles-pelicula table {
    width: 100%;
    border-collapse: collapse;
}

.detalles-pelicula td {
    padding: 10px;
    vertical-align: top;
}

.detalles-pelicula td:first-child {
    font-weight: bold;
    width: 150px;
}

.detalles-pelicula img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Botón Ver Película */
.ver-pelicula {
    text-align: center;
}

.ver-pelicula .boton-ver {
    display: inline-block;
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.ver-pelicula .boton-ver:hover {
    background-color: #ff784e;
}

section.ver {
    text-align: center;
}

/* Pie de Página */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

footer button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

footer button:hover {
    background-color: #ff7043;
}

body {
    text-align: center;
}

button.button {
    background-color: rgb(15, 151, 241);
}