/* Estilos adicionales para detalles de película */
.item__additional-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.item__finances, .item__companies, .item__keywords {
    margin-bottom: 15px;
}
.item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.item__tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}
.item__cast {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}
.cast__item {
    width: 80px;
    text-align: center;
}
.cast__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 8px;
}
.cast__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cast__name {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px;
}
.cast__character {
    font-size: 10px;
    opacity: 0.7;
}
.no-video, .no-photos {
    padding: 30px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.videos__title {
    margin-bottom: 20px;
}
.video-item {
    margin-bottom: 30px;
}
.video-item__link {
    display: block;
    position: relative;
    margin-bottom: 10px;
}
.video-item__link img {
    width: 100%;
    border-radius: 4px;
}
.video-item__link svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    fill: #ff55a5;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.video-item__link:hover svg {
    opacity: 1;
}
.video-item__title {
    font-size: 14px;
    margin-bottom: 5px;
}
.video-item__type {
    font-size: 12px;
    opacity: 0.7;
}
.error-message {
    text-align: center;
    padding: 50px 0;
}