body { font-family: 'Segoe UI', Arial, sans-serif; background: #f7f7fa; }
.typing-test-basic, .typing-test-advanced {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 24px 24px 24px;
    text-align: center;
}
.words-container {
    font-size: 1.5rem;
    margin-bottom: 18px;
    min-height: 60px;
    letter-spacing: 1px;
    word-break: break-word;
}
.typing-input {
    width: 100%;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #bbb;
    margin-bottom: 18px;
    outline: none;
    transition: border 0.2s;
}
.typing-input:focus { border: 1.5px solid #4f8cff; }
.typing-stats {
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: #444;
}
.restart-btn {
    background: #4f8cff;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.restart-btn:hover { background: #2563eb; }
.word-correct { color: #22c55e; }
.word-incorrect { color: #ef4444; text-decoration: underline; }
