body {
    background-color: black;
    color: white;
}

nav {
    margin: 30px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 200px;
    padding: 0;
    margin: 0;
}

nav li {
    transition: transform 0.3s ease;
}

nav li:hover {
    transform: scale(1.08);
}

nav img {
    width: 200px;
    height: auto;
    cursor: pointer;
}
#bienvenida {
    text-align: center;
    margin-top: 40px;
}
#trailers {
    text-align: center;
    margin-top: 50px;
}

iframe {
    border: 3px solid #8a2be2;
    border-radius: 12px;
    box-shadow: 0 0 20px #8a2be2;
}
.categorias{
    display:flex;
    justify-content:center;
    gap:60px;
    margin-top:50px;
}

.categoria img{
    width:300px;      /* Cambia el tamaño si quieres */
    height:auto;

    transition:transform .3s ease,
               filter .3s ease;

    cursor:pointer;
}

.categoria img:hover{

    transform:scale(1.08);

    filter:brightness(1.2);

}
#noticias{
    width: 80%;
    margin: 50px auto;
    padding: 30px;

    background-color: #f7a8a8; /* rojo pastel */

    border-radius: 15px;
}
#noticias{
    width: 80%;
    margin: 50px auto;
    padding: 30px;

    background-color: #f7a8a8; /* Rojo pastel */

    border-radius: 15px;

    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

#noticias h2{
    text-align: center;
    color: black;
    margin-bottom: 25px;
}

.noticia{
    display: flex;
    align-items: center;
    gap: 30px;
}

.noticia img{
    width: 220px;
    height: auto;
    border-radius: 10px;
}

.noticia p{
    color: black;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
}

