/* Stilurile tale existente – desktop rămâne neschimbat */
.pve-wrapper {
    position: relative;
    margin-bottom: 1px;
    text-align: center;
    border: 1px dashed #ccc;
    padding: 1px;
    border-radius: 1px;
}

.pve-preview-text {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    font-style: italic;
}

/* Buton play – stil de bază */
.playButton {
    background-color: #0073aa;
    color: white;
    font-size: 24px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
}

/* Loader – stil de bază */
.pve-loader {
    margin-top: 10px;
    width: 25px;
    height: 25px;
    border: 2px solid #ccc;
    border-top-color: #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animația loaderului */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.pve-color-1 { background-color: #f0f8ff; }
.pve-color-2 { background-color: #fff0f5; }
.pve-color-3 { background-color: #f5fff0; }
.pve-color-4 { background-color: #f0fff5; }
.pve-color-5 { background-color: #f5f0ff; }

/* --- Mobil (max-width 480px) — FULL WIDTH + centrare --- */
@media (max-width: 480px) {
    .pve-wrapper {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        margin: 0 auto;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pve-wrapper iframe,
    .pve-wrapper video {
        width: 100%;
        height: 100%;
    }

    .pve-wrapper .playButton,
    .pve-wrapper .pve-loader {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Tablete (481px – 1024px) — fluid + centrare --- */
@media (min-width: 481px) and (max-width: 1024px) {
    .pve-wrapper {
        width: 100%;
        height: auto;
        max-width: 100%;
        margin: 0 auto;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pve-wrapper iframe,
    .pve-wrapper video {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .pve-wrapper .playButton,
    .pve-wrapper .pve-loader {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- TV / ecrane mari (min-width 1600px) — fluid full-width + centrare --- */
@media (min-width: 1600px) {
    .pve-wrapper {
        width: 100%;
        height: auto;
        max-width: 100%;
        margin: 0 auto;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pve-wrapper iframe,
    .pve-wrapper video {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .pve-wrapper .playButton,
    .pve-wrapper .pve-loader {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }
}
