.modalTNO-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modalTNO-content {
    position: relative;
    max-width: 90%;
    width: 800px;
    max-height: 90%;
    aspect-ratio: 16 / 9;
}

.modalTNO-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modalTNO-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: #f00;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
}

.modalTNO-close:hover {
    background: #c00;
}
@media screen and (max-width: 768px) {
    .modalTNO-close {
        right: 0;
    }
}