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

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

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

#lpSubtitle .subtitle-es,
#lpSubtitle .subtitle-en {
    display: block;
}

#lpSubtitle .subtitle-en {
    color: #666;
    font-size: 0.95em;
    margin-top: 0.2rem;
}

.lp-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;
}

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

.lp-prompt-box {
    align-items: center;
    background: #fff5f8;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
}

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

.speak-btn {
    background: none;
    border: none;
    color: #ff6b8b;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    padding: 0;
    text-shadow: 0 2px 0 rgba(255, 209, 102, 0.65);
    transition: transform 0.2s;
}

.speak-btn:hover {
    transform: scale(1.1);
}

.lp-options {
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.lp-option {
    background: linear-gradient(135deg, #4ecdc4, #06d6a0);
    border: 0;
    border-radius: 14px;
    color: #fff;
    cursor: pointer;
    min-height: 90px;
    padding: 0.6rem;
    text-align: center;
}

.lp-option:hover:enabled {
    filter: brightness(0.95);
}

.lp-option .emoji {
    display: block;
    font-size: 2.1rem;
}

.lp-option .word {
    display: block;
    font-weight: 700;
    margin-top: 0.2rem;
}

.lp-option.is-correct {
    background: linear-gradient(135deg, #06d6a0, #4ecdc4);
    outline: 3px solid #058f6b;
}

.lp-option.is-wrong {
    background: linear-gradient(135deg, #ef476f, #ff6b8b);
    outline: 3px solid #b13352;
}

.lp-feedback {
    font-weight: 700;
    margin-top: 0.9rem;
    min-height: 1.5rem;
    text-align: center;
}

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


