/* Box de Downloads */
.box-download-episodios {
    background-color: #2d2d2d;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.lista-download {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista-download li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3b3b3b;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.lista-download li:hover {
    background-color: #444;
}

.lista-download a {
    background-color: #278b0c;
    color: #fff;
    padding: 3px 13px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.lista-download a:hover {
    background-color: #218838;
    transform: scale(1.05);
}

/* Estilo IMDb e Info */
.imdb-box,
.imdb-box2 {
    background-color: #3d3d3c;
    border-left: 13px solid #a7a7a7;
    padding: 3px 14px;
    margin: 5px 0;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    display: inline-block;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

.imdb-box strong,
.imdb-box2 strong {
    color: #f5c518;
    margin-right: 8px;
}

.idioma-box {
    background-color: #2c2c2c;
    border-left: 10px solid #3498db;
    padding: 5px 12px;
    margin: 5px 0;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    display: inline-block;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.idioma-box strong {
    color: #00d0ff;
    margin-right: 6px;
}

/* Card Hover */
.card-hover {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-hover img {
    transition: transform 0.9s ease;
    display: block;
    width: 100%;
}

.card-hover:hover img {
    transform: scale(1.1);
}

.card-info-overlay {
    color: #fff;
    padding: 10px;
    font-size: 14px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-info-overlay .top-info {
    text-align: left;
    font-size: 13px;
    color: #f0f0f0;
}

.card-info-overlay .sinopse {
    font-size: 12px;
    color: #ccc;
    margin: 8px 0;
}

.card-info-overlay .bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Título com corte de texto */
.texth4 {
    font-weight: bold;
    font-size: 15px;
    text-align: left;
    color: #fff;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Scrollbar personalizada (opcional) */
.box-download-episodios::-webkit-scrollbar {
    width: 8px;
}

.box-download-episodios::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.box-download-episodios::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

.box-download-episodios::-webkit-scrollbar-thumb:hover {
    background: #777;
}
