:root {
  --anima-u-ink: #fff8ff;
  --anima-u-muted: rgba(255, 248, 255, .74);
  --anima-u-deep: rgba(8, 8, 22, .94);
  --anima-u-panel: rgba(255, 255, 255, .105);
  --anima-u-panel-strong: rgba(255, 255, 255, .17);
  --anima-u-line: rgba(255, 255, 255, .20);
  --anima-u-gold: #ffd86f;
  --anima-u-pink: #ff62aa;
  --anima-u-blue: #68ddff;
  --anima-u-violet: #9c73ff;
  --anima-u-green: #9dffcf;
  --anima-u-radius: 26px;
  --anima-u-shadow: 0 28px 88px rgba(0,0,0,.42);
}

.anima-university-open { overflow: hidden !important; }

.anima-university-launcher,
.anima-university-inline-button {
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #181223;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,222,244,.96) 48%, rgba(255,216,111,.96));
  box-shadow: 0 18px 38px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.9), 0 0 24px rgba(255,98,170,.32);
  cursor: pointer;
  font-weight: 950;
  letter-spacing: .01em;
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}
.anima-university-launcher {
  position: fixed;
  z-index: 999982;
  top: 190px;
  bottom: auto;
  padding: 12px 17px 12px 12px;
}
.anima-university-inline-button { padding: 12px 18px; }
.anima-university-launcher--right { right: 18px; }
.anima-university-launcher--left { left: 18px; }
.anima-university-launcher.is-anchored-under-search { top: var(--anima-u-launcher-top, 190px); }
.anima-university-launcher:hover,
.anima-university-inline-button:hover { transform: translateY(-2px) scale(1.025); filter: brightness(1.05); }
.anima-university-launcher__crystal {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 22%, #fff 0%, #c8f3ff 28%, #9c73ff 62%, #33205e 100%);
  color: #fff;
  box-shadow: inset 0 0 15px rgba(255,255,255,.78), 0 0 18px rgba(156,115,255,.68);
  animation: animaCrystalPulse 2.8s ease-in-out infinite;
}

.anima-university-overlay {
  position: fixed;
  inset: 0;
  z-index: 999981;
  padding: clamp(8px, 1.6vw, 28px);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 98, 170, .34), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(104, 221, 255, .22), transparent 36%),
    linear-gradient(135deg, rgba(4,5,15,.70), rgba(35,12,45,.72));
  backdrop-filter: blur(14px);
}
.anima-university-overlay[hidden] { display: none !important; }

.anima-university-panel,
.anima-university-embed {
  width: min(1680px, 100%);
  margin: 0 auto;
  overflow: auto;
  border-radius: var(--anima-u-radius);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: var(--anima-u-shadow), inset 0 0 0 1px rgba(255,255,255,.06);
  background:
    linear-gradient(135deg, rgba(18, 16, 37, .96), rgba(58, 24, 72, .93) 42%, rgba(19, 48, 75, .93)),
    #130e20;
}
.anima-university-panel { height: min(960px, calc(100vh - 22px)); }
.anima-university-embed { min-height: var(--anima-university-embed-height, 860px); }
.anima-university-inline-shell { min-height: var(--anima-university-embed-height, 860px); }

.anima-u,
.anima-u * { box-sizing: border-box; }
.anima-u {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  padding: clamp(14px, 1.9vw, 28px);
  color: var(--anima-u-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.48;
  overflow: hidden;
}
.anima-u:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(transparent 95%, rgba(255,255,255,.08) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,.06) 96%);
  background-size: 42px 42px;
  opacity: .28;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 75%);
}
.anima-u__sky { position: absolute; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.anima-u__sky span {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  filter: blur(34px);
  opacity: .24;
  animation: animaFloat 12s ease-in-out infinite alternate;
}
.anima-u__sky span:nth-child(1) { left: 8%; top: 11%; background: var(--anima-u-pink); }
.anima-u__sky span:nth-child(2) { right: 4%; top: 30%; background: var(--anima-u-blue); animation-delay: -3s; }
.anima-u__sky span:nth-child(3) { left: 45%; bottom: 0; background: var(--anima-u-gold); animation-delay: -6s; }

.anima-u button,
.anima-u input,
.anima-u a { font: inherit; }
.anima-u button { cursor: pointer; }
.anima-u a { color: inherit; }

.anima-u__tilt {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.anima-u__tilt:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,.22), transparent 28%);
  opacity: 0;
  transition: opacity .18s ease;
}
.anima-u__tilt:hover:after { opacity: 1; }

