* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #ffd6e7, #d6e4ff);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    color: #444;
}

/* Main Container */
.container {
    width: 90%;
    max-width: 850px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Title */
h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 42px;
    color: #ff5c8a;
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
}

.stats div {
    flex: 1;
    background: #fff0f6;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255,92,138,0.15);
}

.stats h2 {
    font-size: 32px;
    color: #ff5c8a;
}

.stats p {
    margin-top: 5px;
    color: #777;
}

/* Quote Box */
.quote-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    min-height: 120px;
    line-height: 1.8;
    font-size: 22px;
    margin-bottom: 20px;
    border: 2px dashed #ffb3c6;
}

/* Textarea */
textarea {
    width: 100%;
    height: 150px;
    border: none;
    border-radius: 18px;
    padding: 18px;
    font-size: 18px;
    resize: none;
    outline: none;
    background: #fff;
    box-shadow: inset 0 3px 8px rgba(0,0,0,0.05);
}

textarea::placeholder {
    color: #aaa;
}

/* Button */
button {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff8fab, #ff5c8a);
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(255,92,138,0.3);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255,92,138,0.4);
}

/* Typing Highlights */
.correct {
    color: #22c55e;
}

.wrong {
    color: #ef4444;
    text-decoration: underline;
}

/* Responsive */
@media(max-width: 700px) {

    .stats {
        flex-direction: column;
    }

    h1 {
        font-size: 32px;
    }

    .quote-box {
        font-size: 18px;
    }
}