* { box-sizing: border-box; touch-action: none; }
html, body {
  margin: 0; padding: 0; width: 100%; height: 100%;
  background: #0a0d12; color: #e9f2ff; font-family: 'Avenir Next', 'Hiragino Sans', 'Noto Sans JP', system-ui, sans-serif;
  overflow: hidden; overscroll-behavior: none; -webkit-text-size-adjust: 100%;
  user-select: none; -webkit-user-select: none; -webkit-touch-callout: none;
}
#hud, #hud * {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
#c {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
#theme-flash {
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background: rgba(0,0,0,0);
  mix-blend-mode: normal;
  will-change: opacity, background;
  --flash-x: 50vw;
  --flash-y: 50vh;
}
#theme-flash-ring {
  position: absolute;
  left: var(--flash-x);
  top: var(--flash-y);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.92);
  transform: translate(-50%, -50%) scale(0.15);
  transform-origin: center;
  opacity: 0;
  will-change: transform, opacity;
}
.is-capture-clean .capture-hide {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
#camera-shutter {
  position: fixed;
  inset: 0;
  z-index: 24;
  opacity: 0;
  pointer-events: none;
  background: rgba(248, 251, 255, 0);
  transition: opacity 140ms ease, background 140ms ease;
}
#camera-shutter.is-active {
  opacity: 1;
  background: rgba(248, 251, 255, 0.22);
}
#sky-theme-wash {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background: none;
}
#hud {
  position: fixed; inset: 0; pointer-events: none; display: flex; justify-content: flex-end;
  padding: 12px; font-size: 12px; line-height: 1.3;
  z-index: 3;
}
#track-card {
  position: fixed;
  top: 76px;
  left: 18px;
  width: 132px;
  height: 132px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: auto;
  touch-action: manipulation;
  background: #0a0f16;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
#track-card.is-disabled {
  cursor: default;
}
#track-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(9, 14, 22, 0.92);
  box-shadow: 0 0 0 5px rgba(242, 248, 255, 0.18);
  pointer-events: none;
}
#track-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  filter: saturate(1.04) contrast(1.01);
  transform-origin: 50% 50%;
}
#track-card.is-spinning #track-art {
  animation: record-spin 18s linear infinite;
}
#track-controls {
  position: fixed;
  top: 220px;
  left: 18px;
  width: 136px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "toggle next"
    "lyrics lyrics";
  gap: 6px;
  pointer-events: auto;
  background: linear-gradient(180deg, rgba(8, 14, 22, 0.34), rgba(8, 14, 22, 0.18));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow:
    0 12px 26px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
}
.track-btn {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(18, 28, 42, 0.92), rgba(9, 15, 23, 0.78));
  -webkit-tap-highlight-color: transparent;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 5px 12px rgba(0,0,0,0.16);
}
#track-toggle { grid-area: toggle; }
#track-next { grid-area: next; }
#lyrics-toggle {
  grid-area: lyrics;
  height: 28px;
  background: linear-gradient(180deg, rgba(14, 23, 34, 0.92), rgba(8, 13, 20, 0.82));
}
#lyrics-toggle.is-active {
  border-color: rgba(192, 234, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 5px 12px rgba(0,0,0,0.16),
    0 0 0 1px rgba(114, 202, 255, 0.12);
}
.track-btn-label {
  display: block;
  color: #eff8ff;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  text-transform: uppercase;
}
.track-icon {
  position: relative;
  display: block;
  color: #f4fbff;
}
#track-toggle .toggle-icon {
  width: 14px;
  height: 15px;
  margin-left: 2px;
}
#track-toggle .toggle-icon::before,
#track-toggle .toggle-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}
#track-toggle .toggle-icon::before {
  inset: 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
