body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #fc5590;
}

header {
    background-color: #000000;
    text-align: center;
    padding: 25px 0;
    position: relative;
}

header img {
    width: 230px;
    height: 230px;
}

.menu-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #fc5590;
}

.menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 20px;
    background-color: #333;
    border-radius: 10px;
    padding: 10px;
    color: white;
    z-index: 10;
}

.menu a {
    display: block;
    padding: 5px 10px;
    color: #fc5590;
    text-decoration: none;
}

.menu a:hover {
    background-color: #fc5590;
    color: white;
}

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

.carousel {
    overflow-x: auto;
    white-space: nowrap;
    padding: 0px 0;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
}

.carousel::-webkit-scrollbar {
    height: 0px;
}

.carousel::-webkit-scrollbar-thumb {
    background-color: #fc5590;
    border-radius: 40px;
}

.carousel .anime-thumbnail {
    display: inline-block;
    margin-right: 0px;
    vertical-align: top;
}

.main-thumbnail {
    width: 500px; /* Recuadro más grande para "Lo Más Nuevo" */
}

.main-thumbnail img {
    height: 300px; /* Altura ajustada para imagen panorámica */
}

.category-thumbnail {
    width: 200px; /* Carátulas verticales para las demás secciones */
}

.category-thumbnail img {
    height: 300px; /* Altura para carátulas verticales */
}

.anime-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 30px;
}

.anime-thumbnail img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.anime-thumbnail:hover img {
    transform: scale(1.1);
}

.movie-details {
    position: relative;
    padding: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 20px;
    text-align: left;
}

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

.error-contact {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    color: #fc5590;
}

h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Responsividad */
@media screen and (max-width: 600px) {
    header img {
        width: 150px;
        height: 150px;
    }

    .main-thumbnail {
        width: 300px; /* Ajuste para móvil */
    }

    .main-thumbnail img {
        height: 180px; /* Ajuste para móvil */
    }

    .category-thumbnail {
        width: 150px; /* Ajuste para móvil */
    }

    .category-thumbnail img {
        height: 225px; /* Ajuste para móvil */
    }
}

@media screen and (min-width: 768px) {
    .main-thumbnail {
        width: 600px; /* Ajuste para laptop */
    }

    .main-thumbnail img {
        height: 360px; /* Ajuste para laptop */
    }

    .category-thumbnail {
        width: 250px; /* Ajuste para laptop */
    }

    .category-thumbnail img {
        height: 375px; /* Ajuste para laptop */
    }
}