/* ============================================================================
   Adventures in Mousington — "Legendary" premium layers
   Additive stylesheet for: Badge Passport, Parent & Teacher Guide,
   Publisher Demo (Pitch Mode), and the "Explore More" feature rail.

   Uses the existing design tokens (--ink, --parchment, --candle, etc.) so it
   inherits the warm candlelight / parchment / moonbeam library language.
   No storage. Fully keyboard accessible. Reduced-motion aware.
   ============================================================================ */

/* ---------- Top-nav buttons for the new premium surfaces ---------- */
.topbar__nav .nav-legendary {
  position: relative;
}
.topbar__nav .nav-legendary::after {
  content: "";
  position: absolute;
  top: 5px; right: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--candle);
  box-shadow: 0 0 8px 1px rgba(240, 179, 65, 0.8);
}
@media (max-width: 820px) {
  /* Collapse premium nav items on smaller screens; the home rail covers them. */
  .topbar__nav .nav-legendary { display: none; }
}

/* ============================================================================
   EXPLORE MORE — premium feature rail on the homepage
   ============================================================================ */
.explore {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(16px, 4vw, 40px) 8px;
}
.explore__head { margin-bottom: 22px; }
.explore__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .explore__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .explore__grid { grid-template-columns: 1fr; } }

.explore-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(255, 220, 160, 0.28), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.explore-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--candle-2);
}
.explore-card:focus-visible {
  outline: 3px solid var(--candle);
  outline-offset: 2px;
}
.explore-card__ico {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border-radius: 14px;
  background: var(--ink);
  color: var(--candle);
  box-shadow: inset 0 0 0 1px rgba(240, 179, 65, 0.35);
}
.explore-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  margin: 2px 0 0;
  color: var(--ink-3);
}
.explore-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.explore-card__go {
  margin-top: auto;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--burgundy);
}
.explore-card__go::after { content: " →"; }

/* ============================================================================
   SHARED MODAL SHELL (Passport + Publisher Demo)
   ============================================================================ */
.lgm {
  position: fixed; inset: 0;
  z-index: 120;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(10px, 3vw, 28px);
}
.lgm[hidden] { display: none; }
.lgm__scrim {
  position: absolute; inset: 0;
  background: rgba(10, 16, 36, 0.62);
  backdrop-filter: blur(3px);
  border: 0; padding: 0; margin: 0; cursor: pointer;
}
.lgm__panel {
  position: relative;
  width: min(960px, 100%);
  max-height: min(92vh, 880px);
  display: flex; flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: lgmIn 0.32s cubic-bezier(.2,.7,.2,1);
}
@keyframes lgmIn { from { transform: translateY(14px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.mode-reduced-motion .lgm__panel { animation: none; }

.lgm__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 16px clamp(16px, 3vw, 26px);
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-3) 100%);
  color: var(--parchment);
  border-bottom: 1px solid rgba(240, 179, 65, 0.25);
}
.lgm__bar h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  margin: 0; color: var(--parchment);
}
.lgm__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--candle);
  margin: 0 0 2px;
}
.lgm__close {
  flex: 0 0 auto;
  background: rgba(245, 234, 208, 0.12);
  color: var(--parchment);
  border: 1px solid rgba(245, 234, 208, 0.3);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
}
.lgm__close:hover { background: rgba(245, 234, 208, 0.22); }
.lgm__close:focus-visible { outline: 3px solid var(--candle); outline-offset: 2px; }
.lgm__body { overflow-y: auto; padding: clamp(16px, 3vw, 28px); }

/* ============================================================================
   BADGE PASSPORT
   ============================================================================ */
.passport__note {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--surface-2);
  border: 1px dashed var(--rule);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin: 0 0 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.passport__note strong { color: var(--ink-3); }
.passport__note .ico { font-size: 1.1rem; line-height: 1; }

.passport__section-title {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 6px 0 14px;
  display: flex; align-items: center; gap: 10px;
}
.passport__section-title::after {
  content: ""; flex: 1; height: 1px; background: var(--rule-soft);
}

