/* --- Wrapper principal (stilizat modern & dimensiune redusă) --- */
.pve-wrapper {
    position: relative;
    width: 100%;
    max-width: 640px; /* 👈 AICI modifici lățimea player-ului (ex: 500px, 600px, 700px) */
    aspect-ratio: 16 / 9; /* Păstrează proporția video 16:9 */
    margin: 0 auto 16px auto; /* Centers player-ul pe mijlocul paginii */
    text-align: center;
    border: 1px solid #e2e8f0;
    padding: 0 !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Stil GLOBAL pentru Video / Iframe --- */
.pve-wrapper iframe,
.pve-wrapper video {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    border: none;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

.pve-preview-text {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* --- Buton Play – Dimensiune adaptată --- */
.playButton {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-size: 16px; /* Dimensiune text ușor redusă */
    font-weight: 600;
    padding: 10px 24px; /* Padding ajustat pentru player mai mic */
    border: none;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

/* Efecte la interacțiune */
.playButton:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.playButton:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

/* --- Loader modernizat --- */
.pve-loader {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(37, 99, 235, 0.15);
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 0.8s ease-in-out infinite;
    z-index: 2;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Variațiuni de fundal (Dark / Modern) --- */
.pve-color-1 { background: linear-gradient(135deg, #0f172a, #1e293b); } /* Slate / Carbon */
.pve-color-2 { background: linear-gradient(135deg, #1e1b4b, #312e81); } /* Deep Indigo */
.pve-color-3 { background: linear-gradient(135deg, #2a0845, #6441a5); } /* Royal Purple */
.pve-color-4 { background: linear-gradient(135deg, #064e3b, #0f766e); } /* Dark Emerald */
.pve-color-5 { background: linear-gradient(135deg, #18181b, #27272a); } /* Midnight Black */