/* Fondo sección */
.video-detail-section {
    background: #f9fafb;
    padding: 70px 40px;
}

/* Contenedor centrado */
.video-detail-container {
    max-width: 1000px;
    margin: auto;
}

/* Card principal */
.video-detail-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    padding: 40px;
}

/* Título grande */
.video-detail-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

/* Video wrapper */
.video-detail-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    margin-bottom: 30px;
}

/* Forzar iframe */
.video-detail-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* Ocultar basura Vimeo */
.video-detail-thumb p,
.video-detail-thumb a {
    display: none !important;
}

/* Badge duración */
.video-detail-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 500;
}

/* Descripción */
.video-detail-description {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

/* Metadata */
.video-detail-meta {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

/* Botón */
.video-detail-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 22px;
    border-radius: 10px;
    background: #198754;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

.video-detail-btn:hover {
    background: #157347;
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .video-detail-card {
        padding: 25px;
    }

    .video-detail-title {
        font-size: 26px;
    }
}

/* ---------------- */
/* DARK MODE */
/* ---------------- */

.dark-mode .video-detail-section {
    background: #0f0f0f;
}

.dark-mode .video-detail-card {
    background: #1c1c1c;
    box-shadow: 0 8px 28px rgba(0,0,0,0.6);
}

.dark-mode .video-detail-title {
    color: #f2f2f2;
}

.dark-mode .video-detail-description {
    color: #cfcfcf;
}

.dark-mode .video-detail-meta {
    color: #a0a0a0;
}

.video-detail-btn,
.video-detail-btn:visited,
.video-detail-btn:hover,
.video-detail-btn:active {
    color: #fff;
}
