*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --ink: #161a1c;
  --muted: #5f6669;
  --blue: #176789;
  --paper: #f8f8f5;
  --line: #c8cbca;
  --sans: Calibri, Arial, Helvetica, sans-serif;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background: #e4e3df;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

.gallery-video-source {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: #111;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.gallery-app,
#gallery-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

#gallery-canvas {
  display: block;
  touch-action: none;
}

.gallery-app.drag-look #gallery-canvas {
  cursor: grab;
}

.gallery-app.dragging-view #gallery-canvas {
  cursor: grabbing;
}

.gallery-app.catalog-open #gallery-canvas {
  visibility: hidden;
}

.gallery-header {
  position: fixed;
  z-index: 8;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  pointer-events: none;
}

.site-mark,
.header-actions {
  pointer-events: auto;
}

.site-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.site-mark span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-mark strong {
  padding: 8px 11px;
  border: 1px solid rgba(22, 26, 28, 0.18);
  background: rgba(248, 248, 245, 0.88);
  box-shadow: 0 5px 18px rgba(28, 32, 34, 0.08);
  font-size: 13px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.header-actions {
  display: flex;
  gap: 7px;
}

.header-actions button,
.close-button {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(22, 26, 28, 0.22);
  background: rgba(248, 248, 245, 0.9);
  box-shadow: 0 5px 18px rgba(28, 32, 34, 0.07);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.header-actions button:hover,
.header-actions button:focus-visible,
.close-button:hover,
.close-button:focus-visible {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.loading-screen,
.welcome-screen {
  position: fixed;
  z-index: 12;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(229, 228, 224, 0.82);
  backdrop-filter: blur(8px);
}

.loading-card,
.welcome-card {
  width: min(100%, 620px);
  padding: 32px 34px;
  border: 1px solid #c5c7c5;
  border-top: 4px solid var(--blue);
  background: rgba(250, 250, 247, 0.97);
  box-shadow: 0 24px 70px rgba(34, 37, 39, 0.16);
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.loading-card h1,
.welcome-card h1,
.poster-index h2,
.poster-dialog h2,
.help-dialog h2 {
  margin: 0;
  font-size: clamp(29px, 4.2vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.03;
}

.loading-card > p:last-child,
.welcome-copy {
  color: var(--muted);
}

.loading-track {
  height: 3px;
  margin: 25px 0 12px;
  overflow: hidden;
  background: #dcddda;
}

.loading-track i {
  position: relative;
  display: block;
  width: 0;
  height: 100%;
  overflow: hidden;
  background: var(--blue);
  transition: width 100ms linear;
}

.loading-track i::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: loading-track-sheen 1.1s linear infinite;
}

@keyframes loading-track-sheen {
  to { transform: translateX(100%); }
}

.welcome-copy {
  max-width: 510px;
  margin: 15px 0 0;
  font-size: 17px;
  line-height: 1.52;
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.primary-button {
  width: min(100%, 360px);
  min-height: 58px;
  padding: 14px 30px;
  color: #fff;
  background: var(--ink);
  font-size: 20px;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--blue);
  border-color: var(--blue);
}

.secondary-button {
  color: var(--ink);
  background: transparent;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
}

.welcome-actions .resume-button,
.welcome-actions .destination-button {
  min-height: 58px;
  padding-inline: 24px;
  font-size: 16px;
}

.welcome-screen.house-paused .welcome-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.welcome-screen.house-paused .welcome-actions .primary-button,
.welcome-screen.house-paused .welcome-actions .secondary-button {
  width: 100%;
  min-height: 58px;
  padding: 12px 14px;
  font-size: 18px;
}

.control-summary {
  margin: 22px 0 0;
  color: #6a7072;
  font-size: 13px;
}

.movement-guide {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid #d5d8d6;
  background: #f7f8f6;
}

.key-cluster {
  display: grid;
  gap: 4px;
  flex: 0 0 auto;
}

.key-row {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.key-cluster kbd {
  display: inline-grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 2px solid #6a7072;
  border-bottom-width: 3px;
  border-radius: 6px;
  color: #1b2022;
  background: #fff;
  font-size: 15px;
}

.movement-copy {
  display: grid;
  gap: 3px;
}

.movement-copy strong {
  color: #1b2022;
  font-size: 16px;
}

.movement-copy span {
  color: #6a7072;
  font-size: 13px;
}

.control-summary span {
  padding: 0 5px;
  color: #adb0af;
}

kbd {
  padding: 1px 5px;
  border: 1px solid #bfc2c2;
  border-bottom-width: 2px;
  background: #fff;
  font-family: var(--sans);
  font-size: 0.86em;
  font-weight: 700;
}

.reticle {
  position: fixed;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: difference;
}

.reticle i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.reticle.active {
  border-color: #fff;
  background: var(--blue);
  transform: translate(-50%, -50%) scale(1.18);
  mix-blend-mode: normal;
}

.reticle.active i {
  background: #fff;
}

.brain-fixation-label {
  position: fixed;
  z-index: 6;
  top: calc(50% - 18px);
  left: 50%;
  max-width: min(78vw, 560px);
  color: #fff;
  font-size: clamp(15px, 1.8vw, 21px);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-align: center;
  -webkit-text-stroke: 3px #000;
  paint-order: stroke fill;
  text-shadow:
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
    0 2px 4px rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -100%);
  pointer-events: none;
}

.focus-card {
  position: fixed;
  z-index: 6;
  bottom: 58px;
  left: 50%;
  display: grid;
  width: min(calc(100% - 34px), 520px);
  padding: 13px 16px;
  border-left: 4px solid var(--blue);
  background: rgba(20, 24, 26, 0.9);
  color: #fff;
  box-shadow: 0 10px 30px rgba(15, 18, 20, 0.24);
  transform: translateX(-50%);
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.focus-card small {
  color: #a9cad7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.focus-card strong {
  margin-top: 2px;
  font-size: 15px;
}

.focus-card span {
  margin-top: 5px;
  color: #c9cecf;
  font-size: 12px;
}

.focus-card.video-focus {
  width: min(calc(100% - 34px), 570px);
  padding: 15px 18px 16px;
  border: 1px solid rgba(106, 207, 243, 0.72);
  border-left: 6px solid #46b9e8;
  background: rgba(12, 20, 24, 0.94);
  box-shadow: 0 12px 36px rgba(7, 13, 16, 0.35), 0 0 0 1px rgba(70, 185, 232, 0.1);
}

.focus-card.video-focus small {
  color: #7dd5f3;
  font-size: 11px;
}

.focus-card.video-focus strong {
  margin-top: 3px;
  font-size: 17px;
}

.focus-card.video-focus span {
  display: grid;
  gap: 7px;
  margin-top: 9px;
}

.video-primary {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
}

.video-primary kbd {
  min-width: 29px;
  padding: 3px 8px;
  border-color: rgba(125, 213, 243, 0.7);
  background: #176789;
  text-align: center;
}

.video-primary i {
  color: #aeb9bd;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
}

.video-secondary {
  color: #bdc8cb;
  font-size: 13px;
  font-style: normal;
}

.video-time {
  color: #edf4f6;
  font-variant-numeric: tabular-nums;
  font-style: normal;
}

.focus-card.video-focus.is-playing {
  border-left-color: #62c69d;
}

.focus-card.video-focus.is-playing small {
  color: #8bd9b9;
}

.focus-card kbd,
.walk-hint kbd {
  color: inherit;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.portal-prompt {
  position: fixed;
  z-index: 6;
  display: grid;
  width: min(calc(100% - 34px), 430px);
  padding: 13px 16px 14px;
  color: #f8fbf8;
  background: rgba(19, 25, 24, 0.84);
  border: 1px solid rgba(207, 226, 217, 0.42);
  box-shadow: 0 12px 38px rgba(10, 16, 14, 0.28);
  pointer-events: none;
  backdrop-filter: blur(9px);
}

.portal-prompt {
  bottom: 58px;
  left: 50%;
  border-left: 5px solid #b8d8c9;
  transform: translateX(-50%);
}

.portal-prompt small {
  color: #b8d8c9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.portal-prompt strong {
  margin-top: 3px;
  font-size: 16px;
}

.portal-prompt span {
  margin-top: 5px;
  color: #d1d8d4;
  font-size: 12px;
  line-height: 1.4;
}

.sound-reminder {
  position: fixed;
  z-index: 8;
  top: 78px;
  right: 22px;
  left: auto;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 13px;
  width: min(calc(100% - 44px), 370px);
  padding: 14px 16px 15px;
  color: #f8fbf8;
  background:
    radial-gradient(circle at 9% 50%, rgba(99, 183, 214, 0.16), transparent 35%),
    rgba(15, 22, 22, 0.94);
  border: 1px solid rgba(207, 226, 217, 0.56);
  border-left: 4px solid #63b7d6;
  border-radius: 6px;
  box-shadow:
    0 14px 42px rgba(4, 9, 9, 0.42),
    0 0 0 1px rgba(99, 183, 214, 0.08);
  pointer-events: none;
  backdrop-filter: blur(9px);
  animation: sound-reminder-arrive 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sound-reminder-icon {
  grid-row: 1 / 4;
  align-self: center;
  display: grid;
  width: 44px;
  height: 44px;
  color: #9bdcf2;
  background: rgba(99, 183, 214, 0.14);
  border: 1px solid rgba(155, 220, 242, 0.48);
  border-radius: 50%;
  place-items: center;
}

.sound-reminder-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sound-reminder small {
  color: #8fd0e7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sound-reminder strong {
  margin-top: 2px;
  font-size: 18px;
  line-height: 1.15;
}

.sound-reminder > span:last-child {
  margin-top: 4px;
  color: #d1d8d4;
  font-size: 12.5px;
  line-height: 1.4;
}

@keyframes sound-reminder-arrive {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.portal-transition {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  color: #f8f7ef;
  background:
    radial-gradient(circle at 50% 48%, rgba(202, 223, 211, 0.34), transparent 24%),
    radial-gradient(circle at 50% 50%, #2b3934 0%, #151b19 52%, #090b0a 100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 0s linear 280ms;
  pointer-events: none;
}

.portal-transition::before {
  content: '';
  position: absolute;
  width: min(62vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(220, 235, 226, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 80px rgba(182, 217, 199, 0.12),
    inset 0 0 90px rgba(182, 217, 199, 0.08);
  animation: portal-breathe 1.8s ease-in-out infinite;
}

.portal-transition span,
.portal-transition strong {
  position: relative;
  z-index: 1;
}

.portal-transition span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.portal-transition strong {
  margin-top: 9px;
  font-family: 'Inter', var(--sans);
  font-size: clamp(38px, 8vw, 84px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.portal-transition.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 280ms ease;
}

.portal-transition.is-active.is-revealing {
  opacity: 0;
}

@keyframes portal-breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.56; }
  50% { transform: scale(1.04); opacity: 1; }
}

.walk-hint {
  position: fixed;
  z-index: 4;
  bottom: 14px;
  left: 50%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 8px 12px;
  color: #eef2f3;
  background: rgba(15, 18, 19, 0.88);
  border: 1px solid rgba(222, 231, 234, 0.26);
  border-radius: 5px;
  box-shadow: 0 8px 28px rgba(4, 7, 8, 0.28);
  font-size: 12px;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.walk-hint-item,
.walk-hint-keys {
  display: inline-flex;
  align-items: center;
}

.walk-hint-item {
  gap: 6px;
}

.walk-hint-keys {
  gap: 4px;
}

.walk-hint kbd {
  display: inline-grid;
  min-width: 23px;
  height: 22px;
  padding: 0 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom-color: rgba(255, 255, 255, 0.62);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  place-items: center;
}

.walk-hint-keys i {
  color: #9da8ac;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.walk-hint-action {
  color: #d5dcde;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.walk-hint-note .walk-hint-action {
  color: #eef2f3;
}

.walk-hint-separator {
  width: 1px;
  height: 18px;
  margin: 0 10px;
  background: rgba(222, 231, 234, 0.28);
}

.poster-index {
  position: fixed;
  z-index: 20;
  inset: 0;
  overflow: auto;
  padding: 80px max(24px, calc((100vw - 1180px) / 2)) 64px;
  background: #f0f0ed;
}

.poster-index > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #bfc2c1;
}

.poster-index h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.poster-index header p:last-child {
  max-width: 610px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.poster-card {
  display: grid;
  align-content: start;
  padding: 0;
  overflow: hidden;
  border: 1px solid #c5c8c7;
  background: #fafaf7;
  text-align: left;
  cursor: pointer;
}

.poster-card:hover,
.poster-card:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 16px 32px rgba(30, 39, 43, 0.12);
  transform: translateY(-2px);
}

.poster-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9.2;
  object-fit: cover;
  background: #ddd;
}

.poster-card.portrait img {
  box-sizing: border-box;
  padding: 12px;
  object-fit: contain;
  background: #e6e6e2;
}

.poster-card-copy {
  display: grid;
  gap: 6px;
  padding: 17px;
}

.poster-card-copy small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poster-card-copy strong {
  font-size: 18px;
  line-height: 1.2;
}

.poster-card-copy em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.4;
}

dialog {
  border: 0;
}

dialog::backdrop {
  background: rgba(15, 17, 18, 0.8);
  backdrop-filter: blur(5px);
}

.poster-dialog {
  width: calc(100% - 32px);
  max-width: 1500px;
  height: calc(100% - 32px);
  max-height: 1000px;
  padding: 0;
  overflow: hidden;
  background: #ececea;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.poster-dialog[open] {
  display: flex;
  flex-direction: column;
}

.dialog-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border-bottom: 1px solid #c5c7c6;
  background: #fafaf7;
}

.poster-dialog h2 {
  max-width: 1050px;
  font-size: clamp(20px, 2.4vw, 34px);
}

.poster-dialog #dialog-authors {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.poster-detail-frame {
  position: relative;
  display: grid;
  box-sizing: border-box;
  flex: 1;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  min-height: 0;
  overflow: auto;
  place-items: center;
  padding: 28px 22px 44px;
}

.poster-detail-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 8px 30px rgba(25, 28, 30, 0.17);
}

.detail-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--muted);
  transform: translate(-50%, -50%);
}

.help-dialog {
  width: min(calc(100% - 32px), 560px);
  padding: 0;
  background: #fafaf7;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.help-dialog form {
  padding: 28px;
}

.help-dialog h2 {
  font-size: 31px;
}

.help-dialog dl {
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.help-dialog dl div {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) 1.2fr;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.help-dialog dt {
  font-weight: 700;
}

.help-dialog dd {
  margin: 0;
  color: var(--muted);
}

.noscript-message {
  position: relative;
  z-index: 100;
  margin: 40px;
  padding: 28px;
  background: #fff;
}

@media (max-width: 860px) {
  .poster-grid {
    grid-template-columns: 1fr;
  }

  .poster-card {
    grid-template-columns: minmax(190px, 0.8fr) 1.2fr;
  }

}

@media (max-width: 620px) {
  .gallery-header {
    padding: 12px;
  }

  .site-mark strong,
  #help-button {
    display: none;
  }

  .loading-screen,
  .welcome-screen {
    align-items: end;
    padding: 12px;
  }

  .loading-card,
  .welcome-card {
    padding: 24px 21px;
  }

  .welcome-card h1,
  .loading-card h1 {
    font-size: 35px;
  }

  .control-summary {
    line-height: 1.6;
  }

  .movement-guide {
    gap: 12px;
    padding: 12px;
  }

  .control-summary span {
    display: none;
  }

  .poster-index {
    padding: 70px 14px 30px;
  }

  .poster-index > header {
    gap: 12px;
  }

  .poster-index header p:last-child {
    font-size: 14px;
  }

  .poster-card {
    grid-template-columns: 1fr;
  }

  .dialog-bar {
    padding: 14px;
  }

  .poster-dialog #dialog-authors {
    font-size: 12px;
  }

  .poster-detail-frame {
    padding: 14px 9px 24px;
  }

  .walk-hint {
    display: none;
  }

  .sound-reminder {
    top: calc(max(14px, env(safe-area-inset-top)) + 58px);
    right: 12px;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
    width: min(calc(100% - 24px), 370px);
    padding: 14px 15px 15px;
  }

  .sound-reminder-icon {
    width: 44px;
    height: 44px;
  }

  .sound-reminder-icon svg {
    width: 26px;
    height: 26px;
  }

  .sound-reminder small {
    font-size: 10px;
  }

  .sound-reminder strong {
    font-size: 18px;
  }

  .sound-reminder > span:last-child {
    font-size: 13px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .portal-transition::before {
    animation: none;
  }

  .sound-reminder {
    animation: none;
  }
}
