/**
 * Shared layout/chrome for skill-play.html (?subject=… hubs).
 * Subject-specific palettes stay on each *-skills-page--kids class from main.css.
 */

.msh-skill-play-section .container {
    max-width: 1100px;
}

.msh-skill-play-section .english-skills-kids-title {
    margin-bottom: 0.35rem;
}

.msh-skill-play-section .english-skills-kids-subtitle {
    margin-bottom: 1.35rem;
}

.msh-skill-play-section .english-skills-container + .english-skills-container {
    margin-top: 0.25rem;
}

/* Kid-sized tap targets for hub chrome (WCAG-friendly minimum height). */
.msh-skill-play-section #skills-selection .english-skills-back-btn,
.msh-skill-play-section #skill-content > .english-skills-back-btn {
    min-height: 44px;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

.msh-skill-play-section .english-skills-category-heading {
    margin-top: 0.35rem;
    margin-bottom: 0.85rem;
}

.msh-skill-play-section .skill-categories-grid {
    gap: 1rem;
}

@media (min-width: 600px) {
    .msh-skill-play-section .skill-categories-grid {
        gap: 1.15rem;
    }
}

/* ── Hear Again suppression — CSS-level guarantee (no race condition) ─────────
   Activities that set data-msh-no-hear-again="1" manage their own TTS.
   Hide any hear-again button that appears inside them, regardless of how
   or when it was created. !important ensures JS-injected buttons are hidden. */
.skill-page[data-msh-no-hear-again="1"] .global-hear-again-wrap,
.skill-page[data-msh-no-hear-again="1"] .global-hear-again-btn,
.skill-page[data-msh-no-hear-again="1"] .msh-activity-shell__hear-row,
.skill-page[data-msh-no-hear-again="1"] .activity-instruction-hear-btn {
    display: none !important;
}

/* ── Help pulse — "Learn with example" beacon after 3 wrong answers ──────────
   Draws the child's eye to the help button without being alarming. */
@keyframes mshHelpPulse {
    0%   { transform: scale(1);    box-shadow: 0 0 0  0px rgba(124,58,237,.55); }
    45%  { transform: scale(1.07); box-shadow: 0 0 0 16px rgba(124,58,237,.0); }
    100% { transform: scale(1);    box-shadow: 0 0 0  0px rgba(124,58,237,.0); }
}
.msh-learn-with-example-btn.msh-help-pulse {
    animation: mshHelpPulse 0.72s ease-in-out 4;
    border-color: #7c3aed !important;
    color: #7c3aed !important;
}

/* ══════════════════════════════════════════════════════════════════════════════
   SYLLABLE CLAP — tap-to-clap mechanic
   ══════════════════════════════════════════════════════════════════════════════ */

.syl-clap-word-line {
    font-size: 1.55rem;
    margin: 0.5rem 0 0.25rem;
    text-align: center;
}
.syl-clap-word-line .word-emoji {
    font-size: 2rem;
    margin-right: 0.3rem;
}

.syl-clap-instruction {
    font-size: 1.05rem;
    margin: 0.25rem 0 0.8rem;
    color: #444;
    text-align: center;
}

/* Dot row — shows 👏 for each tap */
.syl-clap-counter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.6rem;
    margin-bottom: 0.8rem;
}
.syl-clap-dot {
    font-size: 1.7rem;
    line-height: 1;
    animation: sylClapDotPop 0.22s ease-out;
}
@keyframes sylClapDotPop {
    0%   { transform: scale(0.4); opacity: 0; }
    70%  { transform: scale(1.2); }
    100% { transform: scale(1);   opacity: 1; }
}

/* Big clap button */
.syl-clap-btn-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0.9rem;
}
.syl-clap-big-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #f59e0b;
    background: #fef3c7;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: #92400e;
    transition: transform 0.12s ease, background 0.12s ease;
    box-shadow: 0 4px 16px rgba(245,158,11,.28);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.syl-clap-big-btn:active,
