/* Shared visual system for public catalog and detail pages. Loaded last. */
:root {
  --public-shell-max: 1400px;
  --public-shell-gutter: clamp(12px, 3vw, 40px);
  --public-surface: rgba(11, 15, 16, 0.82);
  --public-surface-raised: rgba(16, 21, 22, 0.9);
  --public-line: rgba(231, 239, 237, 0.16);
  --public-line-strong: rgba(43, 231, 214, 0.38);
  --public-ink: #f4f7f6;
  --public-muted: #a8b3b1;
  --public-teal: #20dcca;
  --public-red: #ee1748;
}

html.page-projects,
html.page-anime,
html.page-music,
html.page-mail {
  min-height: 100%;
  overflow-x: clip;
  background: #07090a;
}

body.public-environment {
  min-height: 100%;
  overflow-x: clip;
  color: var(--public-ink);
  background: transparent;
  isolation: isolate;
}

body.public-environment::before {
  position: fixed;
  z-index: -2;
  inset: -2px;
  background-color: #07090a;
  background-image: url("/assets/home-masterbrand-hero-2026.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  opacity: 1;
  filter: saturate(0.82) brightness(0.98) contrast(1.02);
  mask-image: none;
  animation: none;
  pointer-events: none;
  transform: translateZ(0);
}

body.public-environment::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 8, 0.01), rgba(7, 9, 10, 0.07) 56%, rgba(7, 9, 10, 0.16));
  content: "";
  opacity: 1;
  filter: none;
  animation: none;
  pointer-events: none;
  transform: none;
}

body.public-environment.anime-title-page::after {
  background:
    linear-gradient(90deg, rgba(2, 10, 11, .28), rgba(7, 9, 10, .05) 44%, rgba(24, 5, 10, .18)),
    linear-gradient(180deg, rgba(5, 7, 8, .08), rgba(7, 9, 10, .24));
}

body[data-projects-page] main,
body.anime-page main,
body.music-page main {
  position: relative;
  z-index: 0;
  min-width: 0;
}

/* Games and Anime use the same compact return control as the homepage. */
body[data-projects-page] > .home-back-top.site-back-top,
body.anime-page > .home-back-top.site-back-top {
  --scroll-top-size: 52px;
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  left: auto;
  z-index: 80;
  display: grid;
  width: var(--scroll-top-size);
  height: var(--scroll-top-size);
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #dce4e2;
  background: rgba(7, 10, 11, 0.88);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

body[data-projects-page] > .home-back-top.site-back-top.is-visible,
body.anime-page > .home-back-top.site-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body[data-projects-page] > .home-back-top.site-back-top:hover,
body[data-projects-page] > .home-back-top.site-back-top:focus-visible,
body.anime-page > .home-back-top.site-back-top:hover,
body.anime-page > .home-back-top.site-back-top:focus-visible {
  border-color: rgba(0, 216, 199, 0.66);
  color: #fff;
}

body[data-projects-page] > .home-back-top .home-back-top__icon,
body.anime-page > .home-back-top .home-back-top__icon {
  width: 64%;
  height: 64%;
  filter: none;
}

body[data-projects-page] > .home-back-top .home-back-top__rail,
body.anime-page > .home-back-top .home-back-top__rail {
  stroke: var(--public-red);
}

body[data-projects-page] > .site-header,
body.anime-page > .site-header,
body.music-page > .site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  width: min(var(--public-shell-max), calc(100% - 48px));
  min-height: 78px;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 0 4px;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(225, 236, 233, 0.13);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(7, 10, 11, 0.88), rgba(7, 10, 11, 0.62));
  box-shadow: none;
  backdrop-filter: blur(16px) saturate(1.05);
}

body[data-projects-page] > .site-header .brand,
body.anime-page > .site-header .brand,
body.music-page > .site-header .brand {
  min-width: 0;
  min-height: 58px;
  justify-self: start;
  gap: 10px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-projects-page] > .site-header .brand__mark,
body.anime-page > .site-header .brand__mark,
body.music-page > .site-header .brand__mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  filter: none;
}

