:root {
  --studio-black: #17304f;
  --studio-ink: #203650;
  --studio-muted: #66758a;
  --studio-paper: #ffffff;
  --studio-canvas: #f7fbff;
  --studio-line: #d5eaf2;
  --studio-line-strong: #8dc9de;
  --studio-cyan: #35bdf8;
  --studio-rose: #ff73b6;
  --studio-yellow: #ffd166;
  --studio-green: #59d5b2;
  --studio-blue: #4f8fe8;
  --studio-lavender: #9888e8;
  --studio-cyan-soft: #e1f7ff;
  --studio-rose-soft: #fff0f7;
  --studio-yellow-soft: #fff8dc;
  --studio-green-soft: #e8fbf4;
  --studio-lavender-soft: #f3efff;
  --studio-radius: 8px;
  --studio-shadow: 0 18px 44px rgba(35, 119, 170, .13), 0 5px 0 rgba(225, 247, 255, .72);
  --studio-ease: cubic-bezier(.2, .78, .18, 1);
  --studio-jelly: cubic-bezier(.18, 1.24, .28, 1);
}

@keyframes holoHeroRibbonIn {
  0% { opacity: 0; transform: translate3d(18px, -3px, 0) scaleX(.36); }
  72% { opacity: 1; transform: translate3d(-2px, 1px, 0) scaleX(1.04); }
  100% { opacity: .92; transform: none; }
}

html.holo-studio-ui {
  color-scheme: light;
  background: var(--studio-canvas);
}

html.holo-studio-ui,
html.holo-studio-ui * {
  letter-spacing: 0 !important;
}

html.holo-studio-ui *,
html.holo-studio-ui *::before,
html.holo-studio-ui *::after {
  box-sizing: border-box;
}

html.holo-studio-ui body {
  --route-accent: var(--studio-cyan);
  --route-action: #1685b5;
  --route-secondary: var(--studio-rose);
  --route-soft: var(--studio-cyan-soft);
  --route-secondary-soft: var(--studio-rose-soft);
  min-width: 0;
  color: var(--studio-ink) !important;
  background-color: var(--studio-canvas) !important;
  background-image:
    linear-gradient(156deg, rgba(225, 247, 255, .92) 0, rgba(225, 247, 255, .2) 34%, transparent 52%),
    linear-gradient(24deg, rgba(255, 240, 247, .78) 0, transparent 42%),
    linear-gradient(118deg, transparent 0 57%, rgba(255, 248, 220, .5) 75%, rgba(232, 251, 244, .6) 100%),
    repeating-linear-gradient(118deg, transparent 0 27px, rgba(53, 189, 248, .032) 27px 28px) !important;
  background-size: 100% 620px, 100% 100%, 100% 100%, 100% 100% !important;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat !important;
  font-family: Inter, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif !important;
  font-feature-settings: "palt" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html.holo-studio-ui body[data-holo-route="live"] {
  --route-accent: #ff6d8f;
  --route-action: #d63f68;
  --route-secondary: var(--studio-yellow);
  --route-soft: #fff0f4;
  --route-secondary-soft: var(--studio-yellow-soft);
}

html.holo-studio-ui body[data-holo-route="schedule"],
html.holo-studio-ui body[data-holo-route="watchalong"] {
  --route-accent: var(--studio-blue);
  --route-action: #376fc2;
  --route-secondary: var(--studio-green);
  --route-soft: #edf5ff;
  --route-secondary-soft: var(--studio-green-soft);
}

html.holo-studio-ui body[data-holo-route="events"],
html.holo-studio-ui body[data-holo-route="songs"],
html.holo-studio-ui body[data-holo-route="special-live"] {
  --route-accent: var(--studio-rose);
  --route-action: #cc4f8a;
  --route-secondary: var(--studio-cyan);
  --route-soft: var(--studio-rose-soft);
  --route-secondary-soft: var(--studio-cyan-soft);
}

html.holo-studio-ui body[data-holo-route="holodori"] {
  --route-accent: #e0a928;
  --route-action: #a96e00;
  --route-secondary: var(--studio-cyan);
  --route-soft: var(--studio-yellow-soft);
  --route-secondary-soft: var(--studio-cyan-soft);
}

html.holo-studio-ui body[data-holo-route="secret"],
html.holo-studio-ui body[data-holo-route="wiki"] {
  --route-accent: var(--studio-lavender);
  --route-action: #6d5ac0;
  --route-secondary: var(--studio-rose);
  --route-soft: var(--studio-lavender-soft);
  --route-secondary-soft: var(--studio-rose-soft);
}

html.holo-studio-ui body[data-holo-route="sports"],
html.holo-studio-ui body[data-holo-route="labo"] {
  --route-accent: var(--studio-green);
  --route-action: #238667;
  --route-secondary: var(--studio-yellow);
  --route-soft: var(--studio-green-soft);
  --route-secondary-soft: var(--studio-yellow-soft);
}

html.holo-studio-ui body[data-holo-route="discover"] {
  --route-accent: var(--studio-cyan);
  --route-action: #1685b5;
  --route-secondary: var(--studio-green);
  --route-soft: var(--studio-cyan-soft);
  --route-secondary-soft: var(--studio-green-soft);
}

html.holo-studio-ui body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  border: 8px solid rgba(255, 255, 255, .74);
  pointer-events: none;
}

html.holo-studio-ui :where(a, button, input, select, textarea, summary) {
  font: inherit;
}

html.holo-studio-ui :where(a, button, [role="button"]) {
  -webkit-tap-highlight-color: transparent;
}

html.holo-studio-ui :where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--studio-cyan) !important;
  outline-offset: 3px !important;
}

html.holo-studio-ui :where(header, main, footer) {
  width: min(100%, 1640px) !important;
  max-width: 1640px !important;
}

html.holo-studio-ui body > header,
html.holo-studio-ui body > .site-header {
  position: sticky !important;
  z-index: 500 !important;
  top: 0 !important;
  width: 100% !important;
  max-width: none !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(53, 189, 248, .28) !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, .9) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px) saturate(1.18) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.18) !important;
  transition: box-shadow .28s ease, background-color .28s ease !important;
}

html.holo-studio-ui body.holo-scrolled > header,
html.holo-studio-ui body.holo-scrolled > .site-header {
  background: rgba(255, 255, 255, .985) !important;
  box-shadow: 0 10px 30px rgba(35, 119, 170, .09) !important;
}

html.holo-studio-ui body > header :where(nav, .header-inner),
html.holo-studio-ui body > .site-header :where(nav, .header-inner) {
  display: grid !important;
  grid-template-areas: none !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-rows: auto auto auto !important;
  grid-auto-flow: row !important;
  align-items: center !important;
  width: min(100%, 1640px) !important;
  max-width: 1640px !important;
  min-height: 64px;
  margin: 0 auto !important;
  padding: 10px 22px !important;
  column-gap: 14px !important;
  row-gap: 0 !important;
}

html.holo-studio-ui body > header :where(nav, .header-inner) > .brand,
html.holo-studio-ui body > .site-header :where(nav, .header-inner) > .brand {
  grid-area: auto !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: max-content !important;
}

html.holo-studio-ui body > header :where(nav, .header-inner) > :is(.links, .nav-links, .secret-nav),
html.holo-studio-ui body > .site-header :where(nav, .header-inner) > :is(.links, .nav-links, .secret-nav) {
  grid-area: auto !important;
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  width: 100% !important;
  border-top: 1px solid var(--studio-line);
}

html.holo-studio-ui body > header :where(nav, .header-inner) > .holo-header-tools,
html.holo-studio-ui body > .site-header :where(nav, .header-inner) > .holo-header-tools {
  grid-area: auto !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
}

