:root {
  --font-scale: 1;
  --panel-blur: 8px;
  --panel-tint: 0.36;
  --body-color: rgba(255, 255, 255, 0.78);
  --max-w: 90vw;
  --max-h: 60vh;
  --unit: min(calc(var(--max-h) / 60), calc(var(--max-w) / 90));
}

html {
  font-size: calc(var(--unit) * var(--font-scale));
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0f1218;
}

/* Fade UI in once webfonts are ready (see inline script in index.html). */
html.fonts-active #main-container,
html.fonts-active #mobile-info-btn {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.38s ease;
}

html.fonts-active #mobile-info-modal,
html.fonts-active #band-gallery-modal {
  opacity: 1;
  transition: opacity 0.38s ease;
}

html.fonts-active #band-gallery-modal[hidden],
html.fonts-active #mobile-info-modal[hidden] {
  pointer-events: none;
}

html.reduce-motion.fonts-active #main-container,
html.reduce-motion.fonts-active #mobile-info-btn,
html.reduce-motion.fonts-active #mobile-info-modal,
html.reduce-motion.fonts-active #band-gallery-modal {
  transition: none;
}

html.high-contrast {
  --body-color: rgba(255, 255, 255, 0.96);
}

html.reduce-motion *,
html.reduce-motion *::before,
html.reduce-motion *::after {
  transition-duration: 0.001ms !important;
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
}

canvas#bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  z-index: 0;
}

/* Prevent saving / dragging images and SVGs */
img,
svg,
canvas {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

img {
  pointer-events: none;
}

/* Main container — 90 × 60 design units, centered, locked aspect */
#main-container {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: calc(var(--unit) * 90);
  height: calc(var(--unit) * 60);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

#controls-container {
  width: 100%;
  height: 4rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#image-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.image-link-icon {
  padding-left: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.image-link-icon:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

.image-link-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

#page-select {
  position: relative;
  width: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025) 0%,
      rgba(255, 255, 255, 0.008) 100%
    ),
    rgba(0, 0, 0, var(--panel-tint));
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(var(--panel-blur)) saturate(110%);
  -webkit-backdrop-filter: blur(var(--panel-blur)) saturate(110%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 6px 18px rgba(0, 0, 0, 0.16);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

#page-select:hover {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 22px rgba(0, 0, 0, 0.2);
}

#page-select-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.6rem;
  height: 4.6rem;
  box-sizing: border-box;
  border-radius: 999px;
  background: linear-gradient(
    140deg,
    rgba(120, 190, 255, 0.22) 0%,
    rgba(160, 140, 255, 0.18) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.15) inset,
    0 0 18px rgba(140, 180, 255, 0.18),
    0 4px 14px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  z-index: 0;
  translate: 0 0;
  scale: 1;
  transition:
    translate 0.45s cubic-bezier(0.65, 0, 0.35, 1),
    scale 0.25s cubic-bezier(0.65, 0, 0.35, 1),
    box-shadow 0.3s ease;
}

@media (hover: hover) {
  #page-select:hover #page-select-indicator {
    scale: 1.05;
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.15) inset,
      0 0 22px rgba(140, 180, 255, 0.28),
      0 6px 18px rgba(0, 0, 0, 0.26);
  }
}

#page-select-indicator.is-dragging {
  scale: 1.1;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 0 28px rgba(140, 180, 255, 0.35),
    0 8px 22px rgba(0, 0, 0, 0.3);
}

/* Press fail-safe: snap indicator back to default when it was stuck enlarged */
#page-select-indicator.indicator-fail-safe-scale {
  scale: 1 !important;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.15) inset,
    0 0 18px rgba(140, 180, 255, 0.18),
    0 4px 14px rgba(0, 0, 0, 0.22) !important;
}

#page-select.page-select-cooldown-hover #page-select-indicator,
#page-select.page-select-cooldown-hover:hover #page-select-indicator {
  scale: 1;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.15) inset,
    0 0 18px rgba(140, 180, 255, 0.18),
    0 4px 14px rgba(0, 0, 0, 0.22);
}