/* Stamp grid — wax-seal / passport-stamp look */
.stamp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  margin: 0 0 30px;
}
.stamp {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 8px;
  padding: 18px 12px 14px;
  border-radius: var(--radius);
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(255, 220, 160, 0.25), transparent 65%),
    var(--surface);
  border: 1px solid var(--rule);
}
.stamp__disc {
  width: 76px; height: 76px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fae6bd, #e6c277 70%, #c89a4a);
  border: 3px double rgba(140, 47, 63, 0.55);
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.5), inset 0 -3px 8px rgba(140,100,60,0.35), var(--shadow-sm);
  color: var(--ink-3);
  transform: rotate(-6deg);
}
.stamp[data-tone="child"] .stamp__disc {
  background: radial-gradient(circle at 35% 30%, #f7d3d6, #d9a0a4 70%, #b96e7a);
  border-color: rgba(43, 54, 75, 0.4);
}
.stamp[data-tone="moon"] .stamp__disc {
  background: radial-gradient(circle at 35% 30%, #cfe0ff, #8fa9d8 70%, #5c6f9c);
  border-color: rgba(43, 54, 75, 0.5);
}
.stamp__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink-3);
  line-height: 1.15;
}
.stamp__desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }
.stamp__state {
  font-family: var(--font-ui);
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
}
.stamp[data-earned="true"] .stamp__state { background: rgba(107, 126, 75, 0.2); color: #4d5e36; }
.stamp[data-earned="false"] .stamp__state { background: rgba(155, 142, 114, 0.18); color: var(--text-faint); }
.stamp[data-earned="false"] .stamp__disc { filter: grayscale(0.55) opacity(0.6); transform: rotate(-6deg) scale(0.96); }

/* Lore cards — collectible story cards */
.lore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.lore-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.lore-card__top {
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--parchment);
  display: flex; align-items: center; gap: 12px;
}
.lore-card__ico {
  width: 44px; height: 44px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; border-radius: 12px;
  background: rgba(240, 179, 65, 0.18);
  border: 1px solid rgba(240, 179, 65, 0.4);
}
.lore-card__title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem; margin: 0; color: var(--parchment);
}
.lore-card__kicker {
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--candle); margin: 0 0 1px;
}
.lore-card__body { padding: 14px 16px 16px; }
.lore-card__body p { margin: 0; font-size: 0.9rem; color: var(--text); line-height: 1.55; }
.lore-card__tag {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700;
  color: var(--burgundy);
}

/* ============================================================================
   PARENT & TEACHER GUIDE (homepage section)
   ============================================================================ */
.tguide { max-width: 1160px; margin: 0 auto; padding: clamp(28px, 6vw, 64px) clamp(16px, 4vw, 40px); }
.tguide__lede { max-width: 60ch; }

.tguide__tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 24px 0 22px;
  border-bottom: 1px solid var(--rule-soft);
  padding-bottom: 14px;
}
.tguide__tab {
  border: 1px solid var(--rule);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600; font-size: 0.9rem;
}
.tguide__tab[aria-selected="true"] {
  background: var(--ink); color: var(--parchment); border-color: var(--ink);
}
.tguide__tab:focus-visible { outline: 3px solid var(--candle); outline-offset: 2px; }

.tguide__panel[hidden] { display: none; }

.tguide__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.tcard {
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(255, 220, 160, 0.18), transparent 60%),
    var(--surface);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.tcard__eyebrow {
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--burgundy);
  margin: 0 0 6px;
}
.tcard h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink-3); margin: 0 0 8px; }
.tcard p { margin: 0 0 8px; font-size: 0.92rem; color: var(--text); line-height: 1.55; }
.tcard ul { margin: 8px 0 0; padding-left: 1.1em; }
.tcard li { font-size: 0.9rem; color: var(--text); line-height: 1.5; margin-bottom: 5px; }
.tcard--print {
  border-style: dashed;
  background: var(--surface-2);
}
.tcard--print .tcard__eyebrow { color: var(--moss); }

