body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.game-container {
    background-color: #2d2d2d;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    text-align: center;
    width: 300px;
}

#word-display {
    font-size: 32px;
    letter-spacing: 5px;
    margin: 20px 0;
    font-weight: bold;
}

input {
    width: 50px;
    height: 40px;
    font-size: 24px;
    text-align: center;
    border: none;
    border-radius: 6px;
    margin-right: 10px;
    text-transform: lowercase;
}

button {
    height: 44px;
    padding: 0 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

#message {
    color: #ff9800;
    min-height: 20px;
}