.page-select-icon.is-hovered {
  color: rgba(255, 255, 255, 0.95);
}

.page-select-icon {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  user-select: none;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s ease;
}

.page-select-icon:hover {
  color: rgba(255, 255, 255, 0.85);
}

.page-select-icon.is-active {
  color: rgba(255, 255, 255, 0.98);
}

.page-select-icon .material-symbols-rounded {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2.5rem;
  line-height: 1;
  translate: -50% calc(-50% - 0.07em);
  rotate: 0deg;
  scale: 1;
  transform-origin: 50% calc(50% + 0.07em);
  transition:
    translate 0.4s cubic-bezier(0.65, 0, 0.35, 1),
    rotate 0.4s cubic-bezier(0.65, 0, 0.35, 1),
    scale 0.4s cubic-bezier(0.65, 0, 0.35, 1),
    skew 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}

/* 1–3 — home, star, cube: gentle pop */
.page-select-icon[data-page="home"].is-active .material-symbols-rounded,
.page-select-icon[data-page="projects"].is-active .material-symbols-rounded,
.page-select-icon[data-page="knowledge"].is-active .material-symbols-rounded {
  scale: 1.14;
}

/* 4 — settings: rotate around true center so it doesn’t drift sideways */
.page-select-icon[data-page="settings"] .material-symbols-rounded {
  rotate: 0deg;
  translate: -50% -50%;
  transform-origin: 50% 50%;
}

.page-select-icon[data-page="settings"].is-active .material-symbols-rounded {
  scale: 1.14;
  rotate: 60deg;
}

#information-container {
  position: relative;
  width: 100%;
  height: calc(100% - 5rem);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025) 0%,
      rgba(255, 255, 255, 0.008) 100%
    ),
    rgba(0, 0, 0, var(--panel-tint));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2rem;
  backdrop-filter: blur(var(--panel-blur)) saturate(110%);
  -webkit-backdrop-filter: blur(var(--panel-blur)) saturate(110%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 6px 18px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.info-page {
  display: none;
  position: absolute;
  inset: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  translate: 0 8px;
  transition:
    opacity 0.35s ease,
    translate 0.45s cubic-bezier(0.65, 0, 0.35, 1),
    display 0.35s ease allow-discrete;
}

.info-page.is-active {
  display: flex;
  opacity: 1;
  translate: 0 0;
}

@starting-style {
  .info-page.is-active {
    opacity: 0;
    translate: 0 8px;
  }
}

html.reduce-motion .info-page {
  transition: none;
}

.information-content-left {
  position: relative;
  width: calc(70% - 1.8rem);
  height: 100%;
}

.info-subpage {
  display: none;
  position: absolute;
  inset: 0;
  padding: 3rem 1.8rem 2rem 1.8rem;
  opacity: 0;
  translate: 0 6px;
  transition:
    opacity 0.3s ease,
    translate 0.4s cubic-bezier(0.65, 0, 0.35, 1),
    display 0.3s ease allow-discrete;
}

.info-subpage.is-active {
  display: block;
  opacity: 1;
  translate: 0 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 210, 230, 0.45) rgba(255, 255, 255, 0.06);
}

.info-subpage.is-active::-webkit-scrollbar {
  width: 6px;
}

.info-subpage.is-active::-webkit-scrollbar-track {
  margin: 0.35rem 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
}

.info-subpage.is-active::-webkit-scrollbar-thumb {
  background: rgba(200, 210, 230, 0.42);
  border-radius: 100px;
}

.info-subpage.is-active::-webkit-scrollbar-thumb:hover {
  background: rgba(220, 228, 245, 0.55);
}

.information-content-left {
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 210, 230, 0.45) rgba(255, 255, 255, 0.06);
}

.information-content-left::-webkit-scrollbar {
  width: 6px;
}

.information-content-left::-webkit-scrollbar-track {
  margin: 0.35rem 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
}

.information-content-left::-webkit-scrollbar-thumb {
  background: rgba(200, 210, 230, 0.42);
  border-radius: 100px;
}

.information-content-left::-webkit-scrollbar-thumb:hover {
  background: rgba(220, 228, 245, 0.55);
}

