.dum-videos-container {
    width: 100%;
    position: relative;
    padding: 30px 0;
    --primary-color: #f00;
    --text-color: #ffffff;
    --meta-color: #aaa;
    --bg-card: transparent;
}

.dum-videos-slider {
    padding-bottom: 60px !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dum-videos-slider.swiper-initialized {
    opacity: 1;
}

.dum-videos-slider .swiper-slide {
    width: 100%;
}

@media (min-width: 640px) {
    .dum-videos-slider .swiper-slide {
        width: calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .dum-videos-slider .swiper-slide {
        width: calc(33.333% - 13.33px);
    }
}

@media (min-width: 1280px) {
    .dum-videos-slider .swiper-slide {
        width: calc(25% - 15px);
    }
}

.dum-video-card {
    background: var(--bg-card);
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dum-video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #222;
}

.dum-video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 5;
    pointer-events: none;
}

.dum-video-thumb img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center 30%;
    /* Desplazar imagen hacia arriba */
    transform: scale(1.15);
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.dum-video-card:hover .dum-video-thumb img {
    transform: scale(1.22);
}

.dum-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dum-video-card:hover .dum-video-overlay {
    opacity: 1;
}

.play-icon {
    width: 44px;
    height: 44px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.dum-video-info-wrap {
    display: flex;
    gap: 12px;
    padding-top: 4px;
}

.dum-channel-avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #222;
    overflow: hidden;
}

.dum-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dum-video-info {
    flex-grow: 1;
    overflow: hidden;
}

.dum-video-info h3 {
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    display: block !important;
    max-height: 2.6em;
    overflow: hidden;
    text-transform: none;
    letter-spacing: normal;
}

.dum-video-meta {
    font-size: 13px;
    color: #aaaaaa;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.dum-video-meta span::after {
    content: "\2022";
    margin-left: 4px;
    color: #888;
}

.dum-video-meta span:last-child::after {
    content: "";
}

/* Modal CSS - Premium Dark */
.dum-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.95);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.dum-modal-content {
    position: relative;
    width: 95%;
    max-width: 1100px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
    border-radius: 12px;
    overflow: hidden;
}

.dum-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
}

.dum-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    background: #000;
}

.dum-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Swiper Nav - Opaque and Visible */
.dum-videos-slider .swiper-button-next,
.dum-videos-slider .swiper-button-prev {
    color: #a80000 !important;
    background: #ffffff !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #ddd;
    opacity: 1 !important;
}

.dum-videos-slider .swiper-button-next:after,
.dum-videos-slider .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 800 !important;
}

.dum-videos-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

.dum-videos-slider .swiper-pagination-bullet-active {
    background: #fff !important;
}