.anima-u__topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px;
  margin: -8px -8px 18px;
  border-radius: 24px;
  background: rgba(10, 8, 22, .72);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.anima-u__brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.anima-u__seal {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: radial-gradient(circle at 28% 21%, #fff, #e5faff 25%, #ff62aa 55%, #4e2784 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 0 32px rgba(255,98,170,.46);
  color: white;
  font-size: 26px;
}
.anima-u__brand h2 { margin: 0; color: var(--anima-u-ink); font-size: clamp(20px, 2vw, 30px); line-height: 1.05; letter-spacing: -.03em; }
.anima-u__eyebrow,
.anima-u__kicker {
  margin: 0 0 5px;
  color: var(--anima-u-gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.anima-u__top-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px; }

.anima-u__primary,
.anima-u__ghost,
.anima-u__close,
.anima-u__term,
.anima-u__menu-row,
.anima-u__path-chip,
.anima-u__mini-chip,
.anima-u__tag-rune,
.anima-u__plate-index-row,
.anima-u__related-card {
  border: 1px solid rgba(255,255,255,.22);
  color: var(--anima-u-ink);
  background: rgba(255,255,255,.10);
  text-decoration: none;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.anima-u__primary,
.anima-u__ghost,
.anima-u__close,
.anima-u__term,
.anima-u__mini-chip,
.anima-u__tag-rune {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  padding: 10px 14px;
  line-height: 1;
}
.anima-u__primary {
  color: #180f1f;
  font-weight: 950;
  border-color: rgba(255,255,255,.62);
  background: linear-gradient(135deg, #fff, #ffe0f2 38%, #ffd86f 100%);
  box-shadow: 0 14px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.8);
}
.anima-u__ghost:hover,
.anima-u__primary:hover,
.anima-u__term:hover,
.anima-u__mini-chip:hover,
.anima-u__tag-rune:hover,
.anima-u__menu-row:hover,
.anima-u__path-chip:hover,
.anima-u__plate-index-row:hover,
.anima-u__related-card:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.17);
  border-color: rgba(255,255,255,.36);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.anima-u__ghost:disabled { opacity: .42; cursor: not-allowed; transform: none; }
.anima-u__close { width: 42px; height: 42px; padding: 0; font-size: 26px; background: rgba(255,98,170,.18); }

.anima-u__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr);
  gap: 18px;
  padding: clamp(18px, 3vw, 38px);
  margin-bottom: 18px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.20);
  background:
    radial-gradient(circle at 10% 10%, rgba(255,98,170,.32), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(104,221,255,.20), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 24px 60px rgba(0,0,0,.24);
  overflow: hidden;
}
.anima-u__hero:after {
  content: "✦ ✧ ✦ ✧ ✦";
  position: absolute;
  right: 24px;
  bottom: 14px;
  color: rgba(255,255,255,.12);
  letter-spacing: .8em;
  font-size: 18px;
}
.anima-u__hero h1 { margin: 0 0 12px; font-size: clamp(42px, 6.2vw, 94px); line-height: .88; letter-spacing: -.065em; color: var(--anima-u-ink); }
.anima-u__hero h1 span { color: var(--anima-u-gold); text-shadow: 0 0 28px rgba(255,216,111,.22); }
.anima-u__hero p { max-width: 920px; margin: 0; color: var(--anima-u-muted); font-size: clamp(15px, 1.45vw, 19px); }
.anima-u__search-row {
  position: relative;
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.anima-u__search-rune {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}
.anima-u__search {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 999px;
  padding: 14px 18px 14px 44px;
  color: var(--anima-u-ink);
  background: rgba(4, 5, 15, .56);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.anima-u__search::placeholder { color: rgba(255,255,255,.56); }
.anima-u__search:focus { border-color: rgba(255,216,111,.78); box-shadow: 0 0 0 3px rgba(255,216,111,.13); }

.anima-u__codex-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  min-height: 260px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.17);
  background: radial-gradient(circle at 50% 24%, rgba(255,255,255,.18), transparent 38%), rgba(0,0,0,.14);
  overflow: hidden;
}
.anima-u__book3d {
  position: relative;
  width: 160px;
  height: 210px;
  transform: perspective(820px) rotateY(-22deg) rotateX(6deg);
  transform-style: preserve-3d;
  animation: animaBookHover 5s ease-in-out infinite;
  margin-bottom: 14px;
}
.anima-u__book-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  border-radius: 14px 8px 8px 14px;
  border: 1px solid rgba(255,255,255,.38);
  background: linear-gradient(135deg, #2c1746, #7e2d7d 45%, #0f5b7a 100%);
  box-shadow: inset 10px 0 16px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.34), 18px 20px 38px rgba(0,0,0,.38);
  font-size: 34px;
}
.anima-u__book-cover span { display: block; color: var(--anima-u-gold); font-size: 22px; line-height: 1; font-weight: 950; letter-spacing: .05em; }
.anima-u__book-pages {
  position: absolute;
  left: 18px;
  right: -22px;
  top: 10px;
  bottom: 10px;
  transform: translateZ(-24px);
  border-radius: 8px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.88) 0 3px, rgba(255,230,195,.92) 3px 5px);
  opacity: .7;
}
.anima-u__hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; width: 100%; padding: 0 12px 12px; }
.anima-u__hero-stats div { padding: 14px; border-radius: 18px; background: rgba(0,0,0,.20); border: 1px solid rgba(255,255,255,.13); }
.anima-u__hero-stats strong { display: block; font-size: 28px; line-height: 1; }
.anima-u__hero-stats span { color: var(--anima-u-muted); font-size: 12px; }