#track-toggle .toggle-icon::after {
  display: none;
}
#track-toggle.is-playing .toggle-icon {
  width: 13px;
  height: 13px;
  margin-left: 0;
}
#track-toggle.is-playing .toggle-icon::before,
#track-toggle.is-playing .toggle-icon::after {
  display: block;
  top: 0;
  width: 4px;
  height: 12px;
  border-radius: 1px;
  clip-path: none;
}
#track-toggle.is-playing .toggle-icon::before {
  left: 0;
}
#track-toggle.is-playing .toggle-icon::after {
  right: 0;
}
.next-icon {
  width: 19px;
  height: 15px;
}
.next-icon::before,
.next-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 7px;
  height: 15px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.next-icon::before {
  left: 0;
}
.next-icon::after {
  left: 5px;
}
.next-bar {
  position: absolute;
  right: 0;
  top: 1px;
  width: 2px;
  height: 13px;
  border-radius: 999px;
  background: currentColor;
}
#track-visualizer {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  padding: 5px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(3, 8, 18, 0), rgba(3, 8, 18, 0.66));
  pointer-events: none;
}
.viz-bar {
  flex: 1;
  min-height: 4px;
  border-radius: 999px;
  background: rgba(240, 249, 255, 0.9);
  box-shadow: 0 0 10px rgba(173, 236, 255, 0.25);
  transform-origin: center bottom;
  opacity: 0.82;
}
#site-title {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  color: #f7fbff;
  font-family: 'Futura Medium', 'Futura', 'Avenir Next', 'Helvetica Neue', 'Noto Sans JP', sans-serif;
  font-size: 19px;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  font-weight: 500;
  pointer-events: none;
  opacity: 0.97;
  text-shadow: 0 6px 16px rgba(0,0,0,0.14);
}
#menu-toggle {
  position: fixed;
  top: 10px;
  right: 16px;
  z-index: 20;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  background: rgba(10, 16, 25, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 8px 18px rgba(0,0,0,0.12);
  backdrop-filter: blur(8px);
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.menu-icon {
  position: absolute;
  inset: 0;
  display: block;
}
.menu-icon span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.94);
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}
.menu-icon span:nth-child(1) { top: 14px; }
.menu-icon span:nth-child(2) { top: 20px; }
.menu-icon span:nth-child(3) { top: 26px; }
#menu-toggle.is-open .menu-icon span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
#menu-toggle.is-open .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle.is-open .menu-icon span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}
#camera-capture {
  position: fixed;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  z-index: 20;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  background: rgba(10, 16, 25, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 10px 24px rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
#camera-capture:disabled {
  opacity: 0.5;
}
.camera-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.camera-body {
  position: absolute;
  width: 24px;
  height: 16px;
  border: 1.8px solid rgba(247, 251, 255, 0.96);
  border-radius: 4px;
}
.camera-body::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -5px;
  width: 9px;
  height: 5px;
  border: 1.8px solid rgba(247, 251, 255, 0.96);
  border-bottom: none;
  border-radius: 2px 2px 0 0;
}
.camera-lens {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.8px solid rgba(247, 251, 255, 0.96);
  border-radius: 50%;
}
#site-menu {
  position: fixed;
  inset: 0;
  z-index: 18;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}
#site-menu.is-open {
  pointer-events: auto;
  opacity: 1;
}
#site-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.36);
  backdrop-filter: blur(5px);
}
#site-menu-panel {
  position: absolute;
  top: 58px;
  right: 14px;
  width: min(420px, calc(100vw - 28px));
  max-height: calc(100vh - 76px);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(13, 20, 31, 0.92), rgba(8, 13, 21, 0.88));
  box-shadow:
    0 22px 60px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  transform: translateY(-8px) scale(0.98);
  transition: transform 180ms ease;
  overflow: hidden;
}
#site-menu.is-open #site-menu-panel {
  transform: translateY(0) scale(1);
}
#site-menu-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#site-menu-kicker {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(231, 242, 255, 0.52);
}
#site-menu-title {
  font-family: 'Futura Medium', 'Futura', 'Avenir Next', 'Helvetica Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.06em;
  color: #f7fbff;
}
#site-menu-body {
  min-height: 0;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
}
#site-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-nav-btn {
  width: 100%;
  padding: 11px 12px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: rgba(238, 246, 255, 0.88);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-family: 'Avenir Next Condensed', 'Arial Narrow', sans-serif;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.menu-nav-btn.is-active {
  background: linear-gradient(180deg, rgba(233, 246, 255, 0.16), rgba(122, 179, 255, 0.08));
  border-color: rgba(198, 232, 255, 0.24);
  color: #ffffff;
}
#site-menu-pages {
  min-height: 0;
  overflow: auto;
  padding-right: 6px;
}
.menu-page {
  display: none;
  color: rgba(232, 241, 252, 0.88);
}
.menu-page.is-active {
  display: block;
}
.menu-page h2 {
  margin: 0 0 10px;
  font-family: 'Futura Medium', 'Futura', 'Avenir Next', 'Helvetica Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #fbfdff;
}
.menu-page p {
  margin: 0 0 12px;
  color: rgba(226, 236, 247, 0.76);
}
.menu-link-card {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #eef6ff;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.menu-link-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(210, 227, 244, 0.58);
}
.menu-link-value {
  font-family: 'Futura Medium', 'Futura', 'Avenir Next', 'Helvetica Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #fbfdff;
}
.menu-card-list {
  display: grid;
  gap: 10px;
}
.menu-card {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.menu-card-title {
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #fbfdff;
}
.menu-quote {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 2px solid rgba(173, 216, 255, 0.34);
  background: rgba(255,255,255,0.03);
  color: rgba(234, 243, 250, 0.82);
}
#message-form {
  display: grid;
  gap: 10px;
}
#message-text {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: #f2f7fb;
  resize: vertical;
  min-height: 150px;
  font: inherit;
}
#message-text::placeholder {
  color: rgba(225, 236, 246, 0.42);
}
#message-submit {
  width: fit-content;
  min-width: 112px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.16), rgba(105, 173, 255, 0.08));
  color: #fbfdff;
  letter-spacing: 0.18em;
}
#message-note {
  font-size: 11px;
  color: rgba(220, 231, 243, 0.56);
}
#book-overlay {
  position: fixed;
  inset: 0;
  z-index: 24;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
