.video1_modal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 80vw;
    margin: 0 auto;
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video1_modal video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 80vw;
    max-height: 70vh;
    object-fit: contain;
}

.modal .modal-dialog {
    max-width: 90vw !important; /* Keep modal responsive */
    width: auto;
}

.modal .modal-dialog .modal-content {
    background: none !important;
    border: none;
}

.modal-body {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 80vw;
    padding-top: 56.25%; /* Maintain aspect ratio */
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Branding */
.my_branding {
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
}

@media (max-width: 800px) {
    .my_branding {
        font-size: 20px;
        position: relative;
        top: 10px;
    }
}
