.pve-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    aspect-ratio: 16 / 9;
    background-color: #e5e5e5; /* fundal gri deschis */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.pve-wrapper button.playButton {
    width: 100px;
    height: 60px;
    border: none;
    color: #fff;
    font-size: 2.2em;
    cursor: pointer;
    background: linear-gradient(135deg, #FF5722, #F44336); /* gradient roșu-portocaliu */
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.6);
}

.pve-wrapper button.playButton:hover {
    transform: scale(1.1);
    box-shadow: 0 0 14px rgba(255, 87, 34, 0.9);
}

.pve-loader {
    border: 6px solid #eee;
    border-top: 6px solid #FF5722;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}