#book-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
#book-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 15, 0.34);
  backdrop-filter: blur(5px);
}
#book-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, calc(100vw - 36px));
  max-height: min(78vh, 760px);
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 28px;
  border: 1px solid rgba(74, 52, 30, 0.16);
  background:
    linear-gradient(180deg, rgba(252, 243, 226, 0.98), rgba(240, 225, 197, 0.96));
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -18px 40px rgba(122, 84, 36, 0.06);
  color: #322619;
  overflow: auto;
}
#book-panel::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(121, 85, 46, 0.08), rgba(121, 85, 46, 0.24), rgba(121, 85, 46, 0.08));
  pointer-events: none;
}
#book-panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
#book-close {
  min-width: 92px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(95, 61, 28, 0.14);
  background: rgba(255,255,255,0.42);
  color: #3a2a19;
  letter-spacing: 0.12em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.42);
  touch-action: manipulation;
}
#book-mode-switch {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.book-mode-btn {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(105, 72, 36, 0.12);
  background: rgba(255,255,255,0.36);
  color: rgba(61, 40, 19, 0.74);
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  touch-action: manipulation;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
.book-mode-btn.is-active {
  background: linear-gradient(180deg, rgba(88, 56, 28, 0.92), rgba(61, 38, 19, 0.94));
  color: #fff5e8;
  border-color: rgba(86, 57, 29, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 8px 18px rgba(90, 60, 26, 0.14);
}
#book-spread {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: block;
}
.book-page {
  min-height: 0;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(113, 79, 40, 0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08)),
    linear-gradient(180deg, rgba(255, 249, 239, 0.86), rgba(244, 232, 210, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.34),
    0 10px 24px rgba(91, 60, 24, 0.05);
  display: none;
  flex-direction: column;
  gap: 12px;
}
.book-view.is-active {
  display: flex;
}
.book-page-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(83, 54, 27, 0.54);
}
#book-message-page {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.book-message-card {
  padding: 16px 16px 14px;
  border-radius: 16px;
  border: 1px solid rgba(97, 64, 33, 0.08);
  background: rgba(255,255,255,0.28);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.book-message-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.book-message-author {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.book-message-name {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(58, 37, 16, 0.88);
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', serif;
}
.book-message-date {
  font-size: 10px;
  color: rgba(86, 62, 38, 0.54);
  padding-top: 2px;
  text-align: right;
}
.book-message-body {
  color: rgba(44, 30, 17, 0.9);
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}
.book-message-index {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(87, 61, 34, 0.48);
}
#book-next-page {
  align-self: flex-end;
  min-width: 134px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(95, 62, 31, 0.12);
  background: rgba(255,255,255,0.44);
  color: #3a2a18;
  letter-spacing: 0.12em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.42);
  touch-action: manipulation;
}
#book-next-page:disabled {
  opacity: 0.46;
}
#book-form {
  display: grid;
  gap: 10px;
}
#book-name,
#book-message-input {
  width: 100%;
  border: 1px solid rgba(95, 63, 31, 0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.4);
  color: #302114;
  font: inherit;
  touch-action: manipulation;
  user-select: text;
  -webkit-user-select: text;
  -webkit-touch-callout: default;
}
#book-name {
  padding: 12px 14px;
}
#book-message-input {
  min-height: 168px;
  padding: 14px;
  resize: vertical;
}
#book-name::placeholder,
#book-message-input::placeholder {
  color: rgba(76, 52, 30, 0.46);
}
#book-submit {
  width: fit-content;
  min-width: 120px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(85, 58, 32, 0.12);
  background: linear-gradient(180deg, rgba(87, 54, 27, 0.9), rgba(60, 37, 18, 0.92));
  color: #fff8ee;
  letter-spacing: 0.16em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 6px 16px rgba(67, 42, 20, 0.14);
  touch-action: manipulation;
}
#book-status {
  min-height: 1.4em;
  font-size: 11px;
  color: rgba(83, 57, 29, 0.58);
}
#black-box-overlay {
  position: fixed;
  inset: 0;
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
#black-box-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
#black-box-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.48);
  backdrop-filter: blur(6px);
}
#black-box-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(460px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 28px));
  overflow-y: auto;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(15, 17, 23, 0.96), rgba(8, 9, 13, 0.98));
  box-shadow:
    0 28px 72px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.08);
  color: #f5f7fb;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#black-box-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
}
#black-box-title {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', serif;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.14;
  flex: 1 1 auto;
  max-width: 100%;
}
.black-box-kicker {
  font-size: 13px;
  letter-spacing: 0.24em;
  opacity: 0.7;
}
.black-box-main-title {
  font-size: 24px;
  letter-spacing: 0.06em;
}
#black-box-close {
  position: relative;
  min-width: auto;
  padding: 10px 14px;
  flex-shrink: 0;
  z-index: 2;
  background: rgba(8, 10, 14, 0.92);
  backdrop-filter: blur(6px);
}
#black-box-close,
#black-box-open,
#black-box-ignore,
#black-box-download {
  min-width: 112px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: #f5f7fb;
  letter-spacing: 0.12em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  touch-action: manipulation;
}
#black-box-actions,
#black-box-reveal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#black-box-open {
  align-self: flex-start;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
}
.black-box-view#black-box-view-intro {
  align-items: flex-start;
}
.black-box-view {
  display: none;
  flex-direction: column;
  gap: 14px;
}
.black-box-view.is-active {
  display: flex;
}
#black-box-cat-image {
  width: 100%;
  max-height: min(56vh, 520px);
  object-fit: cover;
  border-radius: 18px;
  display: block;
  background: rgba(255,255,255,0.04);
  margin-top: 2px;
}
#black-box-caption {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 255, 0.84);
}
#black-box-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#capture-overlay {
  position: fixed;
  inset: 0;
  z-index: 26;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
