/**
 * @file splash_screen.css
 * @version 1.0.0
 * @date 2025-11-02
 * @description Initial splash screen overlay with logo display
 * @status CURRENT
 */

#splash_screen  {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-duration);
}

body.splash #splash_screen  {
    opacity: 1;
    pointer-events: all;
}

#splash_screen div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#splash_screen div img {
    width: 36rem; height: 20rem;
    max-width: 80vw; max-height: 80vh;
    object-fit: contain;
}

#splash_screen div button {
    width: 200px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 20px;
    border-radius: 0;
    border: 2px solid #fff;
    cursor: pointer;
    margin-top: 20px;
}