@starting-style {
  .info-subpage.is-active {
    opacity: 0;
    translate: 0 6px;
  }
}

html.reduce-motion .info-subpage {
  transition: none;
}

.information-content-left h1 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 6rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  padding: 0;
}

.information-content-left p {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--body-color);
  margin: 0;
  padding: 0;
}

/* About Me explore cue */
.about-explore {
  width: 100%;
  display: inline-flex;
  align-items: baseline;
  justify-content: end;
  gap: 0.35em;
  margin-top: 1.6rem;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.45);
}

/* Inline body link */
.inline-link {
  --link-accent: rgba(120, 190, 255, 0.95);
  --link-accent-soft: rgba(120, 190, 255, 0.35);
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 400;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 0.05em;
  transition:
    color 0.25s ease,
    background-size 0.25s cubic-bezier(0.65, 0, 0.35, 1),
    text-shadow 0.25s ease;
}

.inline-link:hover {
  color: var(--link-accent);
  background-size: 100% 1.5px;
  text-shadow: 0 0 12px var(--link-accent-soft);
}

.inline-link:focus-visible {
  outline: 2px solid rgba(140, 180, 255, 0.55);
  outline-offset: 3px;
  border-radius: 2px;
}

html.reduce-motion .inline-link {
  transition: none;
}

.about-explore-text {
  letter-spacing: 0.12em;
}

.about-explore-arrow {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  animation: about-explore-arrow-nudge 1.35s ease-in-out infinite alternate;
}

.about-explore-arrow img.about-explore-img {
  width: auto;
  height: 1.45em;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}

@keyframes about-explore-arrow-nudge {
  from {
    transform: translateX(-3px);
  }
  to {
    transform: translateX(5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-explore-arrow {
    animation: none;
  }
}

html.reduce-motion .about-explore-arrow {
  animation: none;
}

.information-content-right {
  position: relative;
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.5rem;
  padding: 2.25rem 1.98rem 2.25rem 2.43rem;
  box-sizing: border-box;
}

.information-content-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 92%;
  transform: translateY(-50%);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.08) 12%,
    rgba(255, 255, 255, 0.08) 88%,
    transparent
  );
  pointer-events: none;
}

.info-list-item {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  padding: 0.95rem 1.53rem 0.95rem 2.07rem;
  border-radius: 0.65rem;
  border: 1px solid transparent;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.info-list-item p {
  margin: 0;
  padding: 0;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: inherit;
  transition: color 0.22s ease, font-weight 0.22s ease;
}

.info-list-item:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  transform: translateX(1px);
}

.info-list-item:active {
  transform: translateX(0) scale(0.99);
}

.info-list-item.is-active {
  padding-left: 2.43rem;
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.15) inset,
    0 4px 20px rgba(0, 0, 0, 0.12);
}

.info-list-item.is-active::before {
  content: "";
  position: absolute;
  left: 0.63rem;
  top: 50%;
  width: 3px;
  height: 42%;
  min-height: 1.1em;
  border-radius: 99px;
  transform: translateY(-50%);
  background: linear-gradient(
    180deg,
    rgba(120, 190, 255, 0.95),
    rgba(160, 140, 255, 0.85)
  );
  box-shadow: 0 0 12px rgba(140, 180, 255, 0.35);
}

.info-list-item.is-active p {
  font-weight: 500;
  letter-spacing: 0.045em;
  color: rgba(255, 255, 255, 0.98);
}

.info-list-item:focus-visible {
  outline: 2px solid rgba(140, 180, 255, 0.55);
  outline-offset: 2px;
}

/* Settings controls */

.settings-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2rem;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.7rem;
  padding: 1.1rem 1.98rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.setting-row:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.09);
}

.setting-label {
  flex: 1 1 auto;
  min-width: 0;
}

.setting-title {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.25;
}

.setting-hint {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.25rem 0 0 0;
  line-height: 1.35;
}

.setting-control {
  display: flex;
  align-items: center;
  gap: 1.26rem;
  flex: 0 0 auto;
}