#capture-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
#capture-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.52);
  backdrop-filter: blur(6px);
}
#capture-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100vw - 28px));
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.96), rgba(8, 12, 18, 0.94));
  box-shadow:
    0 24px 64px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#capture-head {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 88px;
}
#capture-kicker {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: rgba(233, 243, 255, 0.52);
}
#capture-title {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  color: #f4f9ff;
}
#capture-close,
#capture-save,
#capture-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #f5f7fb;
  font: 600 14px/1 'Futura Medium', 'Futura', 'Century Gothic', sans-serif;
  letter-spacing: 0.12em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  touch-action: manipulation;
  text-decoration: none;
  white-space: nowrap;
  -webkit-text-size-adjust: 100%;
}
#capture-close {
  position: absolute;
  right: 0;
  top: 0;
  min-width: auto;
}
#capture-image-wrap {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
#capture-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(68vh, 74vw);
  object-fit: contain;
}
#capture-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#capture-share.is-hidden {
  display: none;
}
#ending-whiteout {
  position: fixed;
  inset: 0;
  z-index: 27;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0);
  transition: opacity 260ms ease, background 260ms ease;
}
#ending-whiteout.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.96);
}
#ending-true-message {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity 260ms ease, transform 260ms ease;
  color: rgba(10, 10, 10, 0.82);
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', serif;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.18em;
}
#ending-whiteout.is-true-message #ending-true-message {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
#ending-overlay {
  position: fixed;
  inset: 0;
  z-index: 28;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 280ms ease, background 320ms ease;
  background: rgba(0, 0, 0, 0);
}
#ending-overlay.is-transitioning,
#ending-overlay.is-open {
  opacity: 1;
}
#ending-overlay.is-open {
  pointer-events: auto;
  background: #000;
}
#ending-panel {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #f4f8ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 0;
  pointer-events: none;
}
#ending-rise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 10%,
      rgba(210, 210, 210, 0.16) 26%,
      rgba(84, 84, 84, 0.48) 52%,
      rgba(12, 12, 12, 0.88) 80%,
      #000 100%
    );
}
#ending-overlay.is-transitioning #ending-rise {
  opacity: 1;
  animation: ending-rise 2.6s cubic-bezier(0.23, 0.9, 0.22, 1) forwards;
}
#ending-roll-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
#ending-overlay.is-open #ending-roll-viewport {
  background: #000;
}
#ending-roll-track {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  transform: translate3d(-50%, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14vh;
  padding: 0 0 34vh;
}
#ending-overlay.is-open #ending-roll-track {
  animation: ending-roll 48s linear forwards;
}
.ending-roll-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: min(760px, calc(100vw - 44px));
}
.ending-roll-credit-last {
  padding-bottom: 18vh;
}
.ending-roll-role {
  font: 600 13px/1 'Futura Medium', 'Futura', 'Century Gothic', sans-serif;
  letter-spacing: 0.24em;
  color: rgba(202, 214, 232, 0.54);
}
.ending-roll-name,
.ending-roll-list {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', serif;
  font-size: clamp(20px, 3.5vw, 32px);
  line-height: 1.75;
  letter-spacing: 0.12em;
  color: rgba(247, 249, 255, 0.95);
}
.ending-roll-list {
  white-space: pre-line;
  font-size: clamp(16px, 2.4vw, 24px);
  color: rgba(238, 243, 255, 0.84);
}
#ending-restart-trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(247, 249, 255, 0.98);
  font: 500 clamp(24px, 4.4vw, 38px)/1.04 'Didot', 'Bodoni 72', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  transform: translate3d(-50%, -50%, 0);
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: opacity 420ms ease;
}
#ending-restart-trigger:hover,
#ending-restart-trigger:focus-visible {
  color: #ffffff;
  outline: none;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.34);
}
#ending-restart-trigger.is-visible {
  opacity: 1;
  pointer-events: auto;
}
#cat-route-bubble {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 29;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, calc(-50% + 16px), 0);
  transition: opacity 220ms ease, transform 220ms ease;
}
#cat-route-bubble.is-active {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0);
}
#cat-route-bubble-text {
  min-width: min(76vw, 300px);
  max-width: min(88vw, 460px);
  padding: 22px 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(19, 26, 38, 0.96), rgba(8, 11, 18, 0.94));
  color: rgba(246, 248, 252, 0.94);
  text-align: center;
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', serif;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.8;
  letter-spacing: 0.12em;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.34);
}
#ending-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  min-width: 112px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: #f2f7ff;
  font: 600 14px/1 'Futura Medium', 'Futura', 'Century Gothic', sans-serif;
  letter-spacing: 0.12em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  opacity: 0;
  transform: translate3d(0, -12px, 0);
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: auto;
}
#ending-overlay.is-open #ending-close {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@keyframes ending-rise {
  from {
    transform: translate3d(0, 100%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes ending-roll {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(-50%, calc(-100% - 120vh), 0);
  }
}
#right-pad {
  position: fixed;
  top: 78px;
  right: 18px;
  width: auto;
  max-width: none;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}
