/* Quizzman Library Explore — cool slate / steel blue */
:root {
  --ex-bg: #F1F5F9;
  --ex-card: #FFFFFF;
  --ex-primary: #3B82F6;
  --ex-primary-soft: rgba(59, 130, 246, 0.12);
  --ex-accent: #64748B;
  --ex-accent-soft: rgba(100, 116, 139, 0.14);
  --ex-success: #0D9488;
  --ex-success-soft: rgba(13, 148, 136, 0.12);
  --ex-text: #1E293B;
  --ex-muted: #64748B;
  --ex-line: rgba(30, 41, 59, 0.10);
  --ex-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  --ex-shadow-lg: 0 18px 44px rgba(15, 23, 42, 0.10);
  --ex-radius: 22px;
  --ex-radius-sm: 16px;
  --ex-sidebar: 228px;
  --ex-font: "Nunito", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; min-height: 100%;
  background: var(--ex-bg);
  color: var(--ex-text);
  font-family: var(--ex-font);
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
body.ex-body { overflow-x: hidden; }

/* Layout shell */
.ex-shell {
  display: grid;
  grid-template-columns: var(--ex-sidebar) minmax(0, 1fr);
  min-height: calc(100vh - 64px);
}
.ex-sidebar {
  position: sticky; top: 64px; align-self: start;
  height: calc(100vh - 64px);
  padding: 20px 14px 28px;
  border-right: 1px solid var(--ex-line);
  background: color-mix(in srgb, var(--ex-bg) 88%, #fff);
  overflow-y: auto;
}
.ex-main {
  padding: 20px 28px 64px;
  max-width: 1280px;
  width: 100%;
}
.ex-side-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 15px; margin: 0 8px 18px;
}
.ex-side-brand span {
  width: 34px; height: 34px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--ex-primary-soft); color: var(--ex-primary);
}
.ex-nav { display: flex; flex-direction: column; gap: 4px; }
.ex-nav button {
  display: flex; align-items: center; gap: 10px;
  width: 100%; border: 0; background: transparent;
  color: var(--ex-muted); padding: 11px 12px; border-radius: 14px;
  cursor: pointer; font-weight: 700; font-size: 14px; text-align: left;
  transition: .18s ease;
}
.ex-nav button i { width: 18px; text-align: center; }
.ex-nav button:hover { background: rgba(59, 130, 246, 0.08); color: var(--ex-text); }
.ex-nav button.active {
  background: #334155; color: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

/* Greeting + search */
.ex-hello { margin-bottom: 18px; }
.ex-hello h1 {
  margin: 0; font-size: clamp(26px, 3vw, 34px); font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.15;
}
.ex-hello p { margin: 6px 0 0; color: var(--ex-muted); font-weight: 600; font-size: 15px; }

.ex-search {
  margin: 18px 0 22px;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-radius: 999px;
  background: var(--ex-card); border: 1px solid var(--ex-line);
  box-shadow: var(--ex-shadow); cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ex-search:hover { transform: translateY(-1px); box-shadow: var(--ex-shadow-lg); }
.ex-search i { color: var(--ex-primary); font-size: 18px; }
.ex-search span { color: var(--ex-muted); font-weight: 700; font-size: 15px; }
.ex-search kbd {
  margin-left: auto; font-size: 11px; font-weight: 800;
  padding: 4px 8px; border-radius: 8px; background: #E2E8F0; color: #334155;
}

/* Hero banner */
.ex-banner {
  position: relative; overflow: hidden;
  border-radius: 28px; min-height: 168px;
  padding: 28px 32px; margin-bottom: 28px;
  background:
    radial-gradient(circle at 88% 18%, rgba(148, 163, 184, 0.35), transparent 42%),
    linear-gradient(135deg, #1E293B 0%, #334155 48%, #3B82F6 130%);
  color: #fff; box-shadow: var(--ex-shadow-lg);
}
.ex-banner::after {
  content: "🐼"; position: absolute; right: 28px; bottom: -8px;
  font-size: 96px; opacity: .22; transform: rotate(-8deg); pointer-events: none;
}
.ex-banner .tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px; font-size: 12px; font-weight: 800;
  background: rgba(255,255,255,.18); margin-bottom: 10px;
}
.ex-banner h2 { margin: 0; font-size: clamp(22px, 2.6vw, 30px); font-weight: 900; max-width: 16ch; }
.ex-banner p { margin: 8px 0 16px; opacity: .92; font-weight: 650; }
.ex-banner .cta {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0; border-radius: 999px; padding: 12px 18px;
  background: #fff; color: #1E293B; font-weight: 850; cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.ex-banner .cta:hover { transform: translateY(-1px); }

/* Sections / shelves */
.ex-section { margin-bottom: 34px; }
.ex-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.ex-section-head h3 {
  margin: 0; font-size: 20px; font-weight: 900; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 8px;
}
.ex-section-head button {
  border: 0; background: transparent; color: var(--ex-primary);
  font-weight: 800; cursor: pointer; padding: 6px 4px;
}
.ex-rail {
  display: flex; gap: 16px; overflow-x: auto; padding: 4px 2px 12px;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.ex-rail::-webkit-scrollbar { height: 0; }

/* Content card */
.ex-card {
  flex: 0 0 220px; scroll-snap-align: start;
  background: var(--ex-card); border: 1px solid var(--ex-line);
  border-radius: var(--ex-radius); overflow: hidden;
  box-shadow: var(--ex-shadow); cursor: pointer;
  position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.ex-card:hover { transform: translateY(-4px); box-shadow: var(--ex-shadow-lg); }
.ex-card-cover {
  height: 118px; display: grid; place-items: center;
  font-size: 42px; position: relative; overflow: hidden;
  background: linear-gradient(var(--cang, 145deg), var(--ca, var(--ex-primary)), var(--cb, #1E293B));
}
.ex-card-cover::before {
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
}
.ex-pat-0::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.35) 0 12%, transparent 13%),
    radial-gradient(circle at 78% 70%, rgba(255,255,255,.2) 0 18%, transparent 19%);
}
.ex-pat-1::before {
  background: repeating-linear-gradient(-35deg, rgba(255,255,255,.14) 0 10px, transparent 10px 22px);
}
.ex-pat-2::before {
  background:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,.22) 0 22%, transparent 23%),
    linear-gradient(90deg, transparent 40%, rgba(255,255,255,.1) 50%, transparent 60%);
}
.ex-pat-3::before {
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 18px 18px;
}
.ex-pat-4::before {
  background:
    radial-gradient(ellipse at 50% 120%, rgba(255,255,255,.28) 0 40%, transparent 42%),
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.18) 0 10%, transparent 11%);
}
.ex-pat-5::before {
  background:
    conic-gradient(from 210deg at 80% 20%, rgba(255,255,255,.2), transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(255,255,255,.16) 0 16%, transparent 17%);
}
.ex-cover-emoji { position: relative; z-index: 1; filter: drop-shadow(0 6px 12px rgba(0,0,0,.18)); }
.ex-cover-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.ex-card.has-thumb .ex-card-cover::before { opacity: .18; }
.ex-card-cover .badge {
  position: absolute; top: 10px; left: 10px; z-index: 1;
  font-size: 11px; font-weight: 850; color: #fff;
  background: rgba(15, 23, 42, .28); backdrop-filter: blur(6px);
  padding: 4px 8px; border-radius: 999px;
}
.ex-card-body { padding: 14px 14px 16px; }
.ex-card-title {
  font-size: 15px; font-weight: 850; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 2.6em; margin: 0 0 8px;
}
.ex-card-meta {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px;
}
.ex-chip-mini {
  font-size: 11px; font-weight: 800; color: var(--ex-muted);
  background: #E2E8F0; padding: 4px 8px; border-radius: 999px;
}
.ex-stars { color: #CBD5E1; font-size: 12px; letter-spacing: 1px; margin-bottom: 10px; }
.ex-stars .on { color: #3B82F6; }
.ex-cta {
  width: 100%; border: 0; border-radius: 14px; padding: 11px 12px;
  background: #334155; color: #fff; font-weight: 850;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.ex-cta.claimed { background: var(--ex-success); }
.ex-cta.continue { background: linear-gradient(135deg, #475569, #3B82F6); }
.ex-cta-secondary {
  width: 100%; margin-top: 8px; border: 1px solid var(--ex-line);
  border-radius: 14px; padding: 9px 12px; background: #fff;
  color: var(--ex-text); font-weight: 800; font-size: 12.5px;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.ex-cta-secondary:hover { border-color: var(--ex-primary); color: var(--ex-primary); }

.ex-card-actions {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  gap: 8px; background: rgba(15, 23, 42, 0.40); opacity: 0; pointer-events: none;
  transition: opacity .18s ease; backdrop-filter: blur(2px);
}
.ex-card:hover .ex-card-actions { opacity: 1; pointer-events: auto; }
.ex-card-actions button {
  width: 42px; height: 42px; border: 0; border-radius: 50%;
  background: #fff; color: var(--ex-text); cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.16); font-size: 14px;
}
.ex-card-actions button:hover { color: var(--ex-primary); transform: scale(1.05); }

/* Continue strip */
.ex-continue-card {
  flex: 0 0 280px; display: grid; grid-template-columns: 64px 1fr; gap: 12px;
  padding: 14px; border-radius: var(--ex-radius); background: var(--ex-card);
  border: 1px solid var(--ex-line); box-shadow: var(--ex-shadow); cursor: pointer;
  align-items: center;
}
.ex-continue-card .ic {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  color: #fff; font-size: 24px;
  background: linear-gradient(145deg, var(--ca, var(--ex-primary)), #1E293B);
}
.ex-continue-card .label { font-size: 11px; font-weight: 850; color: var(--ex-primary); text-transform: uppercase; letter-spacing: .04em; }
.ex-continue-card .title { font-weight: 850; font-size: 14px; margin: 2px 0 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ex-progress { height: 7px; border-radius: 999px; background: #E2E8F0; overflow: hidden; }
.ex-progress > span { display: block; height: 100%; background: linear-gradient(90deg, #64748B, #3B82F6); }

/* Topic chips */
.ex-topics { display: flex; flex-wrap: wrap; gap: 10px; }
.ex-topic {
  border: 1px solid var(--ex-line); background: var(--ex-card);
  border-radius: 999px; padding: 10px 14px; cursor: pointer;
  font-weight: 800; font-size: 13.5px; color: var(--ex-text);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--ex-shadow); transition: .18s ease;
}
.ex-topic .emoji { font-size: 16px; }
.ex-topic.on {
  background: var(--ex-primary-soft); border-color: color-mix(in srgb, var(--ex-primary) 40%, white);
  color: #1E40AF; box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
.ex-topic:hover { transform: translateY(-1px); }

/* Collections — Pinterest tiles */
.ex-collections {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.ex-collection {
  border: 0; border-radius: var(--ex-radius); padding: 18px 16px 16px;
  background: var(--ex-card); border: 1px solid var(--ex-line);
  box-shadow: var(--ex-shadow); cursor: pointer; text-align: left;
  min-height: 148px; display: flex; flex-direction: column; gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ex-collection:hover { transform: translateY(-3px); box-shadow: var(--ex-shadow-lg); }
.ex-collection .mascot { font-size: 34px; line-height: 1; }
.ex-collection .name { font-weight: 900; font-size: 16px; }
.ex-collection .count { color: var(--ex-muted); font-weight: 700; font-size: 13px; margin-top: auto; }

/* Onboarding interests */
.ex-onboard {
  background: var(--ex-card); border: 1px solid var(--ex-line);
  border-radius: 28px; padding: 22px; box-shadow: var(--ex-shadow);
  margin-bottom: 28px;
}
.ex-onboard h3 { margin: 0 0 6px; font-size: 18px; font-weight: 900; }
.ex-onboard p { margin: 0 0 14px; color: var(--ex-muted); font-weight: 600; }
.ex-onboard .actions { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.ex-btn {
  border: 0; border-radius: 999px; padding: 11px 18px; cursor: pointer; font-weight: 850;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.ex-btn-primary { background: var(--ex-primary); color: #fff; }
.ex-btn-ghost { background: #E2E8F0; color: #334155; }

/* Search overlay */
.ex-overlay {
  position: fixed; inset: 0; z-index: 12000;
  background: rgba(31, 22, 53, 0.45); backdrop-filter: blur(6px);
  display: none; align-items: flex-start; justify-content: center; padding: 10vh 16px 24px;
}
.ex-overlay.open { display: flex; }
.ex-overlay-panel {
  width: min(720px, 100%); background: #fff; border-radius: 24px;
  box-shadow: var(--ex-shadow-lg); overflow: hidden;
}
.ex-overlay-head {
  display: flex; align-items: center; gap: 10px; padding: 16px 18px;
  border-bottom: 1px solid var(--ex-line);
}
.ex-overlay-head input {
  flex: 1; border: 0; outline: none; font-size: 16px; font-weight: 700;
  background: transparent; color: var(--ex-text);
}
.ex-overlay-body { max-height: 55vh; overflow: auto; padding: 12px; }
.ex-suggest-label {
  font-size: 11px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ex-muted); padding: 8px 10px 6px;
}
.ex-suggest {
  width: 100%; border: 0; background: transparent; text-align: left;
  padding: 12px 12px; border-radius: 14px; cursor: pointer; font-weight: 750;
  display: flex; align-items: center; gap: 10px; color: var(--ex-text);
}
.ex-suggest:hover, .ex-suggest.active { background: #E2E8F0; color: #1E293B; }
.ex-hit {
  display: grid; grid-template-columns: 42px 1fr auto; gap: 10px; align-items: center;
  padding: 10px; border-radius: 14px; cursor: pointer;
}
.ex-hit:hover { background: #F1F5F9; }
.ex-hit .ic {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(145deg, var(--ca, var(--ex-primary)), #1E293B);
}
.ex-hit .t { font-weight: 850; font-size: 14px; }
.ex-hit .s { color: var(--ex-muted); font-size: 12px; font-weight: 650; }
.ex-empty, .ex-loading {
  padding: 40px 20px; text-align: center; color: var(--ex-muted); font-weight: 700;
}

/* Panel views */
.ex-panel-title { font-size: 24px; font-weight: 900; margin: 0 0 16px; }
.ex-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px;
}
.ex-grid .ex-card { flex: none; width: auto; }

@media (max-width: 960px) {
  .ex-shell { grid-template-columns: 1fr; }
  .ex-sidebar {
    position: static; height: auto; border-right: 0; border-bottom: 1px solid var(--ex-line);
    display: flex; gap: 8px; overflow-x: auto; padding: 12px;
  }
  .ex-side-brand { display: none; }
  .ex-nav { flex-direction: row; width: 100%; }
  .ex-nav button { white-space: nowrap; }
  .ex-main { padding: 16px 14px 48px; }
  .ex-banner::after { font-size: 72px; right: 8px; }
}

/* ── Home: 1-viewport grid — logo/search · continue · 3 mini recs ── */
.ex-main { max-width: 960px; padding-top: 28px; }
.ex-shell-home {
  min-height: calc(100vh - 64px);
}
.ex-shell-home .ex-main-home {
  max-width: none;
  position: relative;
  padding: 0;
  overflow: hidden;
  height: calc(100vh - 64px);
  max-height: calc(100vh - 64px);
}
.ex-home {
  position: relative;
  height: 100%;
  max-height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
  padding: 12px 28px 16px;
  z-index: 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* Dynamic brand background — cyan → violet (logo) */
.ex-ambient {
  position: absolute;
  inset: -20px -60px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ex-amb-glow {
  position: absolute; inset: 8% 12% 22%;
  background:
    radial-gradient(ellipse at 45% 30%, rgba(44, 180, 255, 0.20), transparent 55%),
    radial-gradient(ellipse at 72% 55%, rgba(124, 58, 237, 0.14), transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(20, 184, 166, 0.10), transparent 48%);
  filter: blur(10px);
  animation: ex-glow-pulse 8s ease-in-out infinite;
}
.ex-amb-q {
  position: absolute;
  opacity: .7; will-change: transform;
}
.ex-amb-q svg { width: 100%; height: 100%; display: block; }
.ex-amb-q.q1 { width: 200px; height: 200px; top: 4%; right: 2%; animation: ex-float-a 14s ease-in-out infinite; }
.ex-amb-q.q2 { width: 130px; height: 130px; top: 38%; left: -1%; animation: ex-float-b 18s ease-in-out infinite; opacity: .5; }
.ex-amb-q.q3 { width: 88px; height: 88px; bottom: 16%; right: 16%; animation: ex-float-c 16s ease-in-out infinite; opacity: .45; }
.ex-amb-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(44, 180, 255, 0.45), rgba(124, 58, 237, 0.12) 55%, transparent 70%);
  filter: blur(2px);
}
.ex-amb-orb.o1 { width: 160px; height: 160px; top: 16%; left: 24%; animation: ex-float-b 12s ease-in-out infinite; }
.ex-amb-orb.o2 { width: 110px; height: 110px; bottom: 24%; right: 6%; animation: ex-float-a 15s ease-in-out infinite reverse; }
.ex-amb-orb.o3 { width: 80px; height: 80px; top: 52%; left: 52%; animation: ex-float-c 11s ease-in-out infinite; }
.ex-amb-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.14);
}
.ex-amb-ring.r1 { width: 150px; height: 150px; top: 10%; left: 6%; animation: ex-spin-slow 40s linear infinite; }
.ex-amb-ring.r2 {
  width: 100px; height: 100px; bottom: 20%; left: 28%;
  border-color: rgba(44, 180, 255, 0.16);
  border-radius: 28%;
  animation: ex-spin-slow 55s linear infinite reverse;
}

@keyframes ex-glow-pulse {
  0%, 100% { opacity: .85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
@keyframes ex-float-a {
  0%, 100% { transform: translate(0, 0) rotate(-6deg); }
  50% { transform: translate(-14px, 16px) rotate(4deg); }
}
@keyframes ex-float-b {
  0%, 100% { transform: translate(0, 0) rotate(8deg); }
  50% { transform: translate(12px, -14px) rotate(-4deg); }
}
@keyframes ex-float-c {
  0%, 100% { transform: translate(0, 0) rotate(-12deg) scale(1); }
  50% { transform: translate(-10px, -12px) rotate(10deg) scale(1.05); }
}
@keyframes ex-spin-slow { to { transform: rotate(378deg); } }

.ex-home-hero {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 0;
  padding: 8px 8px 4px;
}
.ex-brand-mark {
  width: 72px; height: 72px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 6px rgba(44, 180, 255, 0.10),
    0 14px 36px rgba(124, 58, 237, 0.18);
  animation: ex-logo-breathe 4.5s ease-in-out infinite;
  margin-bottom: 12px;
}
.ex-brand-mark img {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
@keyframes ex-logo-breathe {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 0 0 6px rgba(44,180,255,.10), 0 14px 36px rgba(124,58,237,.18); }
  50% { transform: translateY(-3px) scale(1.03); box-shadow: 0 0 0 12px rgba(124,58,237,.12), 0 20px 44px rgba(44,180,255,.20); }
}
.ex-home-title {
  margin: 0; font-size: clamp(28px, 3.6vw, 40px); font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(115deg, #0EA5E9 0%, #6366F1 48%, #7C3AED 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.ex-home-sub {
  margin: 6px 0 18px; color: var(--ex-muted); font-weight: 650; font-size: 14px;
}

.ex-search-hero {
  position: relative;
  width: min(100%, 520px);
  padding: 16px 20px;
  margin: 0;
  border-radius: 999px;
  font-size: 16px;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow:
    0 12px 32px rgba(99, 102, 241, 0.10),
    0 0 0 1px rgba(255,255,255,.65) inset;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ex-search-hero:hover {
  transform: translateY(-2px);
  border-color: rgba(44, 180, 255, 0.45);
  box-shadow:
    0 16px 40px rgba(124, 58, 237, 0.14),
    0 0 0 4px rgba(44, 180, 255, 0.08);
}
.ex-search-glow {
  position: absolute; inset: -40%;
  background: conic-gradient(from 0deg, transparent, rgba(44,180,255,.20), transparent 28%, rgba(124,58,237,.16), transparent 55%);
  animation: ex-search-spin 7s linear infinite;
  opacity: .75; pointer-events: none;
}
@keyframes ex-search-spin { to { transform: rotate(360deg); } }
.ex-search-hero > *:not(.ex-search-glow) { position: relative; z-index: 1; }
.ex-search-hero .ex-search-ph {
  font-size: 15.5px; font-weight: 750; color: var(--ex-muted);
  flex: 1; text-align: left;
  transition: opacity .18s ease, transform .18s ease;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  min-width: 0;
}
.ex-search-ph.ex-ph-out { opacity: 0; transform: translateY(6px); }
.ex-search-ph.ex-ph-in { opacity: 1; transform: translateY(0); }
.ex-search-hero i {
  font-size: 17px;
  background: linear-gradient(135deg, #0EA5E9, #7C3AED);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.ex-search-hero kbd { background: #E2E8F0; color: #334155; }

.ex-section-continue,
.ex-section-recs {
  position: relative; z-index: 1;
  margin: 0;
  min-height: 0;
}
.ex-section-recs {
  padding-top: 6px;
  border-top: 1px solid rgba(30, 41, 59, 0.06);
}
.ex-section-recs .ex-section-head,
.ex-section-continue .ex-section-head {
  margin-bottom: 8px;
}
.ex-section-recs .ex-section-head h3,
.ex-section-continue .ex-section-head h3 {
  font-size: 13px; font-weight: 850; color: var(--ex-muted);
  letter-spacing: .02em; text-transform: uppercase;
}

/* Continue = compact pills (not full cards) */
.ex-cont-strip {
  display: flex; gap: 8px; flex-wrap: nowrap;
  overflow: hidden;
}
.ex-cont-pill {
  flex: 1 1 0; min-width: 0;
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--ex-line);
  background: rgba(255,255,255,.88);
  border-radius: 14px;
  padding: 8px 10px;
  cursor: pointer; font: inherit; text-align: left;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: transform .15s ease, border-color .15s ease;
}
.ex-cont-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(99, 102, 241, 0.35);
}
.ex-cont-ic {
  width: 32px; height: 32px; border-radius: 10px; flex: 0 0 auto;
  display: grid; place-items: center; font-size: 15px;
  background: linear-gradient(135deg, var(--ca), var(--cb));
  color: #fff;
}
.ex-cont-t {
  flex: 1; min-width: 0;
  font-size: 12.5px; font-weight: 750;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ex-cont-go { color: var(--ex-muted); font-weight: 800; font-size: 13px; }

/* 3 equal mini recs — always fit one row */
.ex-recs-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.ex-recs-row .ex-card-compact {
  flex: none; width: auto; min-width: 0;
}
.ex-card-compact {
  border-radius: 16px;
}
.ex-card-compact .ex-card-cover {
  height: 56px; font-size: 24px;
}
.ex-card-compact .ex-card-cover .badge {
  top: 5px; left: 5px; font-size: 9px; padding: 2px 5px;
}
.ex-card-compact .ex-card-body { padding: 8px 10px 10px; }
.ex-card-compact .ex-card-title {
  font-size: 12.5px; min-height: 2.5em; margin-bottom: 6px;
  -webkit-line-clamp: 2;
}
.ex-card-compact .ex-reason { display: none; }
.ex-card-compact .ex-cta {
  padding: 7px 8px; border-radius: 10px; font-size: 12px;
}
.ex-empty-sm { padding: 12px; font-size: 13px; }
.ex-rail-home .ex-card:not(.ex-card-compact) { flex-basis: 240px; }
.ex-reason {
  font-size: 12px; font-weight: 700; color: #64748B;
  margin: -2px 0 10px; line-height: 1.35;
}

@media (max-width: 720px) {
  .ex-home { padding: 8px 14px 12px; gap: 8px; }
  .ex-brand-mark { width: 60px; height: 60px; }
  .ex-amb-q.q1 { width: 120px; height: 120px; }
  .ex-amb-q.q2, .ex-amb-ring { display: none; }
  .ex-cont-strip { flex-direction: column; }
  .ex-recs-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .ex-card-compact .ex-card-title { font-size: 11.5px; }
  .ex-card-compact .ex-cta { font-size: 11px; padding: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  .ex-amb-glow, .ex-amb-q, .ex-amb-orb, .ex-amb-ring,
  .ex-brand-mark, .ex-search-glow { animation: none !important; }
}

/* Theme / Font gallery */
.ex-theme-grid, .ex-font-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.ex-theme-card, .ex-font-card {
  border: 1px solid var(--ex-line);
  background: var(--ex-card);
  border-radius: var(--ex-radius);
  overflow: hidden;
  box-shadow: var(--ex-shadow);
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  padding: 0;
  color: inherit;
  font: inherit;
}
.ex-theme-card:hover, .ex-font-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ex-shadow-lg);
}
.ex-theme-swatch {
  height: 96px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
}
.ex-theme-swatch span { display: block; min-height: 100%; }
.ex-theme-body { padding: 14px 16px 16px; }
.ex-theme-body h4 { margin: 0 0 6px; font-size: 16px; font-weight: 850; }
.ex-theme-body p {
  margin: 0 0 12px; color: var(--ex-muted); font-size: 12.5px; font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.4em;
}
.ex-font-card { padding: 18px 16px; }
.ex-font-sample {
  font-size: 28px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 10px; line-height: 1.25; color: var(--ex-text);
}
.ex-font-name { font-size: 14px; font-weight: 850; margin-bottom: 4px; }
.ex-font-meta { font-size: 12px; color: var(--ex-muted); font-weight: 650; }
.ex-nav-sep {
  height: 1px; background: var(--ex-line); margin: 10px 8px;
}
.ex-more-row { margin-top: 10px; }
.ex-link {
  border: 0; background: transparent; color: var(--ex-primary);
  font-weight: 850; cursor: pointer; padding: 8px 0; font-size: 14px;
}
.ex-panel-sub { color: var(--ex-muted); font-weight: 650; margin: -8px 0 20px; }
.ex-catalog-topics { display: flex; flex-wrap: wrap; gap: 10px; }
.ex-collections-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; border-radius: 22px; margin-bottom: 18px;
  background: linear-gradient(135deg, #334155, #3B82F6);
  color: #fff; box-shadow: var(--ex-shadow);
}
.ex-collections-banner strong { display: block; font-size: 18px; font-weight: 900; }
.ex-collections-banner span { opacity: .9; font-weight: 650; font-size: 13px; }
.ex-collections-banner .ex-btn-primary { background: #fff; color: #1E293B; }

/* Slimmer card — skip compact recs */
.ex-card:not(.ex-card-compact) { flex-basis: 220px; }
.ex-card:not(.ex-card-compact) .ex-card-cover { height: 110px; font-size: 48px; }
.ex-card:not(.ex-card-compact) .ex-card-body { padding: 14px 16px 16px; }
.ex-card:not(.ex-card-compact) .ex-card-title { min-height: 2.5em; font-size: 16px; }

/* ═══ Full-screen onboarding — forest green (header hidden) ═══ */
body.ex-on-wizard {
  /* Cool slate / steel blue — soft, not warm cream or forest green */
  --wiz-ink: #1E293B;
  --wiz-ink-soft: #334155;
  --wiz-accent: #3B82F6;
  --wiz-muted: #64748B;
  --wiz-line: rgba(30, 41, 59, 0.10);
  --wiz-card: #FFFFFF;
  --wiz-bg: #F1F5F9;
  --wiz-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  --wiz-shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.10);
  overflow-x: hidden;
  padding-top: 0 !important;
  background: var(--wiz-bg);
  color: var(--wiz-ink);
}
body.ex-on-wizard #qmf-header,
body.ex-on-wizard .qmf-header,
body.ex-on-wizard [data-qmf-header] {
  display: none !important;
}
body.ex-on-wizard #exploreRoot { min-height: 100vh; }

.ex-wizard {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.ex-wizard-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(720px 420px at 50% 28%, rgba(59, 130, 246, 0.07), transparent 60%),
    linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%);
}
.ex-wiz-deco {
  position: absolute; opacity: .18; filter: blur(0.2px);
  background-size: contain; background-repeat: no-repeat;
}
.ex-wiz-deco-l {
  left: -40px; bottom: 80px; width: min(280px, 34vw); height: min(320px, 40vh);
  background-image:
    radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.28) 0 28%, transparent 30%),
    radial-gradient(circle at 62% 58%, rgba(100, 116, 139, 0.22) 0 22%, transparent 24%),
    radial-gradient(circle at 48% 78%, rgba(30, 41, 59, 0.14) 0 18%, transparent 20%);
}
.ex-wiz-deco-r {
  right: -20px; top: 90px; width: min(260px, 32vw); height: min(300px, 38vh);
  background-image:
    linear-gradient(135deg, rgba(59, 130, 246, 0.10) 0 40%, transparent 42%),
    repeating-linear-gradient(90deg, rgba(51, 65, 85, 0.07) 0 10px, transparent 10px 22px);
  border-radius: 18px;
  mask-image: linear-gradient(225deg, #000 20%, transparent 85%);
}

.ex-wiz-top {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px 8px;
}
.ex-wiz-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 850; font-size: 15px; color: var(--wiz-ink);
}
.ex-wiz-brand i {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(59, 130, 246, 0.10); color: var(--wiz-accent);
}
.ex-wiz-lang {
  border: 1px solid var(--wiz-line); background: #fff;
  border-radius: 999px; padding: 8px 14px;
  font-weight: 750; font-size: 13px; color: var(--wiz-ink-soft);
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ex-wiz-lang:hover { transform: translateY(-1px); box-shadow: var(--wiz-shadow); }

.ex-wizard-inner {
  position: relative; z-index: 1;
  width: min(980px, 100%);
  margin: auto;
  padding: 12px 28px 28px;
  animation: exWizardIn .45s cubic-bezier(.22, 1, .36, 1) both;
}
.ex-wizard-inner[data-step="2"] { animation-name: exWizardInRight; }
@keyframes exWizardIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes exWizardInRight {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: none; }
}
.ex-wizard-inner.ex-step-out-left { animation: exStepOutLeft .22s ease forwards; }
.ex-wizard-inner.ex-step-out-right { animation: exStepOutRight .22s ease forwards; }
@keyframes exStepOutLeft { to { opacity: 0; transform: translateX(-36px); } }
@keyframes exStepOutRight { to { opacity: 0; transform: translateX(36px); } }
body.ex-wizard-leaving .ex-wizard-inner {
  animation: exWizardOut .32s ease forwards;
}
@keyframes exWizardOut {
  to { opacity: 0; transform: translateY(-10px) scale(.985); }
}

.ex-step-pills {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px; color: var(--wiz-muted); font-weight: 800;
}
.ex-step-pills > span {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 900;
  background: rgba(59, 130, 246, 0.10); color: var(--wiz-muted);
}
.ex-step-pills > i {
  font-style: normal; font-weight: 700; opacity: .45; font-size: 14px;
}
.ex-step-pills > span.on {
  background: var(--wiz-accent); color: #fff;
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.28);
}
.ex-step-pills > span.done {
  background: #64748B; color: #fff; font-size: 11px;
}

.ex-wizard-hero { text-align: center; margin-bottom: 26px; }
.ex-wizard-wave {
  font-size: 48px; line-height: 1; margin-bottom: 6px;
  display: inline-block;
  animation: exWave 1.6s ease-in-out infinite;
  transform-origin: 70% 70%;
}
@keyframes exWave {
  0%, 60%, 100% { transform: rotate(0); }
  15% { transform: rotate(14deg); }
  30% { transform: rotate(-6deg); }
  45% { transform: rotate(10deg); }
}
.ex-wizard-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--wiz-ink);
}
.ex-wizard-hero p {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--wiz-muted);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
.ex-wizard-hero strong { color: var(--wiz-ink); font-weight: 850; }

.ex-wizard-block { margin-bottom: 26px; }

.ex-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.ex-role-card {
  --rx: 0deg; --ry: 0deg; --mx: 50%; --my: 50%;
  position: relative;
  border: 1px solid var(--wiz-line);
  background: var(--wiz-card);
  border-radius: 26px;
  padding: 28px 22px 24px;
  min-height: 220px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--wiz-shadow);
  color: var(--wiz-ink);
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0);
  transition:
    transform .18s cubic-bezier(.22, 1, .36, 1),
    box-shadow .22s ease,
    border-color .18s ease,
    background .18s ease;
  animation: exCardIn .5s cubic-bezier(.22, 1, .36, 1) both;
  animation-delay: calc(var(--i, 0) * 70ms);
}
.ex-role-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(380px circle at var(--mx) var(--my), rgba(59, 130, 246, 0.12), transparent 46%);
  opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.ex-role-card:hover {
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-6px) scale(1.015);
  box-shadow: var(--wiz-shadow-lg);
  border-color: rgba(59, 130, 246, 0.28);
}
.ex-role-card:hover::before { opacity: 1; }
.ex-role-card.on {
  border-color: rgba(59, 130, 246, 0.42);
  background: linear-gradient(180deg, #EFF6FF 0%, #fff 58%);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
}
.ex-role-card.pop { animation: exPop .28s cubic-bezier(.22, 1, .36, 1); }
@keyframes exPop {
  0% { transform: scale(1); }
  45% { transform: scale(1.035); }
  100% { transform: scale(1); }
}
@keyframes exCardIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: none; }
}
.ex-role-emoji {
  font-size: 46px; line-height: 1; margin-bottom: 14px;
  transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}
.ex-role-card:hover .ex-role-emoji { transform: scale(1.1) rotate(-3deg); }
.ex-role-label {
  font-size: 22px; font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 8px; color: var(--wiz-ink);
}
.ex-role-desc {
  color: var(--wiz-muted); font-weight: 600; font-size: 14px; line-height: 1.45;
  max-width: 28ch;
}
.ex-role-check, .ex-topic-check {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wiz-accent); color: #fff; font-size: 12px;
  opacity: 0; transform: scale(.6);
  transition: .2s cubic-bezier(.22, 1, .36, 1);
}
.ex-role-card.on .ex-role-check,
.ex-topic-card.on .ex-topic-check {
  opacity: 1; transform: scale(1);
}

.ex-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.ex-topic-card {
  --rx: 0deg; --ry: 0deg; --mx: 50%; --my: 50%;
  position: relative;
  border: 1px solid var(--wiz-line);
  background: var(--wiz-card);
  border-radius: 22px;
  padding: 22px 16px 18px;
  min-height: 132px;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  box-shadow: var(--wiz-shadow);
  color: var(--wiz-ink);
  transform: perspective(800px) rotateX(var(--rx)) rotateY(var(--ry));
  transition:
    transform .18s cubic-bezier(.22, 1, .36, 1),
    box-shadow .22s ease,
    border-color .18s ease,
    background .18s ease;
  animation: exCardIn .5s cubic-bezier(.22, 1, .36, 1) both;
  animation-delay: calc(0.1s + var(--i, 0) * 40ms);
}
.ex-topic-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(260px circle at var(--mx) var(--my), rgba(59, 130, 246, 0.12), transparent 44%);
  opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.ex-topic-card:hover {
  transform: perspective(800px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-4px) scale(1.02);
  box-shadow: var(--wiz-shadow-lg);
  border-color: rgba(59, 130, 246, 0.28);
}
.ex-topic-card:hover::before { opacity: 1; }
.ex-topic-card.on {
  border-color: rgba(59, 130, 246, 0.40);
  background: linear-gradient(180deg, #EFF6FF, #fff);
}
.ex-topic-card.pop { animation: exPop .28s cubic-bezier(.22, 1, .36, 1); }
.ex-topic-emoji {
  font-size: 34px; line-height: 1; margin-bottom: 12px;
  transition: transform .22s cubic-bezier(.22, 1, .36, 1);
}
.ex-topic-card:hover .ex-topic-emoji { transform: translateY(-3px) scale(1.08); }
.ex-topic-label { font-size: 15px; font-weight: 850; letter-spacing: -0.01em; }

.ex-wizard-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 4px;
}
body.ex-on-wizard .ex-btn-primary {
  background: var(--wiz-ink);
  color: #fff;
}
body.ex-on-wizard .ex-btn-ghost {
  background: #fff;
  color: var(--wiz-muted);
  border: 1px solid var(--wiz-line);
  box-shadow: none;
}
body.ex-on-wizard .ex-btn-ghost:hover {
  color: var(--wiz-ink);
  border-color: rgba(30, 41, 59, 0.22);
}
.ex-btn-lg {
  padding: 14px 28px; font-size: 16px; border-radius: 999px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
  transition: transform .18s ease, box-shadow .18s ease;
}
.ex-btn-lg:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
}
.ex-btn-lg:not(:disabled):active { transform: translateY(0); }
.ex-btn:disabled { opacity: .4; cursor: not-allowed; }

.ex-wiz-foot {
  position: relative; z-index: 2;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid var(--wiz-line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}
.ex-wiz-foot-item {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--wiz-muted); font-size: 12.5px; font-weight: 700;
  padding: 6px 4px; white-space: nowrap;
}
.ex-wiz-foot-item i { color: var(--wiz-accent); font-size: 13px; opacity: .85; }

@media (max-width: 1024px) {
  .ex-wizard-inner { padding-left: 20px; padding-right: 20px; }
  .ex-role-grid { gap: 14px; }
  .ex-role-card { min-height: 200px; padding: 24px 18px 20px; }
  .ex-wiz-deco { opacity: .12; }
}
@media (max-width: 860px) {
  .ex-role-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .ex-role-card { min-height: 0; }
  .ex-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ex-wiz-foot { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ex-wiz-foot-item { justify-content: flex-start; padding-left: 8px; }
}
@media (max-width: 560px) {
  .ex-wiz-top { padding: 14px 16px 4px; }
  .ex-wiz-brand span { font-size: 14px; }
  .ex-wizard-inner { padding: 8px 16px 24px; width: 100%; }
  .ex-wizard-hero h1 { font-size: 28px; }
  .ex-wizard-hero p { font-size: 14px; }
  .ex-wizard-wave { font-size: 40px; }
  .ex-role-label { font-size: 20px; }
  .ex-topic-grid { gap: 10px; }
  .ex-topic-card { min-height: 118px; padding: 16px 12px; border-radius: 18px; }
  .ex-topic-emoji { font-size: 28px; margin-bottom: 8px; }
  .ex-topic-label { font-size: 13.5px; }
  .ex-wizard-actions { gap: 10px; }
  .ex-btn-lg { width: 100%; max-width: 320px; justify-content: center; }
  .ex-wiz-foot {
    grid-template-columns: 1fr 1fr;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom, 0px));
  }
  .ex-wiz-foot-item { font-size: 11.5px; gap: 6px; white-space: normal; line-height: 1.25; }
  .ex-wiz-deco { display: none; }
}
@media (max-width: 380px) {
  .ex-wiz-foot { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .ex-wizard-inner, .ex-role-card, .ex-topic-card, .ex-wizard-wave {
    animation: none !important;
  }
  .ex-role-card, .ex-topic-card { transform: none !important; }
}

@media (max-width: 560px) {
  .ex-collections-banner { flex-direction: column; align-items: flex-start; }
}