html.holo-studio-ui body > header :where(nav, .header-inner) > .today-panel,
html.holo-studio-ui body > .site-header :where(nav, .header-inner) > .today-panel {
  grid-area: auto !important;
  grid-column: 1 / -1 !important;
  grid-row: 3 !important;
}

.holo-header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
  margin-right: 76px;
}

.holo-header-tools-compact {
  margin-right: 76px;
}

.holo-header-tools .admin-menu {
  margin: 0 !important;
}

html.holo-studio-ui :where(.brand, a.brand) {
  min-width: max-content;
  color: var(--studio-black) !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  text-decoration: none !important;
}

html.holo-studio-ui :where(.brand .mark, .brand .brand-mark, .brand > img, .brand-icon) {
  width: 34px !important;
  height: 34px !important;
  border: 1px solid rgba(53, 189, 248, .34) !important;
  border-radius: 50% !important;
  background: var(--studio-cyan-soft) !important;
  box-shadow: 0 6px 18px rgba(35, 119, 170, .12) !important;
  object-fit: contain !important;
}

html.holo-studio-ui .brand .mark {
  display: grid !important;
  place-items: center !important;
  overflow: hidden;
  color: transparent !important;
}

html.holo-studio-ui :where(.brand .mark, .brand .brand-mark) img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

html.holo-studio-ui :where(.links, .nav-links, .secret-nav) {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0 !important;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

html.holo-studio-ui :where(.links, .nav-links, .secret-nav)::-webkit-scrollbar {
  display: none;
}

html.holo-studio-ui :where(.links, .nav-links, .secret-nav) a {
  position: relative;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 11px 12px !important;
  border: 0 !important;
  border-radius: 8px !important;
  color: #526b83 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  text-decoration: none !important;
  white-space: nowrap;
  transform: none !important;
}

html.holo-studio-ui :where(.links, .nav-links, .secret-nav) a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  background: var(--route-accent);
  clip-path: polygon(0 42%, 10% 12%, 22% 48%, 36% 18%, 50% 52%, 64% 16%, 78% 46%, 90% 13%, 100% 42%, 100% 100%, 0 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--studio-ease);
}

html.holo-studio-ui :where(.links, .nav-links, .secret-nav) a:hover,
html.holo-studio-ui :where(.links, .nav-links, .secret-nav) a.active,
html.holo-studio-ui :where(.links, .nav-links, .secret-nav) a[aria-current="page"] {
  color: var(--route-action) !important;
}

html.holo-studio-ui :where(.links, .nav-links, .secret-nav) a:hover::after,
html.holo-studio-ui :where(.links, .nav-links, .secret-nav) a.active::after,
html.holo-studio-ui :where(.links, .nav-links, .secret-nav) a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

html.holo-studio-ui :where(main) {
  position: relative;
  margin: 0 auto !important;
  padding-right: 22px !important;
  padding-left: 22px !important;
}

html.holo-studio-ui :where(h1, h2, h3, h4, strong, b) {
  color: inherit;
}

html.holo-studio-ui :where(h1, h2, h3, h4) {
  text-wrap: balance;
}

html.holo-studio-ui h1 {
  max-width: 1100px;
  margin: 12px 0 !important;
  color: var(--studio-black) !important;
  font-size: 54px !important;
  font-weight: 850 !important;
  line-height: 1.02 !important;
}

html.holo-studio-ui h2 {
  margin: 0 !important;
  color: var(--studio-black) !important;
  font-size: 28px !important;
  font-weight: 820 !important;
  line-height: 1.16 !important;
}

html.holo-studio-ui h3 {
  font-size: 17px !important;
  line-height: 1.3 !important;
}

html.holo-studio-ui :where(.hero, .page-head, .finder) {
  position: relative;
  min-height: 0 !important;
  margin: 18px 0 0 !important;
  padding: 38px 34px 34px !important;
  border: 0 !important;
  border-top: 1px solid color-mix(in srgb, var(--route-accent) 48%, white) !important;
  border-bottom: 1px solid var(--studio-line) !important;
  border-radius: var(--studio-radius) !important;
  color: var(--studio-black) !important;
  background-color: color-mix(in srgb, var(--route-soft) 88%, white) !important;
  background-image: linear-gradient(128deg, rgba(255, 255, 255, .74), transparent 48%), linear-gradient(24deg, color-mix(in srgb, var(--route-secondary-soft) 62%, transparent), transparent 54%) !important;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .8), 0 16px 42px rgba(35, 119, 170, .075) !important;
  overflow: hidden;
}

html.holo-studio-ui :where(.hero, .page-head, .finder)::before {
  content: attr(data-holo-route-label);
  display: block;
  margin-bottom: 22px;
  padding-left: 18px;
  color: var(--route-action);
  background: url('/assets/ui-icons/sparkles.svg') left center / 12px 12px no-repeat;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
}

html.holo-studio-ui :where(.hero, .page-head, .finder)::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: auto !important;
  width: 214px !important;
  height: 12px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 0 0 8px !important;
  background: linear-gradient(90deg, var(--route-accent) 0 28%, var(--route-secondary) 28% 56%, var(--studio-yellow) 56% 78%, var(--studio-green) 78%) !important;
  clip-path: polygon(0 0, 100% 0, 96% 54%, 88% 76%, 79% 58%, 68% 88%, 57% 62%, 46% 92%, 35% 62%, 24% 86%, 13% 58%, 4% 78%);
  opacity: 0;
  transform-origin: right top;
  animation: holoHeroRibbonIn .82s var(--studio-jelly) .12s 1 both !important;
}

html.holo-studio-ui :where(.hero p, .page-head p, .finder p, .lead, .muted) {
  max-width: 760px;
  color: var(--studio-muted) !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
}

html.holo-studio-ui :where(.eyebrow, .badge, .pill, .status, .group-label, .filter-title) {
  border: 0 !important;
  border-radius: 8px !important;
  color: var(--route-action) !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace !important;
  font-size: 10px !important;
  font-weight: 760 !important;
  line-height: 1.2 !important;
  text-transform: uppercase;
  animation: none !important;
}

html.holo-studio-ui .grad {
  color: var(--route-action) !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

html.holo-studio-ui :where(main > section, main > article, main > .section, .page-section, .guide-band) {
  margin: 0 !important;
  padding-top: 42px !important;
  padding-bottom: 42px !important;
  border-bottom: 1px solid var(--studio-line);
}

html.holo-studio-ui :where(.section-title, .section-head, .section-heading, .gacha-heading) {
  align-items: center !important;
  margin: 0 0 22px !important;
  padding: 0 0 12px !important;
  border-bottom: 1px solid var(--studio-line) !important;
}

html.holo-studio-ui .holo-motion-title {
  width: auto !important;
  padding: 0 0 5px 46px !important;
}

html.holo-studio-ui .holo-motion-title::before {
  content: attr(data-holo-section-index);
  position: absolute;
  top: 50%;
  left: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 22px;
  border: 1px solid var(--route-accent);
  border-radius: 8px;
  color: var(--route-action);
  background: var(--route-soft);
  font: 750 10px/1 ui-monospace, "SFMono-Regular", Consolas, monospace;
  transform: translateY(-50%);
}

html.holo-studio-ui .holo-motion-title::after {
  display: block !important;
  right: auto !important;
  left: 46px !important;
  width: 68px !important;
  height: 3px !important;
  background: linear-gradient(90deg, var(--route-accent), var(--route-secondary), var(--studio-yellow)) !important;
}

html.holo-studio-ui :where(.panel, .notice, .summary, .quick-stats, .toolbar, .secret-layout, .finder-shell) {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  animation: none !important;
}

html.holo-studio-ui .panel {
  padding: 0 !important;
}

html.holo-studio-ui :where(button, .chip, .more-btn, .back, .event-link, .event-live-open, .today-toggle) {
  min-height: 36px;
  border: 1px solid var(--studio-line) !important;
  border-radius: 8px !important;
  color: var(--studio-ink) !important;
  background: var(--studio-paper) !important;
  box-shadow: 0 4px 12px rgba(35, 119, 170, .045) !important;
  font-size: 11px !important;
  font-weight: 760 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  overflow: hidden;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .28s var(--studio-jelly), box-shadow .25s ease !important;
}

html.holo-studio-ui :where(button, .chip, .more-btn, .back, .event-link, .event-live-open, .today-toggle):hover {
  border-color: var(--route-accent) !important;
  color: var(--route-action) !important;
  background: var(--route-soft) !important;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--route-accent) 14%, transparent) !important;
  transform: translateY(-2px) scale(1.012) !important;
}