#right-pad > div {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 8px 10px; pointer-events: auto; user-select: none;
  backdrop-filter: blur(4px);
}
#speed-lock-panel {
  width: 96px;
  padding: 10px 8px 12px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(9, 16, 28, 0.14) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 16px !important;
  box-shadow: none;
  backdrop-filter: blur(2px) !important;
}
#speed-lock-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#speed-lock-label {
  font-size: 9px;
  font-family: 'Avenir Next Condensed', 'Arial Narrow', sans-serif;
  letter-spacing: 0.22em;
  color: rgba(236, 247, 255, 0.62);
}
#speed-lock-value {
  width: 100%;
  text-align: center;
  font-size: 24px;
  line-height: 1;
  font-family: 'Avenir Next Condensed', 'Arial Narrow', sans-serif;
  letter-spacing: 0.06em;
  color: #f6fbff;
}
#speed-lock-slider {
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  place-items: center;
  gap: 8px;
  outline: none;
  cursor: pointer;
  touch-action: none;
}
.speed-lock-limit {
  font-size: 10px;
  font-family: 'Avenir Next Condensed', 'Arial Narrow', sans-serif;
  letter-spacing: 0.12em;
  color: rgba(226, 241, 255, 0.56);
}
#speed-lock-rail {
  position: relative;
  width: 28px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#speed-lock-rail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(160, 238, 255, 0.96), rgba(123, 190, 255, 0.24));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
