.series-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
    justify-content: center;
    max-width: 1400px;
    margin: auto;
}

.serie-item {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    width: 150px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.serie-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.5);
}

.serie-item img {
    width: 100%;
    height: auto;
    display: block;
}

.serie-item p {
    margin: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.serie-item p strong {
    color: #00bcd4;
    font-size: 15px;
    display: block;
    margin-top: 5px;
}

a {
    text-decoration: none;
    color: inherit;
}
@media (max-width: 600px) {
    .serie-item {
        width: 45%;
    }
}

@media (max-width: 400px) {
    .serie-item {
        width: 100%;
    }
}