.syl-clap-big-btn.syl-clap-btn--hit {
    transform: scale(0.88);
    background: #fde68a;
}
@keyframes sylClapBtnBounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(0.82); }
    65%  { transform: scale(1.12); }
    100% { transform: scale(1); }
}
.syl-clap-btn--hit {
    animation: sylClapBtnBounce 0.22s ease-out;
}
.syl-clap-icon {
    font-size: 2.6rem;
    line-height: 1;
}
.syl-clap-label {
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

/* Action row — "Start over" + "That's my answer!" */
.syl-clap-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.syl-clap-reset-btn,
.syl-clap-confirm-btn {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.15s ease;
}
.syl-clap-reset-btn {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}
.syl-clap-confirm-btn {
    background: #10b981;
    color: #fff;
    border-color: #059669;
}
.syl-clap-reset-btn:hover,
.syl-clap-confirm-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
.syl-clap-reset-btn:active,
.syl-clap-confirm-btn:active {
    transform: scale(0.95);
}

/* ══════════════════════════════════════════════════════════════════════════════
   BREAK INTO SYLLABLES — gap-tap mechanic
   ══════════════════════════════════════════════════════════════════════════════ */

.syl-break-instruction {
    font-size: 1.05rem;
    margin: 0.2rem 0 0.15rem;
    text-align: center;
    color: #333;
}
.syl-break-sub {
    font-size: 0.97rem;
    margin: 0 0 0.85rem;
    text-align: center;
    color: #555;
}

/* Word tile row */
.syl-break-word {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0.5rem auto 1rem;
}

/* Each syllable chunk tile */
.syl-break-chunk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    background: #dbeafe;
    border: 2px solid #93c5fd;
    border-radius: 10px;
    font-size: 1.45rem;
    font-weight: 700;
    color: #1e40af;
    min-width: 2.2rem;
    text-align: center;
    line-height: 1.1;
    user-select: none;
}

/* Gap zone between chunks — tappable */
.syl-break-gap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 52px;
    background: transparent;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    margin: 0 2px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.syl-break-gap:hover {
    background: #f0fdf4;
    border-color: #86efac;
}
.syl-break-gap:active {
    transform: scale(0.88);
}

/* Line and dot inside gap — shown only when inactive */
.syl-break-gap__line {
    display: block;
    width: 2px;
    height: 20px;
    background: #d1d5db;
    border-radius: 2px;
    transition: opacity 0.15s ease;
}
.syl-break-gap__dot {
    display: none; /* only shown when active */
    font-size: 1.6rem;
    font-weight: 900;
    color: #2563eb;
    line-height: 1;
}

/* Active gap — shows the · divider */
.syl-break-gap--active {
    background: #eff6ff;
    border: 2px solid #3b82f6;
    animation: sylBreakGapPop 0.2s ease-out;
}
.syl-break-gap--active .syl-break-gap__line {
    display: none;
}
.syl-break-gap--active .syl-break-gap__dot {
    display: block;
}
@keyframes sylBreakGapPop {
    0%   { transform: scale(0.7); }
    60%  { transform: scale(1.18); }
    100% { transform: scale(1); }
}

/* Correct/wrong highlight after "Check my breaks!" */
.syl-break-gap--right {
    background: #dcfce7 !important;
    border-color: #22c55e !important;
}
.syl-break-gap--right .syl-break-gap__dot {
    color: #16a34a;
}
.syl-break-gap--wrong {
    background: #fee2e2 !important;
    border-color: #ef4444 !important;
}
.syl-break-gap--wrong .syl-break-gap__dot {
    color: #dc2626;
}

/* Check button */
.syl-break-check-btn {
    display: block;
    margin: 0 auto 0.75rem;
    padding: 0.65rem 1.6rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.15s ease;
    box-shadow: 0 3px 10px rgba(37,99,235,.3);
}
.syl-break-check-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}
.syl-break-check-btn:active {
    transform: scale(0.95);
}

