:root {
  --studio-black: #0d0f12;
  --studio-ink: #171a20;
  --studio-muted: #646b75;
  --studio-paper: #ffffff;
  --studio-canvas: #f2f4f6;
  --studio-line: #d9dde3;
  --studio-line-strong: #aeb5bf;
  --studio-cyan: #19b9df;
  --studio-rose: #f24f82;
  --studio-yellow: #f4c84a;
  --studio-green: #31b886;
  --studio-blue: #5367e8;
  --studio-radius: 6px;
  --studio-shadow: 0 16px 36px rgba(13, 15, 18, .08);
  --studio-ease: cubic-bezier(.2, .78, .18, 1);
}

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 {
  min-width: 0;
  color: var(--studio-ink) !important;
  background-color: var(--studio-canvas) !important;
  background-image:
    linear-gradient(rgba(13, 15, 18, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 15, 18, .025) 1px, transparent 1px) !important;
  background-size: 32px 32px !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::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  border: 8px solid var(--studio-paper);
  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(13, 15, 18, .14) !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: none !important;
  backdrop-filter: blur(16px) saturate(1.05) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.05) !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(13, 15, 18, .07) !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(13, 15, 18, .14) !important;
  border-radius: 50% !important;
  background: var(--studio-paper) !important;
  box-shadow: none !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: 0 !important;
  color: #4c535d !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(--studio-black);
  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(--studio-black) !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 0 34px !important;
  border: 0 !important;
  border-top: 1px solid var(--studio-black) !important;
  border-bottom: 1px solid var(--studio-line) !important;
  border-radius: 0 !important;
  color: var(--studio-black) !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden;
}

html.holo-studio-ui :where(.hero, .page-head, .finder)::before {
  content: attr(data-holo-route-label);
  display: block;
  margin-bottom: 22px;
  color: var(--studio-muted);
  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: 128px !important;
  height: 8px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: linear-gradient(90deg, var(--studio-cyan) 0 25%, var(--studio-rose) 25% 50%, var(--studio-yellow) 50% 75%, var(--studio-green) 75%) !important;
  opacity: 1 !important;
  animation: none !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: 0 !important;
  color: #59616b !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(--studio-cyan) !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 0 40px !important;
}

html.holo-studio-ui .holo-motion-title::before {
  content: attr(data-holo-section-index);
  position: absolute;
  top: 50%;
  left: 0;
  color: var(--studio-rose);
  font: 750 10px/1 ui-monospace, "SFMono-Regular", Consolas, monospace;
  transform: translateY(-50%);
}

html.holo-studio-ui .holo-motion-title::after {
  display: none !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: 5px !important;
  color: #31363e !important;
  background: var(--studio-paper) !important;
  box-shadow: none !important;
  font-size: 11px !important;
  font-weight: 760 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s var(--studio-ease) !important;
}

html.holo-studio-ui :where(button, .chip, .more-btn, .back, .event-link, .event-live-open, .today-toggle):hover {
  border-color: var(--studio-black) !important;
  color: var(--studio-paper) !important;
  background: var(--studio-black) !important;
  transform: translateY(-1px) !important;
}

html.holo-studio-ui :where(button.active, .chip.active, button[aria-pressed="true"], [role="tab"][aria-selected="true"]) {
  border-color: var(--studio-black) !important;
  color: var(--studio-paper) !important;
  background: var(--studio-black) !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: 5px !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(--studio-black) !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, 14px, 0) !important;
  transition: opacity .48s ease var(--holo-motion-delay, 0ms), transform .62s var(--studio-ease) 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: none !important;
  transform: translate3d(0, var(--holo-card-lift), 0) !important;
  transition: transform .32s var(--studio-ease), 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(--studio-line-strong) !important;
  box-shadow: var(--studio-shadow) !important;
}

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

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: var(--studio-black) !important;
  box-shadow: none !important;
}

html.holo-studio-ui .holo-page-curtain {
  background: var(--studio-black) !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) {
  border: 1px solid var(--studio-line) !important;
  border-radius: var(--studio-radius) !important;
  background: var(--studio-paper) !important;
  box-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: 4px !important;
  background-color: #e8ebef !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: 3px !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: none !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;
}