html.holo-studio-ui :where(button, .chip, .more-btn, .back, .event-link, .event-live-open, .today-toggle):active {
  transform: translateY(0) scale(.965, 1.025) !important;
}

html.holo-studio-ui :where(button.active, .chip.active, button[aria-pressed="true"], [role="tab"][aria-selected="true"]) {
  border-color: var(--route-action) !important;
  color: var(--studio-paper) !important;
  background: var(--route-action) !important;
}

html.holo-studio-ui :where(input:not([type="checkbox"]):not([type="radio"]), select, textarea, .search) {
  border: 1px solid var(--studio-line) !important;
  border-radius: 8px !important;
  color: var(--studio-black) !important;
  background: var(--studio-paper) !important;
  box-shadow: none !important;
}

html.holo-studio-ui :where(input:not([type="checkbox"]):not([type="radio"]), select, textarea):focus {
  border-color: var(--route-accent) !important;
  box-shadow: 0 0 0 3px var(--route-soft) !important;
}

html.holo-studio-ui .controls,
html.holo-studio-ui .control-row {
  gap: 5px !important;
}

html.holo-studio-ui .holo-motion-section {
  opacity: 0;
  clip-path: none !important;
  transform: translate3d(0, 18px, 0) scale(.994) !important;
  transition: opacity .5s ease var(--holo-motion-delay, 0ms), transform .7s var(--studio-jelly) var(--holo-motion-delay, 0ms) !important;
}

html.holo-studio-ui .holo-motion-section.holo-motion-visible,
html.holo-studio-ui .holo-motion-section.holo-motion-immediate {
  opacity: 1;
  transform: none !important;
}

html.holo-studio-ui .holo-motion-card {
  --holo-card-lift: 0px;
  border: 1px solid var(--studio-line) !important;
  border-radius: var(--studio-radius) !important;
  background-color: var(--studio-paper) !important;
  background-image: none !important;
  box-shadow: 0 8px 24px rgba(35, 119, 170, .055), 0 3px 0 rgba(225, 247, 255, .7) !important;
  transform: perspective(1000px) translate3d(0, var(--holo-card-lift), 0) rotateX(var(--holo-card-x)) rotateY(var(--holo-card-y)) !important;
  transition: transform .38s var(--studio-jelly), border-color .25s ease, box-shadow .3s ease !important;
}

html.holo-studio-ui .holo-motion-card:hover,
html.holo-studio-ui .holo-motion-card:focus-within {
  --holo-card-lift: -3px;
  border-color: var(--card-accent, var(--route-accent)) !important;
  box-shadow: var(--studio-shadow) !important;
}

html.holo-studio-ui .holo-motion-rail {
  display: none !important;
}

html.holo-studio-ui .holo-card-sheen {
  display: block !important;
  background: linear-gradient(112deg, transparent 30%, rgba(225, 247, 255, .76) 44%, rgba(255, 240, 247, .7) 50%, transparent 64%) !important;
}

html.holo-studio-ui .holo-card-ribbon {
  display: block !important;
  background: linear-gradient(90deg, var(--card-accent, var(--route-accent)), color-mix(in srgb, var(--card-accent, var(--route-accent)) 42%, white)) !important;
  box-shadow: 0 3px 8px color-mix(in srgb, var(--card-accent, var(--route-accent)) 16%, transparent);
}

html.holo-studio-ui .holo-motion-media {
  opacity: 0;
  clip-path: inset(0 0 8% 0) !important;
  transform: translate3d(0, 8px, 0) scale(1.01) !important;
  transition: opacity .48s ease, clip-path .62s var(--studio-ease), transform .62s var(--studio-ease), filter .25s ease !important;
}

html.holo-studio-ui .holo-motion-media.holo-motion-visible,
html.holo-studio-ui .holo-motion-visible .holo-motion-media {
  opacity: 1;
  clip-path: inset(0) !important;
  transform: none !important;
}

html.holo-studio-ui .holo-motion-card:hover .holo-motion-media {
  filter: saturate(1.03) contrast(1.02) !important;
}

html.holo-studio-ui .holo-scroll-progress {
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--studio-cyan), var(--studio-rose), var(--studio-yellow), var(--studio-green)) !important;
  box-shadow: 0 2px 10px rgba(53, 189, 248, .2) !important;
}

html.holo-studio-ui .holo-page-curtain {
  background: linear-gradient(135deg, #e1f7ff, #f3efff 42%, #fff0f7 72%, #fff8dc) !important;
  transition-duration: .18s !important;
}

html.holo-studio-ui :where(.live-card, .stream-card, .song-card, .event-card, .secret-card, .sports-card, .race-card, .news-card, .feature-card, .talent-card, .collab-card, .character-card, .gacha-card, .wiki-card, main .card) {
  --card-accent: var(--route-accent);
  border: 1px solid var(--studio-line) !important;
  border-top: 1px solid color-mix(in srgb, var(--card-accent) 38%, var(--studio-line)) !important;
  border-radius: var(--studio-radius) !important;
  background: var(--studio-paper) !important;
  box-shadow: inset 0 2px 0 color-mix(in srgb, var(--card-accent) 24%, transparent), 0 8px 24px rgba(35, 119, 170, .055) !important;
}

html.holo-studio-ui :where(.holo-motion-card, .live-card, .stream-card, .song-card, .event-card, .secret-card, .sports-card, .race-card, .news-card, .feature-card, .talent-card, .collab-card, .character-card, .gacha-card, .wiki-card, main .card):nth-child(4n + 2) {
  --card-accent: var(--studio-rose);
}

html.holo-studio-ui :where(.holo-motion-card, .live-card, .stream-card, .song-card, .event-card, .secret-card, .sports-card, .race-card, .news-card, .feature-card, .talent-card, .collab-card, .character-card, .gacha-card, .wiki-card, main .card):nth-child(4n + 3) {
  --card-accent: var(--studio-green);
}

html.holo-studio-ui :where(.holo-motion-card, .live-card, .stream-card, .song-card, .event-card, .secret-card, .sports-card, .race-card, .news-card, .feature-card, .talent-card, .collab-card, .character-card, .gacha-card, .wiki-card, main .card):nth-child(4n) {
  --card-accent: var(--studio-lavender);
}

html.holo-studio-ui :where(.live-card, .special-live-card, .talent-card)[style*="--member-color"] {
  --card-accent: var(--member-color);
}

html.holo-studio-ui .talent-card[style*="--member-color"]::after {
  background: linear-gradient(135deg, color-mix(in srgb, var(--member-color) 58%, white), color-mix(in srgb, var(--member-sub-color, var(--member-color)) 72%, white)) !important;
}

html.holo-studio-ui :where(.calendar-event, body[data-holo-route="schedule"] .event) {
  position: relative;
  overflow: hidden;
}

html.holo-studio-ui :where(.calendar-event, body[data-holo-route="schedule"] .event)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 30px;
  height: 5px;
  border-radius: 0 0 0 4px;
  background: var(--event-border, var(--event-color, var(--route-accent)));
  pointer-events: none;
}