/* ══════════════════════════════════════════════════════════════════════════════
   ACTION WORDS — verb-pick format (Grammar: Language Rules)
   ══════════════════════════════════════════════════════════════════════════════ */

.action-verb-display {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: #7c3aed;
    text-align: center;
    margin: 0.25rem 0 0.1rem;
    line-height: 1.1;
}
.action-verb-sub {
    font-size: 0.92rem;
    color: #6b7280;
    text-align: center;
    margin: 0 0 0.8rem;
}

/* ══════════════════════════════════════════════════════════════════════════════
   RHYMING PICTURES — tap-the-pair mechanic
   ══════════════════════════════════════════════════════════════════════════════ */

.rhyme-pic-lead {
    font-size: 1.05rem;
    margin: 0.2rem 0 1rem;
    text-align: center;
}

.rhyme-pic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 340px;
    margin: 0 auto 1rem;
}

.rhyme-pic-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.75rem 0.5rem;
    background: #f0f9ff;
    border: 3px solid #bae6fd;
    border-radius: 14px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0c4a6e;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.rhyme-pic-card .word-emoji {
    font-size: 2.4rem;
    line-height: 1;
}
.rhyme-pic-card:hover {
    border-color: #7dd3fc;
    background: #e0f2fe;
}
.rhyme-pic-card:active {
    transform: scale(0.93);
}

/* First-tap selection */
.rhyme-pic-card--selected {
    border-color: #f59e0b !important;
    background: #fef3c7 !important;
    transform: scale(1.04);
    box-shadow: 0 0 0 3px rgba(245,158,11,.35);
    animation: rhymePicPulse 0.8s ease-in-out infinite alternate;
}
@keyframes rhymePicPulse {
    from { box-shadow: 0 0 0 3px rgba(245,158,11,.35); }
    to   { box-shadow: 0 0 0 6px rgba(245,158,11,.12); }
}

/* Matched pair */
.rhyme-pic-card--matched {
    border-color: #22c55e !important;
    background: #dcfce7 !important;
    transform: scale(1.04);
    pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════════════════════
   WORD OPPOSITES — initial-word card
   ══════════════════════════════════════════════════════════════════════════════ */

.word-opp-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fef9c3;
    border: 2px solid #fbbf24;
    border-radius: 14px;
    padding: 0.6rem 1.1rem;
    margin: 0.3rem auto 0.3rem;
    max-width: 240px;
}
.word-opp-emoji {
    font-size: 2rem;
    line-height: 1;
}
.word-opp-word {
    font-size: 1.75rem;
    font-weight: 900;
    color: #92400e;
    letter-spacing: 0.05em;
}
.word-opp-arrow {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0.2rem 0 0.5rem;
    text-align: center;
}

/* ══════════════════════════════════════════════════════════════════════════════
   WORD GROUPS — category box + member chips
   ══════════════════════════════════════════════════════════════════════════════ */

.word-group-box {
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 14px;
    padding: 0.65rem 0.9rem 0.5rem;
    margin: 0.25rem auto 0.6rem;
    max-width: 320px;
    text-align: center;
}
.word-group-label {
    font-size: 1.2rem;
    font-weight: 900;
    color: #166534;
    margin: 0 0 0.45rem;
    letter-spacing: 0.04em;
}
.word-group-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
}
.word-group-chip {
    background: #dcfce7;
    border: 1.5px solid #4ade80;
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #15803d;
}
.word-group-chip--unknown {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #9ca3af;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════════════════════════════
   PICTURE STORIES — big emoji scene
   ══════════════════════════════════════════════════════════════════════════════ */

.pic-story-scene {
    font-size: 2.6rem;
    letter-spacing: 0.15em;
    text-align: center;
    margin: 0.3rem 0 0.1rem;
    line-height: 1.2;
}
.pic-story-label {
    font-size: 0.88rem;
    color: #64748b;
    text-align: center;
    font-style: italic;
    margin: 0 0 0.6rem;
}

/* ══════════════════════════════════════════════════════════════════════════════
   WHAT HAPPENS NEXT — numbered sequence
   ══════════════════════════════════════════════════════════════════════════════ */

.whats-next-sequence {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    margin: 0.3rem auto 0.65rem;
    max-width: 340px;
}
.whats-next-step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
    border-radius: 10px;
    padding: 0.45rem 0.85rem;
    width: 100%;
}
.whats-next-step--unknown {
    background: #f9fafb;
    border-color: #d1d5db;
    border-style: dashed;
}
.whats-next-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    flex-shrink: 0;
}
.whats-next-step--unknown .whats-next-num {
    background: #9ca3af;
}
.whats-next-text {
    font-size: 0.92rem;
    color: #1e3a8a;
    line-height: 1.3;
}
.whats-next-step--unknown .whats-next-text {
    color: #9ca3af;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.whats-next-arrow {
    font-size: 1.1rem;
    color: #93c5fd;
    line-height: 1;
    margin: 0.05rem 0;
}

