body {
    background-color: #000; /* Pure black */
    color: gray;            /* Pure white */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    line-height: 1.6;
}

#ui-overlay {
    position: absolute;
    top: 40px;
    width: 600px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5; /* Subtle UI */
}

#game-container {
    width: 600px;
    max-width: 90vw;
}

#text-box {
    font-size: 1rem;
    margin-bottom: 40px;
}

#options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    background: transparent;
    color: #fff;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    width: fit-content;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 1;
}
