@font-face {
    font-family: 'Matisse';
    src: url('assets/fonts/matisse/FOT-Matisse Pro EB.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.splash {
    background: #000;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    cursor: pointer;
}


#splash-screen.fade-out {
    opacity: 0;
}

#titlecard {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    display: block;
}

#splash-screen {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.8s ease;
}

#prompt {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Matisse', serif;
    color: #888;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    white-space: nowrap;
    animation: blink 2s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