body[data-projects-page] > .site-header .brand__name,
body.anime-page > .site-header .brand__name,
body.music-page > .site-header .brand__name {
  color: var(--public-ink);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

body[data-projects-page] > .site-header .nav,
body.anime-page > .site-header .nav,
body.music-page > .site-header .nav {
  display: flex;
  width: auto;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 4px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-projects-page] > .site-header .nav::after,
body.anime-page > .site-header .nav::after,
body.music-page > .site-header .nav::after,
body[data-projects-page] > .site-header .nav a::before,
body.anime-page > .site-header .nav a::before,
body.music-page > .site-header .nav a::before,
body[data-projects-page] > .site-header .header-action::before,
body.anime-page > .site-header .header-action::before,
body.music-page > .site-header .header-action::before {
  display: none;
}

body[data-projects-page] > .site-header .nav a,
body.anime-page > .site-header .nav a,
body.music-page > .site-header .nav a,
body[data-projects-page] > .site-header .header-action,
body.anime-page > .site-header .header-action,
body.music-page > .site-header .header-action {
  position: relative;
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  overflow: visible;
  border: 0;
  border-radius: 4px;
  color: #c5cfcd;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease;
}

body[data-projects-page] > .site-header .nav a::after,
body.anime-page > .site-header .nav a::after,
body.music-page > .site-header .nav a::after {
  position: absolute;
  right: 13px;
  bottom: 2px;
  left: 13px;
  height: 1px;
  border-radius: 0;
  background: var(--public-teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

body[data-projects-page] > .site-header .nav a:hover,
body[data-projects-page] > .site-header .nav a:focus-visible,
body[data-projects-page] > .site-header .nav a[aria-current="page"],
body.anime-page > .site-header .nav a:hover,
body.anime-page > .site-header .nav a:focus-visible,
body.anime-page > .site-header .nav a[aria-current="page"],
body.music-page > .site-header .nav a:hover,
body.music-page > .site-header .nav a:focus-visible,
body.music-page > .site-header .nav a[aria-current="page"] {
  color: #fff;
  background: rgba(32, 220, 202, 0.07);
  box-shadow: none;
  transform: none;
}

body[data-projects-page] > .site-header .nav a:hover::after,
body[data-projects-page] > .site-header .nav a:focus-visible::after,
body[data-projects-page] > .site-header .nav a[aria-current="page"]::after,
body.anime-page > .site-header .nav a:hover::after,
body.anime-page > .site-header .nav a:focus-visible::after,
body.anime-page > .site-header .nav a[aria-current="page"]::after,
body.music-page > .site-header .nav a:hover::after,
body.music-page > .site-header .nav a:focus-visible::after,
body.music-page > .site-header .nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

body[data-projects-page] > .site-header .header-actions,
body.anime-page > .site-header .header-actions,
body.music-page > .site-header .header-actions {
  display: flex;
  min-width: 210px;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 8px;
}

body[data-projects-page] > .site-header .header-action,
body.anime-page > .site-header .header-action,
body.music-page > .site-header .header-action {
  border-bottom: 1px solid rgba(32, 220, 202, 0.64);
  border-radius: 0;
  color: #fff;
}

body[data-projects-page] > .site-header .language-switcher,
body.anime-page > .site-header .language-switcher,
body.music-page > .site-header .language-switcher {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

body[data-projects-page] > .site-header .language-switcher button,
body.anime-page > .site-header .language-switcher button,
body.music-page > .site-header .language-switcher button {
  min-width: 36px;
  min-height: 34px;
  padding: 0 7px;
  border: 0;
  border-radius: 3px;
  color: #bec8c6;
  background: transparent;
  font-size: 12px;
}

body[data-projects-page] > .site-header .language-switcher button.is-active,
body.anime-page > .site-header .language-switcher button.is-active,
body.music-page > .site-header .language-switcher button.is-active {
  color: #031211;
  background: var(--public-teal);
}

body[data-projects-page] .eyebrow,
body.anime-page .eyebrow,
body.music-page .eyebrow {
  margin-bottom: 14px;
  color: var(--public-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}

body[data-projects-page] :is(.projects-library__head, .project-detail-hero__body, .project-slug-panel__header) h1,
body.anime-page :is(.anime-hero--catalog, .anime-title-info) h1,
body.music-page .music-hero__copy h1 {
  max-width: min(100%, 1050px);
  margin: 0 0 18px;
  color: var(--public-ink);
  font-family: var(--font-display);
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

body[data-projects-page] :is(.projects-library__head, .project-detail-hero__body) p:not(.eyebrow),
body.anime-page :is(.anime-hero--catalog, .anime-title-info) .hero__lead,
body.music-page .music-hero__lead,
body[data-projects-page] .section__intro > p:not(.eyebrow),
body.anime-page .section__intro > p:not(.eyebrow),
body.music-page .section__intro > p:not(.eyebrow) {
  max-width: 66ch;
  color: var(--public-muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.58;
}

body[data-projects-page] :is(.section__intro, .projects-library__head) h2,
body.anime-page .section__intro h2,
body.music-page .section__intro h2,
body.music-page .footer__intro h2 {
  margin-top: 0;
  color: var(--public-ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

body[data-projects-page] .projects-library {
  display: flex;
  width: min(var(--public-shell-max), calc(100% - 48px));
  flex-direction: column;
  padding-top: clamp(54px, 7vw, 92px);
}

body[data-projects-page] .projects-library__head {
  order: 1;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--public-line);
}

body[data-projects-page] .projects-library > [data-project-news] {
  order: 2;
  margin: 36px 0 48px;
}

body[data-projects-page] .projects-library > .projects-status-tabs { order: 3; }
body[data-projects-page] .projects-library > .projects-sections { order: 4; }

body[data-projects-page] :is(.projects-showcase, .project-card, .project-detail-hero__cover, .project-slug-panel),
body.anime-page :is(.anime-card, .anime-schedule, .anime-title-poster, .anime-title-aside, .anime-player-card, .anime-episodes),
body.music-page :is(.music-platform, .music-feature, .work-embed, .music-footer__links a) {
  border-color: var(--public-line);
  border-radius: 6px;
  background-color: var(--public-surface);
  box-shadow: none;
}

body[data-projects-page] :is(.projects-showcase, .project-card):hover,
body.anime-page .anime-card:hover,
body.music-page :is(.music-platform, .work-embed):hover {
  border-color: var(--public-line-strong);
  background-color: var(--public-surface-raised);
}

body[data-projects-page] .projects-library__summary,
body[data-projects-page] .projects-status-tabs,
body.anime-page .anime-feed__tools {
  border-radius: 5px;
  background: rgba(9, 13, 14, 0.66);
  box-shadow: none;
}

body.anime-page .anime-hero--catalog {
  width: min(var(--public-shell-max), calc(100% - 48px));
  min-height: auto;
  padding: clamp(62px, 8vw, 104px) 0 clamp(50px, 6vw, 76px);
  border-bottom: 1px solid var(--public-line);
  background: transparent;
}

body.anime-page .anime-feed,
body.anime-page .anime-title-shell,
body.anime-page .anime-watch {
  width: min(var(--public-shell-max), calc(100% - 48px));
}

body.anime-page .anime-feed {
  padding-top: clamp(52px, 6vw, 82px);
}

body.music-page main,
body.music-page .music-footer {
  width: min(var(--public-shell-max), calc(100% - 48px));
}

body.music-page .music-hero {
  min-height: min(760px, calc(100svh - 78px));
  padding: clamp(66px, 8vw, 112px) 0 clamp(54px, 6vw, 86px);
}

body.music-page .music-feature {
  overflow: hidden;
  border: 1px solid var(--public-line);
}

body.music-page .music-platform {
  background: rgba(9, 13, 14, 0.76);
}

body.music-page .music-releases {
  padding-top: clamp(62px, 7vw, 96px);
}

body.anime-page .anime-main .anime-grid {
  align-items: stretch;
}

body.anime-page .anime-main .anime-grid > .anime-card {
  align-self: stretch;
}

body.anime-page .anime-card h3 {
  display: -webkit-box;
  height: 3.54em;
  min-height: 3.54em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.anime-page .anime-card p {
  height: 3.04em;
  min-height: 3.04em;
}

body.public-environment .public-attribution {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(231, 239, 237, 0.12);
  color: var(--public-muted);
  font-size: 13px;
  line-height: 1;
}

body.public-environment > .public-attribution--standalone {
  width: min(var(--public-shell-max), calc(100% - (2 * var(--public-shell-gutter))));
  margin: clamp(36px, 6vw, 72px) auto 0;
  padding-bottom: 24px;
}

body.public-environment .public-minimal-footer {
  display: flex;
  width: min(var(--public-shell-max), calc(100% - (2 * var(--public-shell-gutter))));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(48px, 7vw, 88px) auto 0;
  padding: 18px 0 max(22px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(231, 239, 237, 0.12);
  color: var(--public-muted);
  font-size: 12px;
}

body.public-environment .public-minimal-footer p {
  margin: 0;
}

body.public-environment .public-minimal-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

body.public-environment .public-minimal-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(231, 239, 237, 0.86);
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

body.public-environment .public-minimal-footer a:hover,
body.public-environment .public-minimal-footer a:focus-visible {
  color: var(--public-teal);
}

body.anime-page[data-anime-page="feed"] .anime-layout {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 560px) {
  body.public-environment .public-minimal-footer {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  body.public-environment .public-minimal-footer nav {
    justify-content: flex-start;
    gap: 14px;
  }
}

body[data-projects-page="index"] .projects-showcase__featured {
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background: var(--public-surface);
}

body[data-projects-page="index"] .projects-showcase__media {
  position: relative;
  grid-row: 1;
  min-height: 0;
}

body[data-projects-page="index"] .projects-showcase__shade {
  display: none;
}

body[data-projects-page="index"] .projects-showcase__caption {
  position: relative;
  z-index: 2;
  inset: auto;
  display: grid;
  max-width: none;
  gap: 6px;
  padding: 18px 24px 20px;
  border-top: 1px solid var(--public-line);
  background: rgba(8, 11, 12, 0.96);
}

body[data-projects-page="index"] .projects-showcase__caption h2 {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1;
  text-shadow: none;
}

body[data-projects-page="index"] .projects-showcase__caption p {
  max-width: 72ch;
  margin: 0;
  color: var(--public-muted);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  body[data-projects-page] > .site-header,
  body.anime-page > .site-header,
  body.music-page > .site-header {
    top: 0;
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    min-height: 104px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand actions" "nav nav";
    gap: 4px 8px;
    padding: 5px 0;
    overflow: visible;
    border-radius: 0;
  }

  body[data-projects-page] > .site-header .brand,
  body.anime-page > .site-header .brand,
  body.music-page > .site-header .brand {
    grid-area: brand;
    min-height: 42px;
    padding: 0;
  }

  body[data-projects-page] > .site-header .brand__mark,
  body.anime-page > .site-header .brand__mark,
  body.music-page > .site-header .brand__mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  body[data-projects-page] > .site-header .header-actions,
  body.anime-page > .site-header .header-actions,
  body.music-page > .site-header .header-actions {
    grid-area: actions;
    width: auto;
    min-width: 0;
    max-width: none;
    overflow: visible;
  }

  body[data-projects-page] > .site-header .nav,
  body.anime-page > .site-header .nav,
  body.music-page > .site-header .nav {
    grid-area: nav;
    display: grid;
    width: 100%;
    max-width: none;
    min-height: 40px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    padding: 0;
    overflow: visible;
    border-radius: 0;
  }

  body[data-projects-page] > .site-header .nav a,
  body.anime-page > .site-header .nav a,
  body.music-page > .site-header .nav a {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 0 5px;
    font-size: 11px;
  }

  body[data-projects-page="index"] :is(.projects-showcase, .projects-showcase__main, .projects-showcase__featured) {
    height: 380px;
  }

  body[data-projects-page] .projects-library,
  body.anime-page :is(.anime-hero--catalog, .anime-feed, .anime-title-shell, .anime-watch),
  body.music-page main,
  body.music-page .music-footer {
    width: calc(100% - 24px);
  }

  body.music-page .music-hero {
    min-height: auto;
    padding-top: 58px;
  }
}

@media (max-width: 560px) {
  body[data-projects-page] > .site-header .header-action,
  body.anime-page > .site-header .header-action,
  body.music-page > .site-header .header-action {
    display: none;
  }

  body[data-projects-page] :is(.projects-library__head, .project-detail-hero__body, .project-slug-panel__header) h1,
  body.anime-page :is(.anime-hero--catalog, .anime-title-info) h1,
  body.music-page .music-hero__copy h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  body[data-projects-page] :is(.section__intro, .projects-library__head) h2,
  body.anime-page .section__intro h2,
  body.music-page .section__intro h2,
  body.music-page .footer__intro h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  body[data-projects-page] .projects-library__head {
    padding-bottom: 24px;
  }

  body[data-projects-page] .projects-library > [data-project-news] {
    margin: 28px 0 36px;
  }

  body[data-projects-page="index"] :is(.projects-showcase, .projects-showcase__main, .projects-showcase__featured) {
    height: 350px;
  }

  body[data-projects-page="index"] .projects-showcase__caption {
    padding: 14px 16px 16px;
  }

  body[data-projects-page="index"] .projects-showcase__caption p {
    display: none;
  }

  body.anime-page .anime-hero--catalog {
    padding-top: 46px;
    padding-bottom: 42px;
  }
}

@media (max-width: 780px) {
  body.public-environment::before {
    background-image: image-set(
      url("/assets/home-environment-continuation-mobile-v2-430.webp") 1x,
      url("/assets/home-environment-continuation-mobile-v2-852.webp") 2x
    );
    background-position: center top;
    filter: saturate(0.74) brightness(0.76) contrast(1.03);
  }
}

/* Compact public controls: segmented catalog filters and a quiet channel link. */
body.anime-page .anime-feed__tools {
  display: inline-grid;
  width: max-content;
  max-width: 100%;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(247, 247, 247, .16);
  border-radius: 4px;
  background: rgba(3, 8, 9, .82);
  box-shadow: inset 0 0 0 1px rgba(43, 231, 214, .04);
}

body.anime-page .anime-feed__tools .feed-filter {
  position: relative;
  min-width: 0;
  min-height: 36px;
  padding: 0 15px;
  overflow: visible;
  border: 0;
  border-radius: 2px;
  color: rgba(247, 247, 247, .68);
  background: transparent;
  box-shadow: none;
  font-size: .76rem;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transform: none;
  transition: color .16s ease, background-color .16s ease;
}

body.anime-page .anime-feed__tools .feed-filter::before {
  display: none;
}

body.anime-page .anime-feed__tools .feed-filter:hover:not(.is-active) {
  color: #f7f7f7;
  border-color: transparent;
  background: rgba(43, 231, 214, .08);
  box-shadow: none;
  transform: none;
}

body.anime-page .anime-feed__tools .feed-filter:is(.is-active, [aria-selected="true"]) {
  color: #001310;
  border-color: transparent;
  background: #19e1cf;
  box-shadow: none;
  transform: none;
}

body.anime-page .anime-feed__tools .feed-filter:focus-visible {
  outline: 2px solid rgba(43, 231, 214, .72);
  outline-offset: 2px;
}

body.music-page .music-channel-link {
  display: inline-flex;
  min-height: 34px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(247, 247, 247, .28);
  border-radius: 0;
  color: #f7f7f7;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color .16s ease, border-color .16s ease;
}

body.music-page .music-channel-link span:last-child {
  color: #19e1cf;
  transition: transform .16s ease;
}

body.music-page .music-channel-link:hover,
body.music-page .music-channel-link:focus-visible {
  color: #19e1cf;
  border-color: #19e1cf;
}

body.music-page .music-channel-link:hover span:last-child,
body.music-page .music-channel-link:focus-visible span:last-child {
  transform: translate(2px, -2px);
}

@media (max-width: 640px) {
  body.anime-page .anime-feed__tools {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.anime-page .anime-feed__tools .feed-filter {
    width: 100%;
    padding-inline: 8px;
    font-size: .7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-projects-page] > .site-header *,
  body.anime-page > .site-header *,
  body.music-page > .site-header * {
    transition: none;
  }
}
