#yse-intro-overlay.yse-intro-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transition: opacity .4s ease, visibility .4s ease;
}

#yse-intro-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#yse-intro-overlay .yse-intro-inner {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

#yse-intro-overlay .yse-intro-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 82vh;
    object-fit: contain;
}

#yse-intro-overlay .yse-intro-text {
    color: #111111;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    padding: 0 12px;
}

body.yse-intro-active {
    overflow: hidden;
}

@media (max-width: 767px) {
    #yse-intro-overlay .yse-intro-image {
        max-width: 94vw;
        max-height: 74vh;
    }

    #yse-intro-overlay .yse-intro-text {
        font-size: 14px;
    }
}