.setting-value {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  min-width: 3.5ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Toggle switch */
.toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.toggle-track {
  position: relative;
  width: 4.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.toggle-thumb {
  position: absolute;
  top: 50%;
  left: 0.25rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  translate: 0 -50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: translate 0.25s cubic-bezier(0.65, 0, 0.35, 1), background-color 0.25s ease;
}

.toggle input:checked + .toggle-track {
  background: linear-gradient(
    135deg,
    rgba(120, 190, 255, 0.55),
    rgba(160, 140, 255, 0.5)
  );
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 14px rgba(140, 180, 255, 0.25);
}

.toggle input:checked + .toggle-track .toggle-thumb {
  translate: 2.15rem -50%;
  background: #fff;
}

.toggle input:focus-visible + .toggle-track {
  outline: 2px solid rgba(140, 180, 255, 0.55);
  outline-offset: 2px;
}

/* Range slider */
.setting-control input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16.2rem;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  background-image: linear-gradient(
    90deg,
    rgba(120, 190, 255, 0.85),
    rgba(160, 140, 255, 0.75)
  );
  background-repeat: no-repeat;
  background-size: var(--fill, 60%) 100%;
  transition: background-size 0.05s linear;
}

.setting-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(140, 180, 255, 0.25);
  cursor: grab;
  transition: transform 0.15s ease;
}

.setting-control input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.1);
  cursor: grabbing;
}

.setting-control input[type="range"]::-moz-range-thumb {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(140, 180, 255, 0.25);
  cursor: grab;
}

.setting-control input[type="range"]:focus-visible {
  outline: 2px solid rgba(140, 180, 255, 0.55);
  outline-offset: 4px;
}

/* Reset button */
.settings-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.52rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.settings-reset:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 16px rgba(140, 180, 255, 0.18);
}

.settings-reset:active {
  transform: scale(0.98);
}

/* Subpage action button */

.subpage-action {
  display: inline-flex;
  align-items: center;
  gap: 0.99rem;
  margin-top: 1.4rem;
  padding: 1.1rem 2.52rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035) 0%,
      rgba(255, 255, 255, 0.012) 100%
    ),
    rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.subpage-action-label {
  line-height: 1;
}

.subpage-action-arrow {
  font-size: 1.9rem;
  line-height: 1;
  translate: 0 0;
  transition: translate 0.25s cubic-bezier(0.65, 0, 0.35, 1);
}

.subpage-action:hover {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ),
    rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.99);
  box-shadow: 0 0 18px rgba(140, 180, 255, 0.18);
}

.subpage-action:hover .subpage-action-arrow {
  translate: 3px 0;
}

.subpage-action:active {
  transform: scale(0.98);
}

.subpage-action:focus-visible {
  outline: 2px solid rgba(140, 180, 255, 0.55);
  outline-offset: 2px;
}

/* Band page — gallery opener (preview) + lightbox modal */
.band-gallery-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.band-gallery-trigger {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.25rem 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  border-radius: 0.75rem;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.band-gallery-trigger:hover {
  transform: translateY(-1px);
}

.band-gallery-trigger:active {
  transform: translateY(0);
}

.band-gallery-trigger:focus-visible {
  outline: 2px solid rgba(140, 180, 255, 0.55);
  outline-offset: 3px;
}

.band-gallery-shell {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.45rem;
  box-sizing: border-box;
  border-radius: 0.85rem;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ),
    rgba(10, 12, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 8px 24px rgba(0, 0, 0, 0.25);
}

.band-gallery-previews {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
}

.band-gallery-thumb {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 16 / 9;
  border-radius: 0.4rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.band-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.band-gallery-overlay {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  bottom: 0.45rem;
  width: 22%;
  min-width: 3.25rem;
  border-radius: 0 0.4rem 0.4rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.35rem;
  box-sizing: border-box;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.92) 100%
  );
  pointer-events: none;
}

.band-gallery-overlay-icon {
  font-size: 2.45rem !important;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
  transform: translateX(0.2rem);
}

.modal.band-gallery-lightbox {
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
}

.band-gallery-lightbox .modal-backdrop {
  z-index: 0;
}