html.holo-studio-ui body[data-holo-route="songs"] .holo-card-sheen,
html.holo-studio-ui body[data-holo-route="songs"] .card::after {
  display: none !important;
}

html.holo-studio-ui body[data-holo-route="songs"] :where(.chip, .member-btn, .home-link) {
  background-image: none !important;
  text-shadow: none !important;
}

html.holo-studio-ui :where(.live-thumb, .video-thumb, .stream-thumb, .card-media, .event-header-mini, .secret-thumb, .song-thumb) {
  border-radius: 8px !important;
  background-color: var(--route-soft) !important;
}

html.holo-studio-ui :where(.live-card, .stream-card, .song-card, .secret-card, .event-card) img {
  transition: transform .5s var(--studio-ease), filter .3s ease !important;
}

html.holo-studio-ui :where(.live-card, .stream-card, .song-card, .secret-card, .event-card):hover img {
  transform: scale(1.025);
}

html.holo-studio-ui :where(.live-badge, .special-live-badge, .sports-live-label.live) {
  border-radius: 6px !important;
  color: #fff !important;
  background: #e9355f !important;
  box-shadow: none !important;
  animation: none !important;
}

html.holo-studio-ui :where(.avatar, .live-icon, .person img, .special-live-member img, .channel-avatar) {
  border-radius: 50% !important;
  border-color: var(--studio-paper) !important;
  box-shadow: 0 4px 14px rgba(35, 119, 170, .13) !important;
}

html.holo-studio-ui .today-panel {
  grid-column: 1 / -1;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 8px 0 0 !important;
  border: 0 !important;
  border-top: 1px solid var(--studio-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html.holo-studio-ui .today-head h3 {
  margin: 0 !important;
  color: var(--studio-muted) !important;
  font: 760 10px/1 ui-monospace, "SFMono-Regular", Consolas, monospace !important;
}

html.holo-studio-ui .today-list {
  min-width: 0;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px !important;
}

html.holo-studio-ui .today-list:not(.collapsed) {
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
}

html.holo-studio-ui .today-item {
  display: grid !important;
  grid-template-columns: minmax(96px, .35fr) minmax(180px, 1.65fr) minmax(0, auto) !important;
  align-items: center !important;
  gap: 12px !important;
  min-height: 30px;
  border: 0 !important;
  border-left: 2px solid var(--today-color, var(--studio-cyan)) !important;
  border-radius: 0 !important;
  color: var(--studio-ink) !important;
  background: rgba(255, 255, 255, .86) !important;
  box-shadow: none !important;
}

html.holo-studio-ui .today-item > :is(b, .holo-today-title) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html.holo-studio-ui .today-item > span:not(.holo-today-title) {
  display: block !important;
}

html.holo-studio-ui .today-item > .holo-today-title {
  color: var(--studio-muted) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

html.holo-studio-ui .today-item > .holo-today-meta {
  color: var(--studio-cyan-strong) !important;
  font: 800 10px/1 ui-monospace, "SFMono-Regular", Consolas, monospace !important;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html.holo-studio-ui .today-list.collapsed .today-item:nth-of-type(n + 2) {
  display: none !important;
}

html.holo-studio-ui .local-widget,
html.holo-studio-ui .site-width-control {
  border: 1px solid var(--studio-line) !important;
  border-radius: 8px !important;
  background: var(--studio-paper) !important;
  box-shadow: none !important;
}

html.holo-studio-ui .local-widget b {
  color: var(--studio-black) !important;
}

html.holo-studio-ui body[data-holo-route="home"] main {
  padding-top: 0 !important;
}

html.holo-studio-ui body[data-holo-route="home"] .hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 36px;
  align-items: end;
  margin-top: 22px !important;
  padding: 42px !important;
  border: 1px solid rgba(53, 189, 248, .34) !important;
  border-top: 1px solid rgba(53, 189, 248, .36) !important;
  border-radius: 8px !important;
  color: var(--studio-ink) !important;
  background-color: #f2fbff !important;
  background-image:
    linear-gradient(124deg, rgba(255, 255, 255, .82), transparent 48%),
    linear-gradient(28deg, rgba(255, 115, 182, .14), transparent 48%),
    repeating-linear-gradient(118deg, transparent 0 31px, rgba(53, 189, 248, .045) 31px 32px) !important;
  background-size: 100% 100%, 100% 100%, 100% 100% !important;
  box-shadow: 0 20px 50px rgba(35, 119, 170, .1) !important;
}

html.holo-studio-ui body[data-holo-route="home"] .hero::before {
  grid-column: 1 / -1;
  color: var(--route-action);
}

html.holo-studio-ui body[data-holo-route="home"] .hero::after {
  top: auto !important;
  right: 42px !important;
  bottom: 0 !important;
  width: 192px !important;
}

html.holo-studio-ui body[data-holo-route="home"] .hero h1 {
  grid-column: 1;
  margin: 0 !important;
  color: var(--studio-black) !important;
  font-size: 56px !important;
}

html.holo-studio-ui body[data-holo-route="home"] .hero .grad {
  color: #d94d8c !important;
}

html.holo-studio-ui body[data-holo-route="home"] .hero .lead {
  grid-column: 1;
  margin: 14px 0 0 !important;
  color: var(--studio-muted) !important;
}

html.holo-studio-ui body[data-holo-route="home"] .hero > .badge {
  display: none !important;
}

.holo-hero-nav {
  width: 100% !important;
  max-width: none !important;
  grid-column: 2;
  grid-row: 2 / span 2;
  display: grid;
  grid-template-areas: none !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(4, minmax(54px, 1fr)) !important;
  grid-auto-flow: row !important;
  align-content: start;
  align-items: stretch !important;
  justify-content: stretch !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  align-self: stretch;
  border-top: 1px solid rgba(53, 189, 248, .28);
}

.holo-hero-nav a {
  --hero-nav-accent: var(--studio-cyan);
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border-bottom: 1px solid rgba(53, 189, 248, .22);
  color: var(--studio-ink);
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
  transition: color .2s ease, padding-left .28s var(--studio-ease), background-color .2s ease;
}

.holo-hero-nav a:hover {
  padding-left: 7px;
  color: var(--route-action);
  background: rgba(255, 255, 255, .72);
}

.holo-hero-nav .holo-ui-icon {
  color: var(--hero-nav-accent);
}

.holo-hero-nav a:nth-child(2) { --hero-nav-accent: var(--studio-blue); }
.holo-hero-nav a:nth-child(3) { --hero-nav-accent: var(--studio-rose); }
.holo-hero-nav a:nth-child(4) { --hero-nav-accent: var(--studio-lavender); }

.holo-hero-nav .holo-hero-arrow {
  color: var(--hero-nav-accent);
  font-size: 17px;
}

html.holo-studio-ui body[data-holo-route="home"] #live {
  padding-top: 34px !important;
}

html.holo-studio-ui body[data-holo-route="home"] .live-tools {
  padding: 10px 0 16px !important;
  border-bottom: 1px solid var(--studio-line);
}

html.holo-studio-ui .calendar-week {
  border: 1px solid var(--studio-line) !important;
  border-radius: var(--studio-radius) !important;
  background: rgba(255, 255, 255, .64) !important;
  box-shadow: 0 10px 28px rgba(35, 119, 170, .06) !important;
}

html.holo-studio-ui .calendar-day {
  border: 1px solid var(--studio-line) !important;
  border-radius: 8px !important;
  background: var(--studio-paper) !important;
  box-shadow: none !important;
}

html.holo-studio-ui .calendar-event {
  border: 0 !important;
  border-left: 3px solid var(--event-color, var(--studio-cyan)) !important;
  border-radius: 6px !important;
  background: var(--studio-cyan-soft) !important;
  box-shadow: none !important;
}

html.holo-studio-ui .calendar-event:hover {
  background: var(--studio-rose-soft) !important;
}

html.holo-studio-ui .group-label {
  padding: 10px 12px !important;
  border: 1px solid color-mix(in srgb, var(--route-accent) 22%, var(--studio-line)) !important;
  border-radius: 8px !important;
  color: var(--studio-black) !important;
  background: linear-gradient(110deg, var(--route-soft), rgba(255, 255, 255, .88) 62%, var(--route-secondary-soft)) !important;
  font-family: inherit !important;
  font-size: 15px !important;
  text-transform: none;
}

html.holo-studio-ui .talent-card::after {
  display: none !important;
}

html.holo-studio-ui .debut-counter {
  border: 0 !important;
  border-top: 1px solid var(--studio-line) !important;
  border-radius: 0 !important;
  color: var(--studio-muted) !important;
  background: transparent !important;
}

html.holo-studio-ui body[data-holo-route="events"] :where(.summary, .toolbar),
html.holo-studio-ui body[data-holo-route="schedule"] :where(.toolbar, .filters),
html.holo-studio-ui body[data-holo-route="songs"] :where(.sidebar, .filters),
html.holo-studio-ui body[data-holo-route="secret"] .secret-sidebar {
  border: 1px solid var(--studio-line) !important;
  border-radius: var(--studio-radius) !important;
  background: rgba(255, 255, 255, .9) !important;
  box-shadow: 0 10px 28px rgba(35, 119, 170, .07) !important;
}

html.holo-studio-ui body[data-holo-route="events"] .event-card,
html.holo-studio-ui body[data-holo-route="schedule"] .day-group,
html.holo-studio-ui body[data-holo-route="discover"] .source-card {
  border-radius: var(--studio-radius) !important;
  box-shadow: none !important;
}

html.holo-studio-ui body[data-holo-route="holodori"] :where(.quick-stats, .guide-band) {
  border: 1px solid var(--studio-line) !important;
  border-radius: var(--studio-radius) !important;
  border-top: 1px solid color-mix(in srgb, var(--route-accent) 44%, var(--studio-line)) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, .7), transparent 52%), var(--route-soft) !important;
  box-shadow: inset 0 2px 0 color-mix(in srgb, var(--route-accent) 22%, transparent) !important;
}

