body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #ffffff;
}

.game-container {
    text-align: center;
    background: #1e1e1e;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
}

h1 {
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    color: #cccccc;
}

#guess-input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 20px 0;
    border: 2px solid #555;
    border-radius: 5px;
    background-color: #2e2e2e;
    color: #ffffff;
    font-size: 1em;
}

button {
    width: 100%;
    padding: 10px 0;
    background-color: #6200ea;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3700b3;
}

#message {
    margin-top: 20px;
    font-size: 1.2em;
    color: #ffffff;
}
