.video-modal-home {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.video-modal-home.active {
    display: block;
}

.video-modal-home-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.video-modal-home-content {
    position: relative;
    max-width: 800px;
    margin: 5% auto;
    z-index: 2;
    animation: videoFadeIn 0.3s ease;
}

.video-modal-home video {
    width: 100%;
    border-radius: 12px;
}

.video-modal-home-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

/* 🎬 nice animation */
@keyframes videoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