html.holo-studio-ui body[data-holo-route="holodori"] :where(.stat, .stat-card) {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html.holo-studio-ui body[data-holo-route="sports"] .hero,
html.holo-studio-ui body[data-holo-route="secret"] .hero,
html.holo-studio-ui body[data-holo-route="holodori"] .hero {
  background-image: linear-gradient(132deg, rgba(255, 255, 255, .8), transparent 52%), linear-gradient(24deg, color-mix(in srgb, var(--route-secondary-soft) 68%, transparent), transparent 58%) !important;
}

html.holo-studio-ui body[data-holo-route="events"] .page-head {
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  padding-top: 58px !important;
}

html.holo-studio-ui body[data-holo-route="events"] .page-head::before {
  position: absolute;
  top: 22px;
  left: 0;
  margin: 0;
}

html.holo-studio-ui body[data-holo-route="events"] .page-head h1 {
  font-size: 48px !important;
}

html.holo-studio-ui body[data-holo-route="events"] .page-head .eyebrow {
  display: none !important;
}

html.holo-studio-ui body[data-holo-route="secret"] .hero {
  padding-top: 58px !important;
}

html.holo-studio-ui body[data-holo-route="secret"] .hero::before {
  position: absolute !important;
  top: 22px !important;
  right: auto !important;
  bottom: auto !important;
  left: 0 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  background: none !important;
  animation: none !important;
}

html.holo-studio-ui body[data-holo-route="secret"] .hero .eyebrow {
  display: none !important;
}

html.holo-studio-ui body[data-holo-route="events"] .calendar-links a {
  min-height: 38px;
  border: 1px solid var(--studio-line) !important;
  border-radius: 8px !important;
  color: var(--studio-black) !important;
  background: var(--studio-paper) !important;
  box-shadow: none !important;
}

html.holo-studio-ui body[data-holo-route="events"] .calendar-links a:hover {
  border-color: var(--route-action) !important;
  color: var(--studio-paper) !important;
  background: var(--route-action) !important;
}

html.holo-studio-ui body[data-holo-route="songs"] .bubble {
  display: none !important;
}

html.holo-studio-ui body[data-holo-route="songs"] main {
  width: min(100%, 1640px) !important;
  max-width: 1640px !important;
  padding: 0 22px 80px !important;
}

html.holo-studio-ui body[data-holo-route="songs"] .topbar {
  position: sticky !important;
  z-index: 500;
  top: 0;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 14px !important;
  min-height: 64px;
  margin: 0 !important;
  padding: 9px 0 !important;
  border-bottom: 1px solid rgba(255, 115, 182, .24);
  background: rgba(255, 255, 255, .96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

html.holo-studio-ui body[data-holo-route="songs"] .topbar > .chips {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
  overflow-x: auto;
}

html.holo-studio-ui body[data-holo-route="songs"] .topbar .home-link {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 11px 12px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #4c535d !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  white-space: nowrap;
}

html.holo-studio-ui body[data-holo-route="songs"] .topbar .home-link:hover {
  color: var(--studio-black) !important;
}

html.holo-studio-ui body[data-holo-route="songs"] .hero {
  display: block !important;
  margin: 18px 0 0 !important;
  padding: 42px !important;
  border: 1px solid rgba(255, 115, 182, .3) !important;
  border-top: 1px solid rgba(255, 115, 182, .36) !important;
  border-radius: 8px !important;
  color: var(--studio-ink) !important;
  background-color: var(--studio-rose-soft) !important;
  background-image:
    linear-gradient(126deg, rgba(255, 255, 255, .78), transparent 48%),
    linear-gradient(30deg, rgba(53, 189, 248, .14), transparent 51%),
    repeating-linear-gradient(118deg, transparent 0 31px, rgba(255, 115, 182, .038) 31px 32px) !important;
  background-size: 100% 100%, 100% 100%, 100% 100% !important;
  box-shadow: 0 20px 50px rgba(211, 79, 139, .09) !important;
  text-align: left !important;
}

html.holo-studio-ui body[data-holo-route="songs"] .hero::before {
  color: var(--route-action) !important;
}

html.holo-studio-ui body[data-holo-route="songs"] .hero::after {
  top: auto !important;
  right: 42px !important;
  bottom: 0 !important;
  width: 192px !important;
}

html.holo-studio-ui body[data-holo-route="songs"] .hero > .badge {
  display: none !important;
}

html.holo-studio-ui body[data-holo-route="songs"] .hero h1 {
  color: var(--studio-black) !important;
  font-size: 52px !important;
}

html.holo-studio-ui body[data-holo-route="songs"] .hero .lead {
  margin: 16px 0 0 !important;
  color: var(--studio-muted) !important;
}

html.holo-studio-ui body[data-holo-route="songs"] .layout {
  grid-template-columns: 280px minmax(0, 1fr) !important;
  gap: 28px !important;
  padding-top: 34px !important;
}

html.holo-studio-ui body[data-holo-route="songs"] .side {
  top: 82px !important;
  padding: 16px !important;
  border: 1px solid var(--studio-line) !important;
  border-radius: var(--studio-radius) !important;
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 12px 30px rgba(211, 79, 139, .07) !important;
  backdrop-filter: blur(12px);
}

html.holo-studio-ui body[data-holo-route="songs"] :where(.member, .actions a, .actions span, .song-link, .song-play, .track) {
  border-radius: 8px !important;
  background-image: none !important;
  box-shadow: none !important;
}

html.holo-studio-ui body[data-holo-route="sports"] .hero > .eyebrow {
  display: none !important;
}

html.holo-studio-ui body[data-holo-route="sports"] .hero::before {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  animation: none !important;
}

html.holo-studio-ui body[data-holo-route="sports"] .hero h1 {
  font-size: 54px !important;
}

html.holo-studio-ui body[data-holo-route="sports"] .hero h1 span {
  color: var(--studio-cyan) !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  animation: none !important;
}

html.holo-studio-ui body[data-holo-route="sports"] .sport-track {
  display: flex;
  gap: 0 !important;
  margin-top: 24px !important;
  overflow-x: auto !important;
  border-top: 1px solid var(--studio-line);
  border-bottom: 1px solid var(--studio-line);
}

html.holo-studio-ui body[data-holo-route="sports"] .sport-track span {
  min-height: 38px;
  padding: 13px 16px !important;
  border: 0 !important;
  border-right: 1px solid var(--studio-line) !important;
  border-radius: 0 !important;
  color: #4e555f !important;
  background: transparent !important;
  animation: none !important;
  transform: none !important;
}

html.holo-studio-ui body.event-page .hero {
  min-height: 360px !important;
  margin: 0 !important;
  padding: 34px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--studio-black) !important;
  background-color: var(--route-soft) !important;
  background-image: linear-gradient(128deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .18) 54%), var(--event-hero-image, linear-gradient(135deg, var(--route-soft), var(--route-secondary-soft))) !important;
  background-size: cover, var(--event-hero-size, cover) !important;
  background-position: center, var(--event-hero-position, center) !important;
  animation: none !important;
}

html.holo-studio-ui body.event-page .hero::before {
  display: none !important;
}

html.holo-studio-ui body.event-page .hero::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  z-index: 0 !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .82) 40%, rgba(255, 255, 255, .22) 72%, rgba(225, 247, 255, .06)) !important;
  pointer-events: none;
}

