.game-form {
    width: 50%;
    margin: 40px auto;
    padding: 20px;
    background: #232323;
    border-radius: 12px;
    box-shadow: none;
}

.game-form label {
    font-size: 1rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: white;
}

.game-form input,
.game-form select,
.game-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    font-family: 'Roboto Mono', monospace;
    background: #1e1e1e;
    border: 1px solid #444;
    color: white;
    border-radius: 6px;
    margin-bottom: 15px;
}

.game-form input:focus,
.game-form select:focus,
.game-form textarea:focus {
    border-color: white;
    outline: none;
}

.game-form button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    background: #444;
    color: white;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-form button:hover {
    background: #666;
    transform: scale(1.02);
}