html.holo-studio-ui .today-item {
  display: grid !important;
  grid-template-columns: minmax(180px, .75fr) minmax(0, 1.25fr) !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, .8) !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: none !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-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: 5px !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: 0 !important;
  border-radius: 8px !important;
  color: var(--studio-paper) !important;
  background-color: var(--studio-black) !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) !important;
  background-size: 36px 36px !important;
}

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

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-paper) !important;
  font-size: 56px !important;
}

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

html.holo-studio-ui body[data-holo-route="home"] .hero .lead {
  grid-column: 1;
  margin: 14px 0 0 !important;
  color: rgba(255, 255, 255, .66) !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(255, 255, 255, .18);
}

.holo-hero-nav a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .76);
  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: #fff;
  background: rgba(255, 255, 255, .04);
}

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

.holo-hero-nav .holo-hero-arrow {
  color: rgba(255, 255, 255, .4);
  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: transparent !important;
  box-shadow: none !important;
}

html.holo-studio-ui .calendar-day {
  border: 1px solid var(--studio-line) !important;
  border-radius: 4px !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: 2px !important;
  background: #f3f5f7 !important;
  box-shadow: none !important;
}

html.holo-studio-ui .calendar-event:hover {
  background: #e9edf1 !important;
}

html.holo-studio-ui .group-label {
  padding: 18px 0 8px !important;
  border-bottom: 1px solid var(--studio-line) !important;
  color: var(--studio-black) !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, .88) !important;
  box-shadow: none !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;
  background: var(--studio-paper) !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: none !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: 5px !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(--studio-black) !important;
  color: var(--studio-paper) !important;
  background: var(--studio-black) !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 var(--studio-line);
  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: 0 !important;
  border-radius: 8px !important;
  color: var(--studio-paper) !important;
  background-color: var(--studio-black) !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) !important;
  background-size: 36px 36px !important;
  text-align: left !important;
}

html.holo-studio-ui body[data-holo-route="songs"] .hero::before {
  color: rgba(255, 255, 255, .58) !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-paper) !important;
  font-size: 52px !important;
}

html.holo-studio-ui body[data-holo-route="songs"] .hero .lead {
  margin: 16px 0 0 !important;
  color: rgba(255, 255, 255, .66) !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: none !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: 4px !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: #fff !important;
  background-color: var(--studio-black) !important;
  animation: none !important;
}

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

html.holo-studio-ui body.event-page .hero h1 {
  color: #fff !important;
  font-size: 54px !important;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .42) !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(13, 15, 18, .14) !important;
  border-radius: 25px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 14px 34px rgba(13, 15, 18, .12) !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: var(--studio-black) !important;
}

html.holo-studio-ui .holo-pilot-trigger:hover {
  transform: none !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-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: #fff !important;
  background: var(--studio-black) !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;
}

.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(255, 255, 255, .28);
  border-radius: 8px;
  color: var(--studio-ink);
  background: var(--studio-paper);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .34);
}

.holo-command-dialog::backdrop {
  background: rgba(8, 10, 13, .64);
  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: 1px;
  max-height: min(560px, calc(100vh - 120px));
  padding: 12px;
  overflow: auto;
  background: var(--studio-line);
}

.holo-command-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 10px 12px;
  color: #343a43;
  background: var(--studio-paper);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

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

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

.holo-command-item .holo-command-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.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: rgba(255, 255, 255, .58);
}

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

@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 .today-panel {
    grid-column: 1 / -1;
    order: 4;
  }

  html.holo-studio-ui .today-item {
    grid-template-columns: minmax(0, 1fr) !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 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-bottom: 26px !important;
  }

  html.holo-studio-ui body[data-holo-route="home"] .hero {
    margin-top: 12px !important;
    padding: 28px 22px 24px !important;
    border-radius: 6px !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: 32px !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;
  }

  html.holo-studio-ui body.event-page .hero {
    min-height: 280px !important;
    padding: 22px !important;
  }
}

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

@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 {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