html.holo-studio-ui body.event-page .hero h1 {
  position: relative;
  z-index: 1;
  color: var(--studio-black) !important;
  font-size: 54px !important;
  max-width: min(760px, 64%) !important;
  text-shadow: 0 2px 0 rgba(255, 255, 255, .86), 0 8px 28px rgba(23, 48, 79, .12) !important;
}

html.holo-studio-ui body.event-page main .card {
  margin: 0 !important;
  padding: 30px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--studio-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html.holo-studio-ui .holo-pilot {
  display: flex !important;
  grid-template-areas: none !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  width: 50px;
  max-width: none !important;
  height: 50px;
  margin: 0 !important;
  padding: 4px;
  border: 1px solid rgba(53, 189, 248, .34) !important;
  border-radius: 25px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(225, 247, 255, .94) 56%, rgba(255, 240, 247, .92)) !important;
  box-shadow: 0 14px 34px rgba(35, 119, 170, .15), 0 4px 0 rgba(255, 240, 247, .72) !important;
}

html.holo-studio-ui .holo-pilot[data-open="true"],
html.holo-studio-ui .holo-pilot:focus-within,
html.holo-studio-ui .holo-pilot:hover {
  width: 318px;
  border-radius: 25px !important;
}

html.holo-studio-ui .holo-pilot-trigger {
  width: 40px;
  height: 40px;
  border: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--route-soft), var(--route-secondary-soft)) !important;
  box-shadow: 0 6px 18px rgba(35, 119, 170, .18) !important;
}

html.holo-studio-ui .holo-pilot-trigger:hover {
  transform: scale(1.05, .96) rotate(-3deg) !important;
}

html.holo-studio-ui .holo-pilot-trigger img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  animation: none !important;
}

html.holo-studio-ui .holo-pilot[data-open="true"] .holo-pilot-trigger img,
html.holo-studio-ui .holo-pilot-trigger:hover img,
html.holo-studio-ui .holo-pilot-trigger:focus-visible img {
  animation: holoPilotHello .58s var(--holo-motion-spring) 1 both !important;
}

html.holo-studio-ui .holo-pilot-action {
  width: 38px;
  height: 38px;
  min-height: 38px;
  border: 0 !important;
  border-radius: 50% !important;
  color: #545b65 !important;
  background: transparent !important;
}

html.holo-studio-ui .holo-pilot-action:hover,
html.holo-studio-ui .holo-pilot-action[aria-current="page"] {
  color: var(--route-action) !important;
  background: var(--route-soft) !important;
  transform: none !important;
}

.holo-command-trigger {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  min-height: 38px !important;
  padding: 0 !important;
  border-color: var(--studio-line-strong) !important;
  border-radius: 50% !important;
  color: var(--route-action) !important;
  background: var(--route-soft) !important;
}

.holo-ui-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--holo-ui-icon) center / contain no-repeat;
  mask: var(--holo-ui-icon) center / contain no-repeat;
}

.holo-command-dialog {
  width: min(680px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 40px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(53, 189, 248, .34);
  border-radius: 8px;
  color: var(--studio-ink);
  background: linear-gradient(145deg, #fff, #f8fcff 58%, #fff7fb);
  box-shadow: 0 34px 100px rgba(23, 48, 79, .22);
}

.holo-command-dialog::backdrop {
  background: rgba(23, 48, 79, .3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.holo-command-dialog[open] {
  animation: holoCommandIn .28s var(--studio-ease) both;
}

@keyframes holoCommandIn {
  from { opacity: 0; transform: translateY(12px) scale(.985); }
  to { opacity: 1; transform: none; }
}

.holo-command-head {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 16px;
  border-bottom: 1px solid var(--studio-line);
}

.holo-command-head input {
  width: 100%;
  min-height: 62px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  color: var(--studio-black) !important;
  background: transparent !important;
  font-size: 17px !important;
}

.holo-command-close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  min-height: 32px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
}

.holo-command-list {
  display: grid;
  grid-template-areas: none !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: none !important;
  gap: 8px;
  max-height: min(560px, calc(100vh - 120px));
  padding: 12px;
  overflow: auto;
  background: #f8fcff;
}

.holo-command-item {
  --command-accent: var(--studio-cyan);
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid var(--studio-line);
  border-radius: 8px;
  color: var(--studio-ink);
  background: var(--studio-paper);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .3s var(--studio-jelly), box-shadow .25s ease;
}

.holo-command-item[hidden] {
  display: none !important;
}

.holo-command-item:hover,
.holo-command-item[data-active="true"] {
  border-color: var(--command-accent);
  color: var(--studio-black);
  background: var(--route-soft);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--command-accent) 12%, transparent);
  transform: translate3d(3px, -1px, 0) rotate(-.35deg);
}

.holo-command-item .holo-command-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--command-accent);
  border-radius: 50%;
  color: var(--command-accent);
  background: #fff;
}

.holo-command-item:nth-child(4n + 2) { --command-accent: var(--studio-rose); }
.holo-command-item:nth-child(4n + 3) { --command-accent: var(--studio-green); }
.holo-command-item:nth-child(4n) { --command-accent: var(--studio-lavender); }

