body {
    background-color: #111;
    color: white;
    font-family: 'Press Start 2P', cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#arcade-cabinet {
    background-color: #222;
    padding: 20px;
    border: 4px solid #ff00ff;
    border-radius: 15px;
    box-shadow: 0 0 20px #ff00ff, inset 0 0 10px #ff00ff;
}

#marquee h1 {
    text-align: center;
    color: #00ffff; /* Neon cyan */
    text-shadow: 0 0 10px #00ffff;
    margin-top: 0;
    margin-bottom: 20px;
}

#screen {
    position: relative;
    width: 800px;
    height: 600px;
    background-color: black;
    border: 4px solid #333;
    border-radius: 5px;
    overflow: hidden;
}

#main-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
}

#main-menu h2 {
    color: #ffff00;
    margin-bottom: 40px;
}

.arcade-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 20px;
    margin: 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    width: 400px;
}

.arcade-button:hover:not(.disabled) {
    background-color: #00ffff;
    color: black;
    border-color: #00ffff;
    box-shadow: 0 0 15px #00ffff;
}

.arcade-button.disabled {
    color: #555;
    border-color: #555;
    cursor: not-allowed;
}

#screen::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}