body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.game-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 30px;
    text-align: center;
    width: 80%;
    max-width: 500px;
}

h1 {
    color: #333;
    margin-top: 0;
}

.game-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.score, .timer {
    font-size: 18px;
    font-weight: bold;
    color: #555;
}

.word-display {
    font-size: 36px;
    font-weight: bold;
    color: #2575fc;
    margin: 30px 0;
    min-height: 50px;
    padding: 15px;
    border: 2px dashed #ccc;
    border-radius: 10px;
}

#userInput {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

#userInput:focus {
    outline: none;
    border-color: #2575fc;
}

.message {
    font-size: 18px;
    font-weight: bold;
    min-height: 25px;
    margin-bottom: 20px;
}

.correct {
    color: green;
}

.incorrect {
    color: red;
}

#startButton {
    background-color: #2575fc;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#startButton:hover {
    background-color: #1a65e0;
}

#startButton:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}