#yse-intro-overlay.yse-intro-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .4s ease, visibility .4s ease;
    box-sizing: border-box;
    padding-top: env(safe-area-inset-top, 0);
    padding-right: env(safe-area-inset-right, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
    padding-left: env(safe-area-inset-left, 0);
}

#yse-intro-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#yse-intro-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#yse-intro-overlay .yse-intro-inner {
    width: 100%;
    min-height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-sizing: border-box;
}

#yse-intro-overlay .yse-intro-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 82vh;
    max-height: 82svh;
    max-height: 82dvh;
    object-fit: contain;
}

#yse-intro-overlay .yse-intro-text {
    color: #111111;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.4;
    text-align: center;
    padding: 0 12px;
    letter-spacing: 0.3px;
}

body.yse-intro-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

html,
body {
    min-height: 100%;
}

@supports (-webkit-touch-callout: none) {
    html,
    body {
        height: -webkit-fill-available;
    }

    #yse-intro-overlay.yse-intro-overlay {
        min-height: -webkit-fill-available;
    }

    #yse-intro-overlay .yse-intro-image {
        max-height: 78vh;
        max-height: 78svh;
        max-height: 78dvh;
    }
}

@media (max-width: 767px) {
    #yse-intro-overlay .yse-intro-inner {
        padding: 16px;
        gap: 14px;
    }

    #yse-intro-overlay .yse-intro-image {
        max-width: 94vw;
        max-height: 74vh;
        max-height: 74svh;
        max-height: 74dvh;
    }

    #yse-intro-overlay .yse-intro-text {
        font-size: 14px;
    }
}