#speed-lock-fill {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 6px;
  height: 0;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(230, 250, 255, 1), rgba(117, 212, 255, 0.92));
  box-shadow: 0 0 10px rgba(127, 220, 255, 0.24);
}
#speed-lock-thumb {
  position: absolute;
  left: 50%;
  top: 152px;
  width: 24px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #dff4ff);
  border: 1px solid rgba(58, 94, 142, 0.3);
  box-shadow:
    0 6px 12px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.82);
}
#stick-wrapper {
  position: fixed; right: 12px; bottom: 14px; z-index: 6;
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px; pointer-events: none;
}
#stick-area {
  width: 140px; height: 140px; border: 1px solid rgba(255,255,255,0.18); border-radius: 18px;
  background: rgba(255,255,255,0.05); position: relative; touch-action: none; pointer-events: auto;
}
#stick-handle {
  width: 50px; height: 50px; border-radius: 50%; background: rgba(123, 228, 255, 0.92);
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
#lyrics-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 8px));
  width: min(420px, calc(100vw - 180px));
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}
#lyrics-panel.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}
#lyrics-current,
#lyrics-panel {
  text-align: center;
  text-wrap: balance;
}
#lyrics-current {
  min-height: 1.4em;
  color: rgba(249, 252, 255, 0.98);
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', 'Times New Roman', serif;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.34),
    0 10px 24px rgba(0,0,0,0.18);
}
#lyrics-panel.is-idle #lyrics-current {
  opacity: 0.26;
}
#lyrics-full-panel {
  position: fixed;
  left: 18px;
  top: 304px;
  width: 286px;
  max-height: min(74vh, 640px);
  opacity: 0;
  padding: 0;
  overflow: hidden;
  overflow-x: hidden;
  pointer-events: none;
  transition: opacity 180ms ease;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
