/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 800px;
    width: 100%;
    background: #1B1F3B;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.modal-video {
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 70vh;
    background: #0A0A0A;
}

.modal-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

.modal-info {
    padding: 30px;
}

.modal-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.modal-info p {
    font-size: 16px;
    color: #D1D5DB;
    margin-bottom: 20px;
    line-height: 1.5;
}

.modal-cta {
    width: 100%;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .modal-video {
        max-height: 50vh;
    }
    
    .modal-info {
        padding: 20px;
    }
}

