/* Contenedor principal */
.video-mock-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
    cursor: pointer;
}

.video-mock-link {
    text-decoration: none;
    display: block;
    position: relative;
}

.video-mock-thumbnail {
    display: block;
    border-radius: 8px;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

/* Capa que oscurece y centra el botón */
.video-mock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: background 0.3s;
}

/* Estilo del botón Play (tipo YouTube) */
.play-button-icon {
    width: 68px;
    height: 48px;
    background-color: rgba(33, 33, 33, 0.8);
    border-radius: 12% / 23%;
    position: relative;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* El triángulo blanco central */
.play-button-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #ffffff;
}

/* Efectos al pasar el mouse */
.video-mock-link:hover .play-button-icon {
    background-color: #f00; /* Rojo YouTube */
}

.video-mock-link:hover .video-mock-overlay {
    background: rgba(0, 0, 0, 0.2);
}