@font-face {
    font-family: 'VCR OSD Mono';
    src: url('../assets/fonts/VCR_OSD_MONO.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.already-here-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    background-color: rgba(0, 0, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.already-here-overlay.show {
    opacity: 1;
}

.already-here-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.5) 100%);
}

.already-here-snow {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    image-rendering: auto;
    pointer-events: none;
}

.already-here-scanlines {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.45) 0px,
            rgba(0, 0, 0, 0.45) 1px,
            transparent 1px,
            transparent 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 0, 0, 0.18),
            rgba(0, 255, 0, 0.06) 1px,
            rgba(0, 0, 255, 0.18) 2px,
            transparent 3px
        );
}

.already-here-text-section {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.already-here-text {
    margin: 0;
    padding: 0 1.5rem;
    font-family: 'VCR OSD Mono', monospace;
    color: #FFFFFF;
    font-size: 2rem;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 0 0 4px rgb(252, 252, 252);
}

.already-here-pause {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 5;
    font-family: 'VCR OSD Mono', monospace;
    color: #FFFFFF;
    font-size: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 4px rgb(252, 252, 252);
    pointer-events: none;
}

.already-here-icon-nudge {
    display: inline-block;
    position: relative;
    top: -2px;
}

@media (max-width: 480px) {
    .already-here-text {
        font-size: 1.3rem;
    }
}