/* Character discussion cards */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.char-card {
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.char-card__head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--parchment);
}
.char-card__ico { font-size: 1.6rem; }
.char-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin: 0; color: var(--parchment); }
.char-card__role { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--candle); margin: 0; }
.char-card__body { padding: 14px 16px; }
.char-card__body p { margin: 0 0 10px; font-size: 0.9rem; color: var(--text); line-height: 1.5; }
.char-card__q {
  font-family: var(--font-display); font-style: italic;
  color: var(--ink-3); font-size: 0.95rem; border-left: 3px solid var(--candle);
  padding-left: 12px; margin: 0;
}

/* ============================================================================
   PUBLISHER DEMO / PITCH MODE
   ============================================================================ */
.pitch__panel { width: min(1040px, 100%); }
.pitch__bar { background: linear-gradient(120deg, #11183a, #1f2a55 60%, #3a2740); }

.pitch__stage { padding: 0; }
.pitch__slide { display: none; padding: clamp(20px, 4vw, 44px); }
.pitch__slide.is-active { display: block; animation: pitchSlide 0.45s cubic-bezier(.2,.7,.2,1); }
@keyframes pitchSlide { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.mode-reduced-motion .pitch__slide.is-active { animation: none; }

.pitch__kicker {
  font-family: var(--font-ui); font-size: 0.74rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--burgundy); margin: 0 0 10px;
}
.pitch__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.02;
  color: var(--ink-3); margin: 0 0 14px; letter-spacing: -0.02em;
}
.pitch__lede { font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--text-muted); max-width: 52ch; margin: 0 0 22px; line-height: 1.45; }
.pitch__points { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; max-width: 60ch; }
.pitch__points li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1rem; color: var(--text); line-height: 1.5;
}
.pitch__points li .dot {
  flex: 0 0 auto; margin-top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--candle); box-shadow: 0 0 10px rgba(240,179,65,0.6);
}
.pitch__hero {
  margin: 0 0 22px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--rule); box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 7; background: var(--ink-3);
}
.pitch__hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Cover slide */
.pitch__cover { text-align: center; padding: clamp(28px, 6vw, 60px) clamp(20px, 4vw, 44px); }
.pitch__cover .pitch__title { font-size: clamp(2.2rem, 6vw, 4rem); }
.pitch__metrics { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; margin-top: 26px; }
.pitch__metric { display: flex; flex-direction: column; }
.pitch__metric strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink-3); }
.pitch__metric span { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }

/* Footer controls */
.pitch__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px clamp(16px, 3vw, 26px);
  border-top: 1px solid var(--rule-soft);
  background: var(--surface-2);
}
.pitch__dots { display: flex; gap: 8px; align-items: center; }
.pitch__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--rule); border: 0; padding: 0;
}
.pitch__dot[aria-current="true"] { background: var(--ink); transform: scale(1.2); }
.pitch__dot:focus-visible { outline: 2px solid var(--candle); outline-offset: 2px; }
.pitch__nav { display: flex; gap: 8px; }
.pitch__progress { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

@media (max-width: 600px) {
  .pitch__foot { flex-wrap: wrap; }
  .pitch__nav { width: 100%; justify-content: space-between; }
}

/* ============================================================================
   Live rewards bridge — Secret Hunt / Parent Mode -> Mousington Passport
   In-memory, current page session only. Honest "Earned this session" framing.
   ============================================================================ */

/* Passport "Stamps earned this session" strip (top of the Passport body). */
.passport__live {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 220, 160, 0.22), rgba(255, 220, 160, 0.08));
  border: 1px solid var(--rule);
  font-family: var(--font-ui);
}
.passport__live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fae6bd, #c89a4a);
  box-shadow: 0 0 0 0 rgba(200, 154, 74, 0.55);
  animation: mhLiveDot 2.4s ease-out infinite;
  flex: 0 0 auto;
}
@keyframes mhLiveDot {
  0% { box-shadow: 0 0 0 0 rgba(200, 154, 74, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(200, 154, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 154, 74, 0); }
}
.passport__live-label {
  font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-3); flex: 1 1 auto;
}
.passport__live-count {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.1rem; color: var(--ink-3);
  min-width: 1.6em; text-align: center;
  padding: 2px 10px; border-radius: 999px;
  background: var(--ink); color: var(--candle);
}

