@font-face {
    font-family: 'VCR OSD Mono';
    src: url('fonts/VCR_OSD_MONO_1.001.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-image: url('https://i.pinimg.com/originals/39/11/67/3911670998d047b7cd509b495af00ffa.gif');
    
    background-color: #0a0094;
    background-size: 200vh;
    background-position: center;
    font-family: 'VCR OSD Mono', monospace;
    font-style: italic;
    color: #c8c4c2;
    display: static;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    margin: 0;
    overflow: visible;
    filter: brightness(0.85) contrast(1.2) saturate(1.2);
    perspective: 1000px;
    position: relative;
    animation: flicker 0.1s infinite;
}

.center-screen {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    min-height: 90vh;
    width: 95%;
    padding: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.center-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(200, 196, 194, 0.1),
        rgba(200, 196, 194, 0.1) 1px,
        transparent 1px,
        transparent 3px
    );
    z-index: 10;
    pointer-events: none;
    opacity: 0.15;
}

.menu-container {
    text-align: left;
    font-weight: normal;
    width: 100%;
    max-width: 1000px;
    position: relative;
    z-index: 1;
    transform: scaleX(1.1);
}

.menu p,
.menu ul li {
    line-height: 1.5em;
    transform: scaleY(1.4);
    position: relative;
    text-shadow:
        -1px 0 2px #ff0000, 
        1px 0 2px #00ff00, 
        0 1px 2px #0000ff;  
}

p {
    text-align: center;
    font-size: 45px;
}

ul {
    line-height: 1.6em;
    font-size: 40px;
    list-style: none;
    padding: 10px;
    margin: 20px 0;
}

li {
    bottom: 30px;
    padding: px 0;
}

.selected {   
    font-style:bold;
    z-index:-1;
    background-color: #cbcec7;
    color: #0f046e;
    display: inline-flex;
    padding: 1px 10px 1px 1px;
    text-shadow:
        -1px 0 2px #ff0000,
        1px 0 2px #00ff00,
        0 1px 2px #0000ff;
    
}

.instructions {
    transform: scaleX(1.1);
    transform: scaleY(1.5);
    padding: 0px 0px;
    font-size: 35px;
    text-align: right;
    font-weight: normal;
    position: absolute;
    top: 720px;
    right: 1px;
    z-index: 1000;
    text-shadow:
        -1px 0 2px #ff0000,
        1px 0 2px #00ff00,
        0 1px 2px #0000ff;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 1999;
    background: radial-gradient(circle, transparent 35%, rgba(0, 0, 0, 0.8) 115%);
}



.crt {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.02) 50%,
        transparent 10%
    );
    background-size: 100% 2px;
    pointer-events: none;
    animation: scanlines 0.5s linear infinite;
    z-index: 1001;
}