.anima-u__layout { display: grid; grid-template-columns: 350px minmax(0, 1fr); gap: 18px; align-items: start; }
.anima-u__sidebar { display: grid; gap: 14px; min-width: 0; }
.anima-u__main { min-width: 0; }

.anima-u__command-card,
.anima-u__accordion,
.anima-u__wide-card,
.anima-u__current-card,
.anima-u__feature-card,
.anima-u__lesson-card,
.anima-u__reader-hero,
.anima-u__plate,
.anima-u__plates-head,
.anima-u__empty,
.anima-u__loading {
  position: relative;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.135), rgba(255,255,255,.055)),
    rgba(8,8,22,.38);
  box-shadow: 0 18px 44px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.10);
  overflow: hidden;
}
.anima-u__command-card,
.anima-u__accordion,
.anima-u__wide-card,
.anima-u__current-card,
.anima-u__feature-card,
.anima-u__empty,
.anima-u__loading { padding: 18px; }

.anima-u__menu-row {
  width: 100%;
  margin: 8px 0;
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 900;
}
.anima-u__menu-row span { font-size: 12px; color: var(--anima-u-muted); font-weight: 800; }
.is-active,
.anima-u__menu-row.is-active,
.anima-u__path-chip.is-active,
.anima-u__mini-chip.is-active,
.anima-u__tag-rune.is-active,
.anima-u__plate-index-row.is-active {
  border-color: rgba(255,216,111,.74) !important;
  background: linear-gradient(135deg, rgba(255,216,111,.24), rgba(255,98,170,.13)) !important;
  box-shadow: 0 0 0 1px rgba(255,216,111,.08), 0 0 24px rgba(255,216,111,.13) !important;
}
.anima-u__accordion-head {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--anima-u-ink);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 950;
  text-align: left;
}
.anima-u__accordion-body { display: none; margin-top: 12px; max-height: 350px; overflow: auto; padding-right: 4px; }
.anima-u__accordion.is-open .anima-u__accordion-body { display: grid; gap: 8px; }
.anima-u__path-chip {
  width: 100%;
  border-radius: 18px;
  padding: 12px;
  text-align: left;
  display: grid;
  gap: 2px;
}
.anima-u__path-chip b { color: var(--anima-u-ink); }
.anima-u__path-chip span { color: var(--anima-u-muted); font-size: 12px; }
.anima-u__mini-chip { justify-content: space-between; width: 100%; }
.anima-u__mini-chip span { color: var(--anima-u-gold); font-weight: 900; }
.anima-u__tag-rune { justify-content: flex-start; width: 100%; font-size: 13px; }
.anima-u__chip-cloud,
.anima-u__term-row,
.anima-u__button-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.anima-u__term { padding: 8px 10px; font-size: 12px; }

