* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    letter-spacing: 2px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    
    cursor: crosshair; 
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.3;
}

input[type="text"] {
    background: transparent;
    border: 1px solid #333333;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    padding: 10px 20px;
    text-align: center;
    outline: none;
    letter-spacing: 2px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus {
    border-color: #ffffff;
}

.hidden {
    display: none;
}

.subtle {
    color: #111111;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #333333;
    padding: 12px;
    text-align: center;
}

th {
    color: #888888;
    font-weight: normal;
}