.game-section {
    background: #0000004c;
    color: #e0f7fa;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-container {
    background: rgba(0, 246, 255, 0.07);
    border: 2px solid #00f6ff;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 24px rgba(0,246,255,0.08);
    text-align: center;
    min-width: 350px;
    min-height: 400px;
    position: relative;
}

#sentence {
    font-size: 1.3rem;
    color: #00f6ff;
    font-weight: bold;
    margin-bottom: 1rem;
    min-height: 2.5em;
}

#typing-input {
    width: 90%;
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid #00f6ff;
    background: #11131a;
    color: #e0f7fa;
    font-size: 1.1rem;
    outline: none;
    margin-bottom: 1rem;
}

#timer {
    font-size: 1.3rem;
    color: #fff176;
    margin-bottom: 1rem;
}

#wpm, #accuracy, #high-score {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

#game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0a0a0fdd;
    color: #fff;
    padding: 2rem 3rem;
    border-radius: 12px;
    font-size: 1.3rem;
    z-index: 10;
}

.hidden {
    display: none;
}