.anima-u__notice { margin-bottom: 14px; padding: 14px 16px; border: 1px solid rgba(255,216,111,.42); border-radius: 18px; background: rgba(255,216,111,.12); color: var(--anima-u-ink); }
.anima-u__muted { color: var(--anima-u-muted); margin: 0; }

.anima-u__home-grid,
.anima-u__lesson-grid,
.anima-u__plate-grid,
.anima-u__progress-grid,
.anima-u__related-grid { display: grid; gap: 14px; }
.anima-u__home-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 14px; }
.anima-u__feature-card span { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 16px; background: rgba(255,255,255,.12); margin-bottom: 12px; font-size: 24px; }
.anima-u__feature-card h3,
.anima-u__wide-card h3,
.anima-u__current-card h3 { margin: 0 0 8px; color: var(--anima-u-ink); font-size: 22px; }
.anima-u__feature-card p,
.anima-u__wide-card p,
.anima-u__current-card p { color: var(--anima-u-muted); margin: 0 0 12px; }
.anima-u__current-card { display: flex; gap: 18px; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.anima-u__current-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }

.anima-u__library-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 14px; }
.anima-u__library-head h3 { margin: 0; font-size: 28px; color: var(--anima-u-ink); }
.anima-u__library-head p { margin: 4px 0 0; color: var(--anima-u-muted); }
.anima-u__pager { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.anima-u__pager span { color: var(--anima-u-muted); font-weight: 850; }
.anima-u__lesson-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.anima-u__lesson-card { min-height: 100%; display: grid; grid-template-rows: 170px auto; }
.anima-u__lesson-card.is-complete { border-color: rgba(157,255,207,.46); }
.anima-u__lesson-image {
  min-height: 170px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.anima-u__lesson-image--empty { display: grid; place-items: center; font-size: 46px; background: radial-gradient(circle at 35% 20%, rgba(255,255,255,.22), rgba(255,255,255,.04)); }
.anima-u__lesson-body { padding: 16px; display: grid; gap: 10px; align-content: start; }
.anima-u__lesson-body h3 { margin: 0; color: var(--anima-u-ink); font-size: 20px; line-height: 1.12; }
.anima-u__lesson-body p { margin: 0; color: var(--anima-u-muted); }
.anima-u__lesson-meta { color: var(--anima-u-gold) !important; font-weight: 900; font-size: 12px; }
.anima-u__plate-strip { display: flex; flex-wrap: wrap; gap: 6px; }
.anima-u__plate-strip span { padding: 6px 8px; border-radius: 999px; background: rgba(255,255,255,.10); color: var(--anima-u-muted); font-size: 11px; border: 1px solid rgba(255,255,255,.12); }

.anima-u__reader { display: grid; gap: 14px; }
.anima-u__reader-hero { display: grid; grid-template-columns: minmax(240px, 360px) minmax(0, 1fr); gap: 18px; padding: 18px; }
.anima-u__reader-image { min-height: 280px; border-radius: 20px; background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,.16); }
.anima-u__reader-image--empty { display: grid; place-items: center; font-size: 60px; background: rgba(255,255,255,.08); }
.anima-u__reader-copy h2 { margin: 0 0 10px; color: var(--anima-u-ink); font-size: clamp(28px, 4vw, 58px); line-height: .96; letter-spacing: -.04em; }
.anima-u__reader-copy p { color: var(--anima-u-muted); }
.anima-u__reader-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 14px; align-items: start; }
.anima-u__plate-index,
.anima-u__article-content,
.anima-u__related { border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: rgba(255,255,255,.08); padding: 18px; }
.anima-u__plate-index { position: sticky; top: 92px; display: grid; gap: 8px; max-height: 660px; overflow: auto; }
.anima-u__plate-index-row { border-radius: 16px; padding: 10px; display: flex; gap: 8px; text-align: left; align-items: flex-start; }
.anima-u__plate-index-row span { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.anima-u__article-content { color: rgba(255,248,255,.88); font-size: 17px; line-height: 1.74; }
.anima-u__article-content h1,
.anima-u__article-content h2,
.anima-u__article-content h3,
.anima-u__article-content h4 { color: var(--anima-u-ink); line-height: 1.1; }
.anima-u__article-content img { max-width: 100%; height: auto; border-radius: 16px; }
.anima-u__article-content a { color: var(--anima-u-gold); }

.anima-u__plates-view { display: grid; gap: 14px; }
.anima-u__plates-head { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 22px; }
.anima-u__plates-head h3 { margin: 0 0 8px; font-size: clamp(28px, 4vw, 52px); line-height: 1; color: var(--anima-u-ink); }
.anima-u__plates-head p { margin: 0; color: var(--anima-u-muted); font-size: 17px; }
.anima-u__plate-orb { width: 120px; height: 120px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 30% 20%, #fff, #ffdff4 22%, #9c73ff 55%, #261342 100%); box-shadow: inset 0 0 20px rgba(255,255,255,.45), 0 0 30px rgba(156,115,255,.42); }
.anima-u__plate-orb strong { font-size: 36px; line-height: .8; }
.anima-u__plate-orb span { margin-top: -18px; color: rgba(255,255,255,.76); }
.anima-u__plate-progress,
.anima-u__mastery-bar { height: 14px; border-radius: 999px; background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.12); overflow: hidden; }
.anima-u__plate-progress span,
.anima-u__mastery-bar span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--anima-u-pink), var(--anima-u-gold), var(--anima-u-blue)); box-shadow: 0 0 24px rgba(255,216,111,.32); }
.anima-u__plate-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.anima-u__plate { padding: 18px; min-height: 240px; cursor: pointer; transform-origin: center; }
.anima-u__plate.is-selected { border-color: rgba(255,216,111,.74); }
.anima-u__plate-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.anima-u__plate-top span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 15px; background: rgba(255,255,255,.13); font-size: 23px; }
.anima-u__plate-top b { margin-right: auto; color: var(--anima-u-gold); }
.anima-u__plate-top em { color: var(--anima-u-muted); font-style: normal; font-size: 12px; }
.anima-u__plate h4 { margin: 0 0 8px; font-size: 21px; line-height: 1.1; color: var(--anima-u-ink); }
.anima-u__plate p { color: var(--anima-u-muted); margin: 0 0 12px; }
.anima-u__plate small { color: rgba(255,216,111,.84); }