/* "Just earned this session" celebratory pulse on a grown-up stamp. */
.stamp.is-justearned {
  animation: mhStampPop 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.stamp.is-justearned .stamp__disc {
  animation: mhStampSeal 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes mhStampPop {
  0% { box-shadow: 0 0 0 0 rgba(200, 154, 74, 0.0); }
  25% { box-shadow: 0 0 0 6px rgba(200, 154, 74, 0.35); }
  100% { box-shadow: 0 0 0 0 rgba(200, 154, 74, 0); }
}
@keyframes mhStampSeal {
  0% { transform: rotate(-6deg) scale(1.55); opacity: 0.2; }
  55% { transform: rotate(-6deg) scale(0.9); opacity: 1; }
  100% { transform: rotate(-6deg) scale(1); }
}

/* Session pip on the nav Passport button and the Explore rail Passport card. */
.nav-passport { display: inline-flex; align-items: center; gap: 6px; }
.nav-passport__pip,
.explore-card__pip {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px;
  font-family: var(--font-ui); font-weight: 800; font-size: 0.68rem;
  background: var(--candle); color: var(--ink);
  line-height: 1;
}
.nav-passport__pip[hidden],
.explore-card__pip[hidden] { display: none; }
.explore-card { position: relative; }
.explore-card__pip {
  position: absolute; top: 14px; right: 14px;
  min-width: 22px; height: 22px; font-size: 0.74rem;
  box-shadow: var(--shadow-sm);
}

/* Host-level premium stamp toast (separate from the in-iframe badge toast).
   aria-live region — does NOT rely on sound. */
.mh-host-toast {
  position: fixed; z-index: 3000;
  left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
  display: flex; align-items: center; gap: 14px;
  max-width: min(92vw, 460px);
  padding: 14px 20px 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2, #2b364b) 100%);
  color: var(--parchment);
  border: 1px solid rgba(255, 220, 160, 0.35);
  box-shadow: 0 18px 50px rgba(20, 24, 40, 0.45), inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0; pointer-events: none;
  transition: opacity 0.32s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.mh-host-toast[data-show="true"] {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.mh-host-toast__seal {
  font-size: 2rem; line-height: 1; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fae6bd, #e6c277 70%, #c89a4a);
  border: 3px double rgba(140, 47, 63, 0.55);
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.5), inset 0 -3px 8px rgba(140,100,60,0.35);
}
.mh-host-toast.is-stamping .mh-host-toast__seal {
  animation: mhSealStamp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes mhSealStamp {
  0% { transform: rotate(-14deg) scale(1.8); opacity: 0.1; }
  55% { transform: rotate(-6deg) scale(0.88); opacity: 1; }
  100% { transform: rotate(-6deg) scale(1); }
}
.mh-host-toast__text { display: flex; flex-direction: column; gap: 2px; }
.mh-host-toast__eyebrow {
  font-family: var(--font-ui); font-size: 0.66rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--candle); font-weight: 700;
}
.mh-host-toast__name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  color: var(--parchment); line-height: 1.2;
}

/* Reduced motion: disable bridge animations, keep state changes legible. */
.mode-reduced-motion .passport__live-dot,
.mode-reduced-motion .stamp.is-justearned,
.mode-reduced-motion .stamp.is-justearned .stamp__disc,
.mode-reduced-motion .mh-host-toast.is-stamping .mh-host-toast__seal {
  animation: none;
}
.mode-reduced-motion .mh-host-toast { transition: opacity 0.2s ease; transform: translateX(-50%); }
.mode-reduced-motion .mh-host-toast[data-show="true"] { transform: translateX(-50%); }
@media (prefers-reduced-motion: reduce) {
  .passport__live-dot,
  .stamp.is-justearned,
  .stamp.is-justearned .stamp__disc,
  .mh-host-toast.is-stamping .mh-host-toast__seal { animation: none; }
  .mh-host-toast { transition: opacity 0.2s ease; transform: translateX(-50%); }
  .mh-host-toast[data-show="true"] { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .mh-host-toast { left: 12px; right: 12px; transform: translateY(20px); max-width: none; }
  .mh-host-toast[data-show="true"] { transform: translateY(0); }
}