.band-gallery-modal-close {
  position: fixed;
  z-index: 2;
  top: max(0.75rem, env(safe-area-inset-top));
  right: max(0.75rem, env(safe-area-inset-right));
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 14, 22, 0.75);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.band-gallery-modal-close:hover {
  background: rgba(24, 28, 40, 0.9);
  border-color: rgba(255, 255, 255, 0.22);
}

.band-gallery-modal-close:active {
  transform: scale(0.96);
}

.band-gallery-modal-close:focus-visible {
  outline: 2px solid rgba(140, 180, 255, 0.65);
  outline-offset: 2px;
}

.band-gallery-modal-close .material-symbols-rounded {
  font-size: 1.65rem;
  line-height: 1;
}

.band-gallery-modal-scroll {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding:
    max(3.25rem, env(safe-area-inset-top))
    max(0px, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom))
    max(0px, env(safe-area-inset-left));
  overflow: hidden;
}

.band-gallery-modal-frame {
  --gallery-pad-x: 0;
  --gallery-pad-y: 0.45rem;
  --gallery-cap: min(50vw, calc(100vw - 0.35rem));
  --gallery-h: min(50vh, calc(100dvh - 4.5rem));
  width: fit-content;
  max-width: var(--gallery-cap);
  height: var(--gallery-h);
  padding: var(--gallery-pad-y) var(--gallery-pad-x);
  box-sizing: border-box;
  border-radius: 0.85rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ),
    rgba(10, 12, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 16px 48px rgba(0, 0, 0, 0.45);
}

.band-gallery-modal-rail {
  flex: 1 1 auto;
  width: min(max-content, var(--gallery-cap));
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  padding: 0 .45rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.45rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 210, 230, 0.45) rgba(255, 255, 255, 0.06);
}

.band-gallery-modal-rail::-webkit-scrollbar {
  height: 6px;
}

.band-gallery-modal-rail::-webkit-scrollbar-track {
  margin: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
}

.band-gallery-modal-rail::-webkit-scrollbar-thumb {
  background: rgba(200, 210, 230, 0.42);
  border-radius: 100px;
}

.band-gallery-modal-rail::-webkit-scrollbar-thumb:hover {
  background: rgba(220, 228, 245, 0.55);
}

.band-gallery-modal-slide {
  flex: 0 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 0;
  overflow: visible;
}

.band-gallery-modal-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: var(--gallery-cap);
  object-fit: contain;
  object-position: center;
  border-radius: 0.4rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  filter: blur(14px);
  transform: scale(1.03);
  transition:
    filter 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: filter, transform;
}

.band-gallery-modal-img.band-gallery-modal-img--sharp {
  filter: none;
  transform: none;
  will-change: auto;
}

html.reduce-motion .band-gallery-modal-img {
  filter: none;
  transform: none;
  transition: none;
  will-change: auto;
}

html.reduce-motion .band-gallery-trigger {
  transition: none;
}

/* Mobile info button + modal — hidden on desktop, shown via media query */
#mobile-info-btn {
  display: none;
  position: fixed;
  z-index: 5;
  right: max(0.9rem, env(safe-area-inset-right));
  bottom: max(0.9rem, env(safe-area-inset-bottom));
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035) 0%,
      rgba(255, 255, 255, 0.01) 100%
    ),
    rgba(0, 0, 0, var(--panel-tint));
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(var(--panel-blur)) saturate(110%);
  -webkit-backdrop-filter: blur(var(--panel-blur)) saturate(110%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 6px 16px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

#mobile-info-btn .material-symbols-rounded {
  font-size: 1.55rem;
  line-height: 1;
}

#mobile-info-btn:hover,
#mobile-info-btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.98);
  outline: none;
}

#mobile-info-btn:active {
  transform: scale(0.96);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.55);
  backdrop-filter: blur(6px) saturate(110%);
  -webkit-backdrop-filter: blur(6px) saturate(110%);
  animation: modal-fade-in 0.2s ease both;
}