.anima-u__related { margin-top: 4px; }
.anima-u__related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.anima-u__related-card { border-radius: 18px; padding: 14px; display: grid; gap: 4px; text-align: left; }
.anima-u__related-card b { color: var(--anima-u-ink); }
.anima-u__related-card span { color: var(--anima-u-muted); font-size: 12px; }

.anima-u__progress-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 14px; }
.anima-u__mastery-bar { margin: 12px 0; }

.anima-u__loading,
.anima-u__empty { min-height: 360px; display: grid; place-items: center; text-align: center; align-content: center; gap: 12px; }
.anima-u__loading h3,
.anima-u__empty h3 { margin: 0; font-size: 28px; color: var(--anima-u-ink); }
.anima-u__loading p,
.anima-u__empty p { margin: 0; color: var(--anima-u-muted); }
.anima-u__spinner { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 26px; background: radial-gradient(circle at 30% 20%, #fff, #bff4ff 35%, #9c73ff 68%, #2b174f 100%); box-shadow: inset 0 0 15px rgba(255,255,255,.7), 0 0 28px rgba(156,115,255,.5); animation: animaSpin 1.7s linear infinite; font-size: 38px; }

@keyframes animaCrystalPulse { 0%, 100% { transform: scale(1); filter: brightness(1); } 50% { transform: scale(1.08); filter: brightness(1.12); } }
@keyframes animaFloat { from { transform: translate3d(0,0,0) scale(.95); } to { transform: translate3d(34px,-24px,0) scale(1.08); } }
@keyframes animaBookHover { 0%,100% { transform: perspective(820px) rotateY(-22deg) rotateX(6deg) translateY(0); } 50% { transform: perspective(820px) rotateY(-18deg) rotateX(9deg) translateY(-10px); } }
@keyframes animaSpin { to { transform: rotate(360deg); } }

@media (max-width: 1180px) {
  .anima-u__layout { grid-template-columns: 1fr; }
  .anima-u__sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .anima-u__command-card { grid-column: 1 / -1; }
  .anima-u__home-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .anima-u__lesson-grid,
  .anima-u__plate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .anima-u__reader-layout { grid-template-columns: 1fr; }
  .anima-u__plate-index { position: static; max-height: 300px; }
}

@media (max-width: 780px) {
  .anima-university-overlay { padding: 0; }
  .anima-university-panel { height: 100vh; border-radius: 0; }
  .anima-university-launcher { top: auto; bottom: 154px; right: 14px; padding: 10px 13px 10px 10px; }
  .anima-university-launcher__text { display: none; }
  .anima-u { padding: 12px; }
  .anima-u__topbar { align-items: flex-start; flex-direction: column; border-radius: 20px; }
  .anima-u__top-actions { justify-content: flex-start; }
  .anima-u__hero { grid-template-columns: 1fr; padding: 18px; border-radius: 24px; }
  .anima-u__hero h1 { font-size: 48px; }
  .anima-u__search-row { flex-direction: column; }
  .anima-u__search-rune { top: 23px; transform: none; }
  .anima-u__hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .anima-u__hero-stats strong { font-size: 22px; }
  .anima-u__sidebar,
  .anima-u__home-grid,
  .anima-u__lesson-grid,
  .anima-u__plate-grid,
  .anima-u__related-grid,
  .anima-u__progress-grid { grid-template-columns: 1fr; }
  .anima-u__library-head,
  .anima-u__current-card,
  .anima-u__plates-head { flex-direction: column; align-items: stretch; }
  .anima-u__reader-hero { grid-template-columns: 1fr; }
  .anima-u__reader-image { min-height: 210px; }
  .anima-u__plate-orb { width: 90px; height: 90px; }
  .anima-u__top-actions .anima-u__ghost { padding: 9px 10px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .anima-u__tilt,
  .anima-u__sky span,
  .anima-u__book3d,
  .anima-university-launcher__crystal,
  .anima-u__spinner { animation: none !important; transition: none !important; transform: none !important; }
}
