/* Haina Vision Player — Grupo Streaming © 2026 */

.hvp-wrapper {
    display: block;
    margin: 0 auto;
}

.hvp-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

.hvp-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000;
    height: auto;
}

/* Overlay de play */
.hvp-overlay {
    position: absolute;
    inset: 0 0 42px 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.30), rgba(0,0,0,0.65));
    cursor: pointer;
    transition: background 0.2s ease;
}

.hvp-overlay:hover {
    background: linear-gradient(180deg, rgba(0,0,0,0.40), rgba(0,0,0,0.75));
}

.hvp-overlay.hvp-hidden {
    display: none;
}

.hvp-play-icon {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 38px;
    padding-left: 6px;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.55);
    box-shadow: 0 10px 30px rgba(0,0,0,0.40);
    transition: transform 0.15s ease, background 0.15s ease;
}

.hvp-overlay:hover .hvp-play-icon {
    transform: scale(1.08);
    background: rgba(255,255,255,0.28);
}

.hvp-play-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    opacity: .95;
}




@media (max-width: 480px) {
    .hvp-container {
        border-radius: 10px;
    }
    .hvp-play-icon {
        width: 62px;
        height: 62px;
        font-size: 28px;
    }
}