.modal-card {
  position: relative;
  max-width: 22rem;
  width: 100%;
  padding: 1.6rem 1.4rem 1.3rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035) 0%,
      rgba(255, 255, 255, 0.01) 100%
    ),
    rgba(12, 16, 24, 0.92);
  backdrop-filter: blur(var(--panel-blur)) saturate(120%);
  -webkit-backdrop-filter: blur(var(--panel-blur)) saturate(120%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 18px 50px rgba(0, 0, 0, 0.4);
  text-align: center;
  animation: modal-rise 0.25s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.modal-icon {
  display: inline-block;
  font-size: 2.1rem;
  line-height: 1;
  color: rgba(180, 210, 255, 0.85);
  margin-bottom: 0.65rem;
}

.modal-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.55rem 0;
  color: rgba(255, 255, 255, 0.95);
}

.modal-body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--body-color);
  margin: 0 0 1.15rem 0;
}

.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.012) 100%
    ),
    rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.95);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.modal-close:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ),
    rgba(255, 255, 255, 0.05);
}

.modal-close:active {
  transform: scale(0.97);
}

@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-rise {
  from { opacity: 0; transform: translateY(8px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

html.reduce-motion .modal-backdrop,
html.reduce-motion .modal-card {
  animation: none;
}

#tip-box {
  --tip-key-size: 2.25rem;
  --tip-key-icon: 1.4rem;
  --tip-rx: 0deg;
  --tip-ry: 0deg;
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
  z-index: 1000;
  max-width: min(14rem, calc(100vw - 1.9rem));
  box-sizing: border-box;
  cursor: default;
  color: rgba(255, 255, 255, 0.94);
  transform: translate3d(0, calc(100% + 1.5rem), 0);
  opacity: 0.9;
  pointer-events: none;
  perspective: 880px;
  perspective-origin: 50% 50%;
  will-change: transform;
  transition:
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

#tip-box.tip-box--visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

#tip-box .tip-box-surface {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  padding: 0.75rem 0.95rem 0.85rem;
  box-sizing: border-box;
  border-radius: 1rem;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.02) 42%,
      rgba(120, 160, 255, 0.04) 100%
    ),
    rgba(12, 14, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(calc(var(--panel-blur) + 4px)) saturate(118%);
  -webkit-backdrop-filter: blur(calc(var(--panel-blur) + 4px)) saturate(118%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 12px 36px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(100, 140, 220, 0.08);
  transform: rotateX(var(--tip-rx)) rotateY(var(--tip-ry)) translateZ(0);
  transform-style: preserve-3d;
  transition:
    transform 0.14s ease-out,
    box-shadow 0.35s ease;
}

@media (hover: hover) {
  #tip-box.tip-box--visible:hover .tip-box-surface {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.08) inset,
      0 0 0 1px rgba(0, 0, 0, 0.35) inset,
      0 18px 44px rgba(0, 0, 0, 0.5),
      0 0 36px rgba(100, 140, 220, 0.12);
  }
}

html.reduce-motion #tip-box {
  transition-duration: 0.01ms;
}

html.reduce-motion #tip-box .tip-box-surface {
  transform: none;
  transition: none;
}

#tip-box .tip-box-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

#tip-box .tip-box-up {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

#tip-box .tip-box-middle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  line-height: 1;
}

#tip-box .tip-box-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tip-key-size);
  height: var(--tip-key-size);
  box-sizing: border-box;
  font-size: var(--tip-key-icon) !important;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border-width: 1px 1px 3px 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.45rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.035) inset;
}

#tip-box .tip-box-hint {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  margin: 0;
  padding: 0 0.15rem;
}

@media (prefers-reduced-motion: reduce) {
  #tip-box {
    transition-duration: 0.01ms;
  }

  #tip-box .tip-box-surface {
    transform: none !important;
    transition: none;
  }
}

