body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.main-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.catalog {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    width: 80%;
    box-sizing: border-box;
}

.serie {
    background-color: #111;
    border-radius: 10px;
    padding: 10px;
    width: 180px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.serie img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}

.serie h3 {
    margin: 10px 0 5px;
    font-size: 16px;
}

.btn-ver {
    display: inline-block;
    padding: 8px 16px;
    background-color: #FFD700;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s;
    
    /* AJUSTES PARA BOTÓN */
    border: none;       /* Quita el borde gris por defecto */
    cursor: pointer;    /* Hace que aparezca la "manito" al pasar el mouse */
    width: 100%;        /* Opcional: hace que el botón ocupe todo el ancho de la tarjeta */
    font-family: inherit; /* Usa la misma letra que el resto de la web */
}

.btn-ver:hover {
    background-color: #FFC107;
}
