body {
    background-color: #0e0e2c;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#game-container {
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #4cc9f0;
}

#score, #lives {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

#word-display {
    font-size: 2rem;
    margin: 2rem 0;
    color: #f72585;
}

#word-input {
    padding: 10px;
    font-size: 1.2rem;
    border-radius: 5px;
    border: 2px solid #7209b7;
    background-color: #1a1a3d;
    color: white;
}

#timer-bar {
    width: 300px;
    height: 20px;
    background-color: #4cc9f0;
    margin: 1rem auto;
    transition: width 0.1s linear;
}

#start-button, #restart-button {
    background-color: #b5179e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
}

#game-over {
    margin-top: 2rem;
}