/* === POP-UP VIDEO FUNDAL === */
.video-modal {
    display: none; /* Ascuns inițial */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* === CONȚINUT VIDEO === */
.video-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.video-content video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* === BUTON ÎNCHIDERE === */
.close-video {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 32px;
    color: white;
    cursor: pointer;
    user-select: none;
}
