.wd-page {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    margin: 2rem 0;
    padding: 1.5rem;
}

.wd-page h1 {
    color: #ff6b8b;
    font-family: "Fredoka One", cursive;
    margin: 0 0 0.7rem;
    text-align: center;
}

#wdSubtitle {
    margin: 0 auto 1rem;
    max-width: 760px;
    text-align: center;
}

.wd-hud {
    background: #f9f7fe;
    border-radius: 14px;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    margin-bottom: 1rem;
    padding: 0.75rem;
    text-align: center;
}

.wd-hud .label {
    color: #555;
    font-weight: 700;
}

.wd-passage {
    background: #fff5f8;
    border-radius: 12px;
    line-height: 1.55;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
}

.wd-question {
    color: #2d3047;
    font-family: "Fredoka One", cursive;
    font-size: 1.2rem;
    margin: 0.3rem 0 0.6rem;
}

.wd-options {
    display: grid;
    gap: 0.6rem;
}

.wd-option {
    background: #fff;
    border: 2px solid #ecd7e8;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    padding: 0.65rem 0.75rem;
    text-align: left;
}

.wd-option:hover:enabled {
    border-color: #c79bc1;
}

.wd-option.is-correct {
    background: #f1fff8;
    border-color: #06d6a0;
}

.wd-option.is-wrong {
    background: #fff1f4;
    border-color: #ef476f;
}

.wd-feedback {
    font-weight: 700;
    margin-top: 0.8rem;
    min-height: 1.4rem;
    text-align: center;
}

.wd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 0.8rem;
}

.wd-actions button {
    background: #ff6b8b;
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font-family: "Fredoka One", cursive;
    padding: 0.7rem 1.1rem;
}

.wd-actions button:disabled {
    background: #c9b7c6;
    cursor: default;
}

