body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #e6f9ec;
    margin: 0;
}

.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(60, 179, 113, 0.2);
    text-align: center;
    width: 90%;
    max-width: 600px;
}

h1 {
    color: #3cb371;
    margin-bottom: 25px;
}

#game-area p {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2e8b57;
}

#question-text {
    font-size: 2em;
    font-weight: bold;
    color: #388e3c;
    margin-bottom: 25px;
}

#typing-input {
    width: 80%;
    padding: 15px;
    font-size: 1.3em;
    border: 2px solid #81c784;
    border-radius: 8px;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s ease;
}

#typing-input:focus {
    border-color: #388e3c;
}

button {
    background-color: #3cb371; 
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #2e8b57; 
    transform: translateY(-2px);
}

#score-display, #time-display, #final-score {
    font-size: 1.2em;
    color: #388e3c;
    margin-top: 10px;
}

#result-area h2 {
    color: #3cb371;
    margin-bottom: 20px;
}

.container ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

.input-active {
    outline: 3px solid #4caf50;
    box-shadow: 0 0 8px #4caf50;
    transition: outline 0.2s, box-shadow 0.2s;
}
