.video-cta {
    margin-top: 30px;
    text-align: center;
}

.video-button {
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 999px;
    color: #111111;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.video-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.2s ease;
    z-index: 9999;
}

.video-modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal__backdrop {
    background: rgba(0, 0, 0, 0.7);
    inset: 0;
    position: absolute;
}

.video-modal__content {
    max-width: 1200px;
    position: relative;
    width: min(96vw, 1200px);
    z-index: 1;
}

.video-modal__frame {
    background: #000000;
    border-radius: 16px;
    height: min(90vh, calc(96vw * 9 / 16));
    overflow: hidden;
    position: relative;
    width: 100%;
}

.video-modal__frame iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.video-modal__close {
    background: #ffffff;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    height: 40px;
    line-height: 1;
    position: absolute;
    right: -10px;
    top: -10px;
    width: 40px;
}
