body {
    background-color: #008080; /* Windows 95 Teal background */
    margin: 0;
    height: 100vh;
    font-family: 'VT323', monospace;
    overflow: hidden;
    position: relative;
}

.window {
    background-color: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    box-shadow: 1px 1px 0 #000000;
    padding: 2px;
    width: 600px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title-bar {
    background-color: #000080; /* Dark blue title bar */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 4px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

.controls {
    display: flex;
    gap: 2px;
}

.btn-small {
    background-color: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    font-family: 'VT323', monospace;
    font-size: 14px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    padding: 0;
    cursor: default;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    position: relative;
    height: 400px;
}

.logo {
    max-width: 300px;
    border-top: 2px solid #808080;
    border-left: 2px solid #808080;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    margin-bottom: 50px;
}

.enter-btn {
    background-color: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    font-family: 'VT323', monospace;
    font-size: 32px;
    padding: 10px 30px;
    cursor: pointer;
    position: absolute;
    bottom: 50px;
}

.enter-btn:active {
    border-top: 2px solid #000000;
    border-left: 2px solid #000000;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

.fake-cursor {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(0, 0);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.cursor-name {
    color: #ff3333;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    margin-bottom: 2px;
    font-weight: bold;
    text-shadow: 1px 1px 0px #000;
    opacity: 0.8;
    animation: jitter 0.1s infinite;
}

@keyframes jitter {
    0% { transform: translate(0, 0); }
    50% { transform: translate(0.5px, 0.5px); }
    100% { transform: translate(-0.5px, -0.5px); }
}

.flash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20vw; /* Massive text */
    font-family: 'VT323', monospace;
    z-index: 20000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s ease-out;
}

.flash-screen.active {
    opacity: 1;
}
