body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}

form {
    background-color: #1e1e1e;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

input[type="text"],
input[type="submit"] {
    background-color: #2b2b2b;
    color: #e0e0e0;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
}

input[type="text"]:focus {
    outline: none;
    border-color: #6c63ff;
}

input[type="submit"] {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #3a3a3a;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

#word {
    text-transform: uppercase;
}