/* ══════════════════════════════════════════════════════════════════════════════
   RHYME TIME — listening-only odd-one-out
   ══════════════════════════════════════════════════════════════════════════════ */

.rhyme-time-lead {
    font-size: 1.05rem;
    margin: 0.2rem 0 0.1rem;
    text-align: center;
    color: #1e3a5f;
}
.rhyme-time-sub {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0 0 0.9rem;
    text-align: center;
}

/* Slightly larger emoji for the listen-only cards */
.rhyme-time-card .word-emoji--solo {
    font-size: 2.8rem;
}
.rhyme-time-label {
    font-size: 0.82rem;
    color: #94a3b8;
    font-style: italic;
    margin-top: 0.15rem;
}

/* ══ RHYME PAIRS — ✓/✗ buttons ═══════════════════════════════════════════════ */

.rhyme-pair-btn-row {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    margin: 0.6rem 0 0.5rem;
}
.rhyme-pair-yn-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border: none;
    border-radius: 50%;
    font-size: 2.8rem;
    font-weight: 900;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.13s ease, box-shadow 0.13s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.rhyme-pair-yn-btn:active { transform: scale(0.88); }
.rhyme-pair-yn-btn--yes {
    background: #22c55e;
    color: #fff;
}
.rhyme-pair-yn-btn--no {
    background: #ef4444;
    color: #fff;
}

/* ══ LISTEN FOR RHYMES — speaker display ═════════════════════════════════════ */

.lfr-listen-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f0f9ff;
    border: 2px solid #7dd3fc;
    border-radius: 16px;
    padding: 0.6rem 1rem 0.5rem;
    margin: 0.3rem auto 0.75rem;
    max-width: 280px;
}
.lfr-speaker {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}
.lfr-listen-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0c4a6e;
    text-align: center;
    margin: 0;
}

/* ══ SIGHT WORDS ══════════════════════════════════════════════════════════════ */

.sight-word-instruction {
    font-size: 1rem;
    color: #374151;
    text-align: center;
    margin: 0.2rem 0 0.65rem;
}

/* Spot the Word — big red target */
.sight-word-target {
    font-size: 2.6rem;
    font-weight: 900;
    color: #dc2626;
    text-align: center;
    background: #fef2f2;
    border: 3px solid #fca5a5;
    border-radius: 16px;
    padding: 0.5rem 1.2rem;
    margin: 0.2rem auto 0.75rem;
    max-width: 220px;
    letter-spacing: 0.06em;
}

