/* Stilurile tale existente */
.vrp-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
}

.vrp-overlay {
    background: #000;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
}

.vrp-play-btn {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    position: relative;
    transition: 0.3s ease;
}

.vrp-play-btn::after {
    content: "";
    position: absolute;
    left: 36px;
    top: 26px;
    width: 0;
    height: 0;
    border-left: 28px solid #c0392b;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

.vrp-play-btn:hover {
    transform: scale(1.1);
}


/* ------------------------------ */
/* 📱 Mobil (max-width 480px)     */
/* ------------------------------ */
@media (max-width: 480px) {
    .vrp-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .vrp-overlay {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 6px;
    }

    .vrp-play-btn {
        width: 60px;
        height: 60px;
    }

    .vrp-play-btn::after {
        left: 24px;
        top: 18px;
        border-left: 20px solid #c0392b;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }
}


/* ------------------------------------------ */
/* 📱 Tablete (481px – 1024px) — responsive   */
/* ------------------------------------------ */
@media (min-width: 481px) and (max-width: 1024px) {
    .vrp-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .vrp-overlay {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}


/* ------------------------------------------------------ */
/* 🖥️ Desktop (min-width 1025px) — dimensiuni ca în poză */
/* ------------------------------------------------------ */
@media (min-width: 1025px) {
    .vrp-wrapper {
        max-width: 900px;
        margin: 20px auto;
    }

    .vrp-overlay {
        height: 200px; /* exact ca în poza ta */
        border-radius: 8px;
    }
}


/* ------------------------------------------------------ */
/* 🖥️ TV / ecrane mari (min-width 1600px) — fluid        */
/* ------------------------------------------------------ */
@media (min-width: 1600px) {
    .vrp-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .vrp-overlay {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}
