#splash {
    position: fixed !important;
    width: 100%;
    height: 100vh;
    background-color: #ffffff !important;
    z-index: 999997;
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    overflow: hidden;
}

#splash_text {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 999999;
}

#splash_curtain {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: 999998;
}

#splash_curtain.drop {
    animation: dropCurtain 0.5s cubic-bezier(.17,.67,.83,.67) forwards;
}

.splash_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(32px, 5vw, 72px) !important;
    font-weight: bold;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.1em;
    color: #000000 !important;
    line-height: 1;
    white-space: nowrap;
}

.char {
    display: inline-block;
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.2);
    color: #000000 !important;
    line-height: 1;
}

.splash_subtitle {
    display: none;
    font-size: clamp(32px, 5vw, 72px) !important;
    font-weight: bold;
    letter-spacing: 0.2em;
    opacity: 0;
    color: #ffffff !important;
    line-height: 1;
    white-space: nowrap;
}

.splash_subtitle.show {
    animation: justFadeIn 1.5s ease forwards;
}

@keyframes blurFadeIn {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

@keyframes dropCurtain {
    0% {
        top: -100%;
    }
    100% {
        top: 0;
    }
}

@keyframes justFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.splashout {
    animation: fadeOut 1s ease forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@media screen and (max-width: 767px) {
    .splash_title,
    .splash_subtitle {
        letter-spacing: 0.05em;
    }
}

body.splash-active {
    overflow: hidden;
}

#body_wrap {
    opacity: 0;
}