/* Text-only word-choice buttons (Spot, Flash Cards, Find, Read) */
.sight-word-choices {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.sight-word-btn {
    min-width: 78px;
    padding: 0.55rem 0.85rem;
    background: #f0f9ff;
    border: 2.5px solid #7dd3fc;
    border-radius: 12px;
    font-size: 1.35rem;
    font-weight: 900;
    color: #0c4a6e;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    letter-spacing: 0.04em;
    transition: transform 0.12s ease, background 0.12s ease;
}
.sight-word-btn:hover { background: #e0f2fe; border-color: #38bdf8; }
.sight-word-btn:active { transform: scale(0.9); }

/* Word Flash Cards — purple gradient card */
.sight-flash-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    border-radius: 18px;
    padding: 0.75rem 1.5rem;
    margin: 0.25rem auto 0.75rem;
    max-width: 220px;
    color: #fff;
}
.sight-flash-word {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
}
.sight-flash-sub {
    font-size: 0.82rem;
    margin-top: 0.3rem;
    opacity: 0.85;
}

/* Find the Sight Word — sentence with highlight */
.sight-sentence-lead {
    font-size: 0.95rem;
    text-align: center;
    margin: 0.15rem 0 0.3rem;
    color: #6b7280;
}
.sight-sentence {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 0.5rem;
    color: #1e3a5f;
    line-height: 1.4;
}
.sight-sentence-highlight {
    background: #fef08a;
    border-radius: 4px;
    padding: 0 0.2em;
    color: #854d0e;
    font-weight: 900;
}

/* Match the Word — 2×2 pair grid */
.sight-match-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    max-width: 280px;
    margin: 0.3rem auto 0.65rem;
}
.sight-match-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: #f0f9ff;
    border: 2.5px solid #7dd3fc;
    border-radius: 14px;
    font-size: 1.4rem;
    font-weight: 900;
    color: #0c4a6e;
    cursor: pointer;
    letter-spacing: 0.04em;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s ease, border-color 0.15s ease, background 0.15s ease;
}
.sight-match-card:active { transform: scale(0.91); }
.sight-match-card--selected {
    border-color: #f59e0b !important;
    background: #fef3c7 !important;
    transform: scale(1.04);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.35);
}
.sight-match-card--matched {
    border-color: #22c55e !important;
    background: #dcfce7 !important;
    color: #166534;
    pointer-events: none;
}

/* Read Sight Words — listen icon */
.sight-listen-display {
    font-size: 3.5rem;
    text-align: center;
    margin: 0.25rem 0 0.15rem;
    line-height: 1;
}

/* Word Memory Game — 2×3 flip-card grid */
.sight-mem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.55rem;
    max-width: 300px;
    margin: 0.25rem auto 0.65rem;
}
.sight-mem-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 62px;
    background: #4f46e5;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s ease;
}
.sight-mem-card:active { transform: scale(0.9); }
.sight-mem-card--revealed {
    background: #eff6ff;
    border: 2.5px solid #3b82f6;
}
.sight-mem-card--matched {
    background: #dcfce7;
    border: 2.5px solid #22c55e;
    pointer-events: none;
    cursor: default;
}
.sight-mem-back {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 900;
}
.sight-mem-word {
    font-size: 1.15rem;
    font-weight: 900;
    color: #1e40af;
    letter-spacing: 0.04em;
}

/* ══ v=20260726a: Capital Letters / Action Words / What Comes First ══════════ */

/* Capital Letters — big word emoji hero */
.cap-word-hero-emoji {
    font-size: 5rem;
    line-height: 1;
    margin: 0.25rem 0 0.5rem;
    text-align: center;
}

/* Action Words — large action emoji + verb word */
.action-hero-emoji {
    font-size: 5rem;
    line-height: 1;
    margin: 0.25rem 0 0.2rem;
    text-align: center;
}
.action-verb-word {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #7c3aed;
    text-align: center;
    margin: 0 0 0.5rem;
}

/* What Comes First (Sentence Rules replacement) — two big picture buttons */
.seq-choice-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem 0;
}
.seq-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    width: 140px;
    padding: 1rem 0.75rem;
    background: #f5f3ff;
    border: 3px solid #c4b5fd;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}
.seq-btn:hover, .seq-btn:focus { background: #ede9fe; border-color: #7c3aed; outline: none; }
.seq-btn:active { transform: scale(0.93); }
.seq-emoji {
    font-size: 4rem;
    line-height: 1;
}
.seq-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4c1d95;
    text-align: center;
}