/* Mobile — matches syncMobileMode (720px) in main.js */
@media (max-width: 720px) {
  :root {
    --max-w: 100%;
    --max-h: 100dvh;
    --unit: 0px;
  }

  html {
    font-size: calc(clamp(10px, 3.35vw, 16px) * var(--font-scale));
  }

  html, body {
    overflow: hidden;
    height: 100%;
    -webkit-overflow-scrolling: touch;
  }

  #main-container {
    position: fixed;
    top: 0;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: none;
    height: 100dvh;
    margin: 0;
    padding:
      max(0.45rem, env(safe-area-inset-top))
      clamp(0.75rem, 4vw, 1.35rem)
      max(0.65rem, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    box-sizing: border-box;
  }

  /* Chrome first (matches desktop mental model), main card fills the rest */
  #controls-container {
    order: 0;
    flex: 0 0 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: auto;
    gap: 0.5rem;
    padding: 0.15rem 0;
    width: 100%;
    box-sizing: border-box;
  }

  #image-links {
    gap: 1rem;
    flex-shrink: 0;
  }

  .image-link-icon {
    width: 2.35rem;
    height: 2.35rem;
    padding-left: 0.25rem;
  }

  #page-select {
    flex-shrink: 1;
    min-width: 0;
    gap: 0.2rem;
    padding: 0.22rem;
    touch-action: none;
  }

  .page-select-icon {
    width: 3.35rem;
    height: 3.35rem;
  }

  #page-select-indicator {
    width: 3.95rem;
    height: 3.95rem;
  }

  .page-select-icon .material-symbols-rounded {
    font-size: 2.05rem;
  }

  #information-container {
    order: 1;
    flex: 1 1 0;
    min-height: 0;
    width: 100%;
    height: auto;
    border-radius: 1.35rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .info-page.is-active {
    position: relative;
    inset: auto;
    width: 100%;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
  }

  /* DOM order: article first, section switcher as a calm strip under the scroll */
  .information-content-right {
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 0.45rem;
    padding: 0.55rem clamp(0.65rem, 3vw, 1.1rem);
    flex-shrink: 0;
    scrollbar-width: thin;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 0.6rem,
      #000 calc(100% - 0.6rem),
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 0.6rem,
      #000 calc(100% - 0.6rem),
      transparent 100%
    );
  }

  .information-content-right::before {
    display: none;
  }

  .information-content-left {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
  }

  .info-subpage {
    padding: 1.35rem clamp(1rem, 3.5vw, 1.35rem) 1.85rem;
    max-width: 36rem;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .info-subpage.is-active {
    position: relative;
  }

  .information-content-left h1 {
    font-size: clamp(2.75rem, 11vw, 4.25rem);
    line-height: 1.08;
    margin-bottom: 0.15em;
  }

  .information-content-left p {
    font-size: 1.45rem;
    line-height: 1.62;
  }

  .about-explore {
    display: none;
  }

  #mobile-info-btn {
    display: inline-flex;
  }

  .info-list-item {
    flex: 0 0 auto;
    padding: 0.48rem 0.95rem;
    border-radius: 999px;
  }

  .info-list-item.is-active {
    padding-left: 0.95rem;
  }

  .info-list-item.is-active::before {
    display: none;
  }

  .info-list-item p {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .setting-row {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem 1rem;
    padding: 1rem 1.15rem;
  }

  .setting-title {
    font-size: 1.45rem;
  }

  .setting-hint {
    font-size: 1.15rem;
  }

  .setting-value {
    font-size: 1.2rem;
  }

  .setting-control {
    width: 100%;
    justify-content: space-between;
  }

  .setting-control input[type="range"] {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .toggle-track {
    width: 3.6rem;
    height: 2rem;
  }

  .toggle-thumb {
    width: 1.4rem;
    height: 1.4rem;
  }

  .toggle input:checked + .toggle-track .toggle-thumb {
    translate: 1.85rem -50%;
  }

  .setting-row-cursor-glow {
    display: none;
  }

  .settings-list {
    margin-top: 1.35rem;
  }

  .subpage-action {
    margin-top: 1.2rem;
    padding: 1rem 1.4rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    font-size: 1.3rem;
  }

  .subpage-action-arrow {
    font-size: 1.6rem;
  }

  .settings-reset {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 1.3rem;
  }

  .image-link-icon:hover,
  .info-list-item:hover {
    transform: none;
  }

  #tip-box {
    display: none;
  }
}