.holo-command-item strong {
  display: block;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.holo-command-item small {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: var(--studio-muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.holo-command-item:hover small,
.holo-command-item[data-active="true"] small {
  color: var(--studio-muted);
}

.holo-command-empty {
  grid-column: 1 / -1;
  padding: 34px;
  color: var(--studio-muted);
  background: var(--studio-paper);
  text-align: center;
}

@keyframes holoSpecialPanelWake {
  0% { opacity: 0; background-position: 180% 0; }
  42% { opacity: .42; }
  100% { opacity: 0; background-position: -80% 0; }
}

html.holo-studio-ui body[data-holo-route="home"] #live {
  min-width: 0;
}

html.holo-studio-ui body[data-holo-route="home"] #liveGrid {
  width: var(--live-grid-width, 100%) !important;
  max-width: 100% !important;
  min-width: 0;
}

html.holo-studio-ui body[data-holo-route="home"] #live .live-tools .controls {
  min-width: 0;
}

html.holo-studio-ui body[data-holo-route="home"] #live .live-tools .controls > :where(button, a, span) {
  flex: 0 0 auto;
}

html.holo-studio-ui body[data-holo-route="home"] #liveGrid :where(.live-card, .live-info, .live-member, .live-member span),
html.holo-studio-ui body[data-holo-route="home"] :where(.special-live-panel, .special-live-section, .special-live-grid, .special-live-card, .special-live-thumb + div, .special-live-member, .special-live-member span) {
  min-width: 0;
}

html.holo-studio-ui body[data-holo-route="home"] .special-live-panel {
  width: 100%;
  max-width: 100%;
  padding: 14px !important;
  overflow: clip;
  border: 1px solid rgba(53, 189, 248, .28) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(128deg, rgba(255, 255, 255, .9), transparent 48%),
    linear-gradient(24deg, rgba(255, 115, 182, .12), transparent 52%),
    linear-gradient(135deg, #effaff, #fff8fc 56%, #fffbe9) !important;
  box-shadow: 0 14px 34px rgba(35, 119, 170, .085) !important;
}

html.holo-studio-ui body[data-holo-route="home"] .special-live-panel::before {
  inset: 0 !important;
  opacity: 0;
  transform: none !important;
  background: linear-gradient(112deg, transparent 32%, rgba(255, 255, 255, .72) 48%, transparent 64%) 180% 0 / 240% 100% no-repeat !important;
  animation: holoSpecialPanelWake .9s var(--studio-ease) .08s 1 both !important;
}

html.holo-studio-ui body[data-holo-route="home"] .special-live-head b {
  padding-left: 21px;
  color: var(--route-action) !important;
  background: url('/assets/ui-icons/sparkles.svg') left center / 13px 13px no-repeat;
}

html.holo-studio-ui body[data-holo-route="home"] .special-live-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

html.holo-studio-ui body[data-holo-route="home"] .special-live-card {
  grid-template-columns: minmax(88px, 112px) minmax(0, 1fr) !important;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px !important;
  background:
    linear-gradient(132deg, rgba(225, 247, 255, .46), transparent 42%),
    linear-gradient(24deg, rgba(255, 240, 247, .62), transparent 56%),
    #fff !important;
}

html.holo-studio-ui body[data-holo-route="home"] :where(.special-live-title, #liveGrid .live-title) {
  overflow-wrap: anywhere;
  word-break: normal;
}

html.holo-studio-ui body[data-holo-route="home"] :where(.special-live-member span, #liveGrid .live-member span) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html.holo-studio-ui .calendar-week.holo-motion-card,
html.holo-studio-ui .panel.holo-motion-card {
  --holo-card-lift: 0px;
  --holo-card-x: 0deg;
  --holo-card-y: 0deg;
  transform: none !important;
}

html.holo-studio-ui :where(.calendar-week, .panel) > :where(.holo-card-sheen, .holo-card-beam, .holo-card-ribbon) {
  display: none !important;
}

html.holo-studio-ui .calendar-day:hover {
  border-color: color-mix(in srgb, var(--route-secondary) 48%, var(--studio-line)) !important;
  background: color-mix(in srgb, var(--route-soft) 42%, white) !important;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--route-accent) 10%, transparent) !important;
}

html.holo-studio-ui .event-hover-card {
  border-color: color-mix(in srgb, var(--route-accent) 24%, var(--studio-line)) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgba(23, 48, 79, .16) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (min-width: 961px) {
  html.holo-studio-ui body[data-holo-route="home"] #live {
    width: var(--live-section-width, 100%) !important;
    max-width: none !important;
    margin-left: calc((100% - var(--live-section-width, 100%)) / 2) !important;
  }
}

@media (min-width: 1180px) {
  html.holo-studio-ui body[data-holo-route="home"] .collab-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  html.holo-studio-ui body[data-holo-route="home"] .collab-grid.collapsed .collab-card:nth-child(-n + 4) {
    display: block !important;
  }

  html.holo-studio-ui body[data-holo-route="home"] .collab-grid.collapsed .collab-card:nth-child(n + 5) {
    display: none !important;
  }
}

@media (min-width: 1180px) and (prefers-reduced-motion: no-preference) {
  html.holo-studio-ui .holo-motion-rail {
    display: block !important;
    border-color: rgba(255, 255, 255, .78) !important;
    background: linear-gradient(90deg, color-mix(in srgb, var(--route-accent) 34%, transparent), color-mix(in srgb, var(--route-secondary) 31%, transparent) 42%, rgba(255, 209, 102, .26) 72%, rgba(89, 213, 178, .28)) !important;
    box-shadow: 0 8px 24px rgba(35, 119, 170, .08) !important;
    opacity: .48 !important;
  }
}

@media (max-width: 1100px) {
  html.holo-studio-ui h1,
  html.holo-studio-ui body[data-holo-route="home"] .hero h1,
  html.holo-studio-ui body.event-page .hero h1 {
    font-size: 42px !important;
  }

  html.holo-studio-ui body[data-holo-route="home"] .hero {
    grid-template-columns: minmax(0, 1fr) 250px;
    padding: 34px !important;
  }
}

@media (max-width: 960px) {
  html.holo-studio-ui body::before {
    border-width: 4px;
  }

  html.holo-studio-ui body > header :where(nav, .header-inner),
  html.holo-studio-ui body > .site-header :where(nav, .header-inner) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    padding: 9px 12px !important;
  }

  html.holo-studio-ui :where(.links, .nav-links, .secret-nav) {
    grid-column: 1 / -1;
    order: 3;
    width: 100% !important;
    border-top: 1px solid var(--studio-line);
  }

  .holo-header-tools {
    grid-column: 2;
    grid-row: 1;
    margin-right: 76px;
  }

  html.holo-studio-ui body {
    padding-bottom: 72px !important;
  }

  html.holo-studio-ui .holo-pilot {
    right: 8px !important;
    left: auto !important;
    transform: none !important;
  }

  html.holo-studio-ui body[data-holo-route="songs"] main {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  html.holo-studio-ui body[data-holo-route="songs"] .topbar {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    padding: 8px 0 !important;
    border-radius: 0 !important;
  }

  html.holo-studio-ui body[data-holo-route="songs"] .topbar > .chips {
    justify-content: flex-start;
  }

  html.holo-studio-ui body[data-holo-route="songs"] .layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html.holo-studio-ui body[data-holo-route="songs"] .side {
    position: relative !important;
    top: auto !important;
  }

  .holo-header-tools .local-widget,
  .holo-header-tools .site-width-control {
    display: none !important;
  }

  html.holo-studio-ui :where(.links, .nav-links, .secret-nav) a {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  html.holo-studio-ui :where(main) {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  html.holo-studio-ui body[data-holo-route="home"] .special-live-card {
    grid-template-columns: minmax(88px, 104px) minmax(0, 1fr) !important;
  }

  html.holo-studio-ui body[data-holo-route="home"] .special-live-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html.holo-studio-ui body[data-holo-route="home"] #live .live-tools .controls {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scrollbar-width: none;
  }

  html.holo-studio-ui body[data-holo-route="home"] #live .live-tools .controls::-webkit-scrollbar {
    display: none;
  }

  html.holo-studio-ui .today-panel {
    grid-column: 1 / -1;
    order: 4;
  }

  html.holo-studio-ui .today-item {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  html.holo-studio-ui .today-item > b {
    display: none !important;
  }

  html.holo-studio-ui body[data-holo-route="home"] .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px !important;
  }

  html.holo-studio-ui body[data-holo-route="home"] .hero h1,
  html.holo-studio-ui body[data-holo-route="home"] .hero .lead,
  .holo-hero-nav {
    grid-column: 1;
  }

  .holo-hero-nav {
    grid-row: auto;
  }

}