#lyrics-full-panel.is-visible {
  opacity: 1;
  pointer-events: auto;
}
#lyrics-full-panel::-webkit-scrollbar {
  display: none;
}
#lyrics-full-text {
  color: rgba(244, 248, 255, 0.72);
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', 'Times New Roman', serif;
  font-size: 13.5px;
  line-height: 1.5;
  letter-spacing: 0.016em;
  white-space: pre-line;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0,0,0,0.26);
}
#info {
  position: absolute; left: 12px; bottom: 10px;
  padding: 6px 10px; background: rgba(0,0,0,0.45); border-radius: 8px; font-size: 11px;
  pointer-events: none;
}
#site-footer {
  position: fixed;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: min(520px, calc(100vw - 180px));
  color: rgba(240, 247, 255, 0.54);
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
  opacity: 0.72;
}
#site-footer .footer-note {
  margin-top: 2px;
  color: rgba(240, 247, 255, 0.4);
}
#site-footer .footer-short {
  display: none;
}
@keyframes record-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 600px) {
  #hud { padding: 8px; }
  #track-card {
    top: 62px;
    left: 10px;
    width: 102px;
    height: 102px;
    border-radius: 50%;
  }
  #track-card::after {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 4px rgba(242, 248, 255, 0.18);
  }
  #track-visualizer {
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 20px;
    gap: 3px;
    padding: 4px 6px;
  }
  #site-title {
    top: 10px;
    font-size: 15px;
    letter-spacing: 0.18em;
    text-indent: 0.18em;
  }
  #menu-toggle {
    top: 8px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
  #camera-capture {
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    width: 62px;
    height: 62px;
  }
  .menu-icon span {
    left: 11px;
    right: 11px;
  }
  .menu-icon span:nth-child(1) { top: 12px; }
  .menu-icon span:nth-child(2) { top: 18px; }
  .menu-icon span:nth-child(3) { top: 24px; }
  #menu-toggle.is-open .menu-icon span:nth-child(1),
  #menu-toggle.is-open .menu-icon span:nth-child(3) {
    top: 18px;
  }
  #site-menu-panel {
    top: 54px;
    right: 8px;
    width: calc(100vw - 16px);
    max-height: calc(100vh - 64px);
    padding: 16px;
    border-radius: 20px;
  }
  #site-menu-title {
    font-size: 24px;
  }
  #site-menu-body {
    grid-template-columns: 1fr;
  }
  #site-menu-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .menu-nav-btn {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  #book-panel {
    width: calc(100vw - 18px);
    max-height: calc(100vh - 28px);
    padding: 14px 14px 16px;
    border-radius: 22px;
  }
  #book-panel::before {
    display: none;
  }
  #black-box-panel {
    width: calc(100vw - 18px);
    padding: 16px;
    border-radius: 22px;
  }
  #black-box-head {
    min-height: 42px;
  }
  #black-box-title {
    gap: 1px;
  }
  .black-box-kicker {
    font-size: 11px;
    letter-spacing: 0.2em;
  }
  .black-box-main-title {
    font-size: 20px;
  }
  #black-box-close,
  #black-box-open,
  #black-box-ignore,
  #black-box-download {
    min-width: 96px;
    padding: 10px 14px;
  }
  #black-box-cat-image {
    max-height: min(48vh, 420px);
  }
  #capture-panel {
    width: calc(100vw - 18px);
    padding: 16px;
    border-radius: 22px;
  }
  #capture-title {
    font-size: 22px;
  }
  #capture-save,
  #capture-share {
    flex: 1 1 0;
    justify-content: center;
  }
  #ending-panel {
    inset: 0;
  }
  #ending-roll-track {
    width: 100%;
    gap: 12vh;
    padding: 0 0 34vh;
  }
  .ending-roll-role {
    font-size: 11px;
    letter-spacing: 0.18em;
  }
  .ending-roll-credit {
    width: calc(100vw - 28px);
  }
  .ending-roll-name,
  .ending-roll-list {
    font-size: 15px;
    line-height: 1.7;
  }
  #ending-close {
    right: 12px;
    top: 12px;
  }
  #book-mode-switch {
    gap: 6px;
  }
  .book-page {
    padding: 14px 14px 12px;
    border-radius: 16px;
  }
  .book-mode-btn {
    min-height: 36px;
    font-size: 13px;
  }
  #book-message-input {
    min-height: 112px;
  }
  #track-controls {
    top: 174px;
    left: 10px;
    width: 108px;
    padding: 5px;
    gap: 4px;
    border-radius: 18px;
  }
  .track-btn {
    height: 30px;
  }
  #lyrics-toggle {
    height: 24px;
  }
  .track-btn-label {
    font-size: 8px;
    letter-spacing: 0.12em;
    text-indent: 0.12em;
  }
  #track-toggle .toggle-icon {
    width: 11px;
    height: 12px;
  }
  #track-toggle.is-playing .toggle-icon {
    width: 11px;
    height: 11px;
  }
  .next-icon {
    width: 16px;
    height: 12px;
  }
  .next-icon::before,
  .next-icon::after {
    width: 6px;
    height: 12px;
  }
  .next-icon::after {
    left: 4px;
  }
  .next-bar {
    height: 10px;
  }
  #right-pad {
    top: 64px;
    right: 10px;
  }
  #speed-lock-panel {
    width: 88px;
    padding: 10px 7px 10px !important;
  }
  #speed-lock-value {
    font-size: 21px;
  }
  #speed-lock-rail {
    height: 144px;
  }
  #lyrics-panel {
    width: min(250px, calc(100vw - 120px));
  }
  #lyrics-current {
    font-size: 15px;
    line-height: 1.4;
  }
  #lyrics-full-panel {
    left: 10px;
    width: 214px;
    max-height: min(62vh, 520px);
  }
  #lyrics-full-text {
    font-size: 11.2px;
    line-height: 1.42;
  }
  #info {
    left: 8px;
    bottom: 8px;
  }
  #site-footer {
    left: 50%;
    right: auto;
    bottom: 6px;
    transform: translateX(-50%);
    width: auto;
    font-size: 8px;
    line-height: 1.3;
    text-align: center;
    color: rgba(240, 247, 255, 0.44);
    text-shadow: none;
    opacity: 0.64;
  }
  #site-footer .footer-full,
  #site-footer .footer-note {
    display: none;
  }
  #site-footer .footer-short {
    display: block;
  }
}