@media (max-width: 640px) {
  html.holo-studio-ui h1,
  html.holo-studio-ui body[data-holo-route="home"] .hero h1,
  html.holo-studio-ui body.event-page .hero h1 {
    font-size: 34px !important;
    line-height: 1.08 !important;
  }

  html.holo-studio-ui body.event-page .hero {
    min-height: 0 !important;
    padding: calc(56.25vw + 20px) 18px 22px !important;
    background-color: color-mix(in srgb, var(--route-soft) 86%, white) !important;
    background-image: var(--event-hero-image, linear-gradient(135deg, var(--route-soft), var(--route-secondary-soft))) !important;
    background-size: 100% auto !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
  }

  html.holo-studio-ui body.event-page .hero::after {
    display: none !important;
  }

  html.holo-studio-ui body.event-page .hero h1 {
    max-width: 100% !important;
    color: var(--studio-black) !important;
    font-size: 28px !important;
    text-shadow: none !important;
  }

  html.holo-studio-ui h2 {
    font-size: 23px !important;
  }

  html.holo-studio-ui body[data-holo-route="songs"] .hero h1,
  html.holo-studio-ui body[data-holo-route="sports"] .hero h1,
  html.holo-studio-ui body[data-holo-route="events"] .page-head h1 {
    font-size: 34px !important;
  }

  html.holo-studio-ui body[data-holo-route="songs"] .hero {
    padding: 30px 22px !important;
  }

  html.holo-studio-ui :where(.hero, .page-head, .finder) {
    padding-top: 28px !important;
    padding-right: 22px !important;
    padding-bottom: 26px !important;
    padding-left: 22px !important;
  }

  html.holo-studio-ui body[data-holo-route="home"] .hero {
    margin-top: 12px !important;
    padding: 28px 22px 24px !important;
    border-radius: 8px !important;
  }

  html.holo-studio-ui body[data-holo-route="home"] .hero::after {
    right: 22px !important;
    width: 120px !important;
  }

  html.holo-studio-ui :where(main > section, main > article, main > .section, .page-section, .guide-band) {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  html.holo-studio-ui .holo-motion-title {
    padding-left: 46px !important;
  }

  html.holo-studio-ui .holo-pilot {
    bottom: max(8px, env(safe-area-inset-bottom));
  }

  html.holo-studio-ui .holo-pilot[data-open="true"],
  html.holo-studio-ui .holo-pilot:focus-within {
    width: min(350px, calc(100vw - 16px));
  }

  .holo-command-list {
    grid-template-columns: 1fr !important;
  }

}

@media (hover: none), (pointer: coarse) {
  html.holo-studio-ui .holo-motion-card:hover {
    --holo-card-lift: 0px;
    box-shadow: none !important;
  }
}

.wiki-article-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  margin-bottom: 18px;
  padding: 0 0 12px;
  border-bottom: 1px solid #d5eaf2;
  color: #66758a;
  font-size: 12px;
  font-weight: 800;
}

.wiki-article-nav a {
  flex: 0 0 auto;
  color: #6d5ac0;
  font-weight: 900;
  text-decoration: none;
}

.wiki-article-nav > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes holoEventPortalIn {
  0% { opacity: 0; transform: translate3d(-14px, 10px, 0) scale(.96); }
  72% { opacity: 1; transform: translate3d(2px, -1px, 0) scale(1.01); }
  100% { opacity: 1; transform: none; }
}

@keyframes holoEventPortalIcon {
  0%, 100% { transform: rotate(0) scale(1); }
  45% { transform: rotate(-5deg) scale(1.08, .94); }
  72% { transform: rotate(3deg) scale(.97, 1.04); }
}

.holo-event-portal {
  position: fixed;
  z-index: 680;
  left: max(14px, env(safe-area-inset-left));
  bottom: max(14px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  width: min(390px, calc(100vw - 82px));
  max-width: none;
  margin: 0;
  padding: 0;
  animation: holoEventPortalIn .58s var(--studio-jelly) both;
}

.holo-event-portal a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 9px;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 60px;
  border: 1px solid rgba(255, 115, 182, .38);
  border-radius: 8px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 15px 38px rgba(35, 119, 170, .18), 0 4px 0 rgba(255, 240, 247, .86);
  padding: 8px 10px;
  color: var(--studio-ink);
  text-decoration: none;
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s var(--studio-jelly);
}

html.holo-studio-ui body .holo-event-portal {
  grid-template-areas: none;
  grid-template-columns: minmax(0, 1fr) !important;
  width: min(390px, calc(100vw - 82px));
  max-width: none;
  margin: 0;
  padding: 0;
}

html.holo-studio-ui body .holo-event-portal > a {
  grid-area: auto;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
}

.holo-event-portal a:hover,
.holo-event-portal a:focus-visible {
  border-color: var(--studio-rose);
  box-shadow: 0 19px 44px rgba(35, 119, 170, .22), 0 4px 0 rgba(255, 240, 247, .94);
  transform: translateY(-2px);
}

.holo-event-portal-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(53, 189, 248, .3);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--studio-cyan-soft), var(--studio-rose-soft));
  color: #1586b5;
  animation: holoEventPortalIcon .76s var(--studio-jelly) 2;
}

.holo-event-portal-icon svg {
  width: 20px;
  height: 20px;
}

.holo-event-portal a > span:not(.holo-event-portal-icon) {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.holo-event-portal small,
.holo-event-portal strong,
.holo-event-portal em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.holo-event-portal small {
  color: #d44882;
  font-size: 8px;
  font-weight: 1000;
}

.holo-event-portal strong {
  font-size: 13px;
  line-height: 1.25;
}

.holo-event-portal em {
  color: var(--studio-muted);
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
}

.holo-event-portal i {
  color: #1685b5;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 620px) {
  .holo-event-portal {
    left: max(8px, env(safe-area-inset-left));
    bottom: max(8px, env(safe-area-inset-bottom));
    width: min(340px, calc(100vw - 68px));
  }

  html.holo-studio-ui body .holo-event-portal {
    width: min(340px, calc(100vw - 68px));
  }

  .holo-event-portal a {
    grid-template-columns: 36px minmax(0, 1fr) 16px;
    min-height: 54px;
    padding: 7px 8px;
  }

  .holo-event-portal-icon {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .holo-command-dialog[open],
  html.holo-studio-ui .holo-motion-section,
  html.holo-studio-ui .holo-motion-media,
  html.holo-studio-ui :where(.live-card, .stream-card, .song-card, .secret-card, .event-card) img,
  html.holo-studio-ui :where(.hero, .page-head, .finder)::after,
  html.holo-studio-ui .holo-card-ribbon,
  html.holo-studio-ui .holo-pilot-trigger img,
  .holo-command-item,
  .holo-event-portal,
  .holo-event-portal a,
  .holo-event-portal-icon {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  html.holo-studio-ui .holo-card-sheen,
  html.holo-studio-ui .holo-card-beam,
  html.holo-studio-ui .holo-soft-burst,
  html.holo-studio-ui body[data-holo-route="home"] .special-live-panel::before,
  html.holo-studio-ui .holo-motion-rail {
    display: none !important;
  }
}
