:root {
  color-scheme: dark;
  --ink: #f1eadb;
  --muted: #b9ae9e;
  --paper: rgba(12, 10, 9, 0.82);
  --line: rgba(241, 234, 219, 0.18);
  --accent: #d9b56f;
  --danger: #b5574f;
  --shadow: rgba(0, 0, 0, 0.58);
}

@font-face {
  font-family: "Ark Pixel";
  src: url("../assets/fonts/0066 方舟像素字体｜Ark Pixel/版本 V2025.08.24/（OTF）12px-proportional-V2025.08.24/ark-pixel-12px-proportional-zh_cn.otf") format("opentype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #070706;
  color: var(--ink);
  font-family: "Ark Pixel", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
}

button {
  border: 1px solid var(--line);
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.app-shell {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-width: 320px;
  background:
    radial-gradient(circle at 46% 28%, rgba(150, 139, 116, 0.12), transparent 32%),
    linear-gradient(180deg, #11100e 0%, #060606 100%);
}

.cover,
.intertitle,
.cinematic,
.exploration {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.cover.is-active,
.intertitle.is-active,
.cinematic.is-active,
.exploration.is-active {
  opacity: 1;
  pointer-events: auto;
}

.cinematic.is-hidden,
.cover.is-hidden {
  display: none;
}

.cover {
  z-index: 30;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 34%, rgba(150, 139, 116, 0.16), transparent 42%),
    linear-gradient(180deg, #141210 0%, #070605 100%);
}

.cover-vhs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  mix-blend-mode: overlay;
  animation: tapeJitter 180ms steps(2, end) infinite;
}

.cover-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 24px;
  text-align: center;
}

.cover-content h1 {
  margin: 0;
  font-size: clamp(64px, 14vw, 160px);
  line-height: 1;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  color: #f1eadb;
  text-shadow:
    0 0 42px rgba(217, 181, 111, 0.28),
    0 6px 24px #000;
}

.cover-content .subtitle {
  margin: 0;
  color: var(--muted);
  font-size: clamp(12px, 1.6vw, 15px);
  letter-spacing: 0.5em;
  text-indent: 0.5em;
}

.intertitle {
  z-index: 20;
  display: grid;
  place-items: center;
  background: #000;
}

.intertitle p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 4.4vw, 46px);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.intro-caption {
  opacity: 0;
  transition: opacity 520ms ease;
}

.intro-caption.is-visible {
  opacity: 1;
}

#skip-button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  opacity: 0.85;
}

.cinematic {
  z-index: 10;
  display: grid;
  place-items: center;
  background: #030303;
}

.opening-video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  image-rendering: auto;
  filter: contrast(1.06) saturate(0.76) brightness(0.82);
}

.cinematic-vhs,
.stage-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.055), transparent);
  mix-blend-mode: overlay;
  opacity: 0.55;
  animation: tapeJitter 180ms steps(2, end) infinite;
}

.cinematic-caption {
  position: absolute;
  left: clamp(20px, 7vw, 92px);
  bottom: clamp(22px, 8vh, 88px);
  display: grid;
  gap: 12px;
  width: min(480px, calc(100vw - 40px));
  text-shadow: 0 3px 18px #000;
}

.timecode,
.chapter,
.objective,
.speaker {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0;
}

.cinematic-caption h1 {
  margin: 0 0 8px;
  font-size: clamp(42px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.primary-action,
.ghost-action,
.close-action {
  width: fit-content;
  min-height: 44px;
  padding: 10px 18px;
  border-image: url("../assets/ui/ui/popup.png") 14 fill / 10px / 0 stretch;
  background:
    linear-gradient(rgba(14, 11, 9, 0.88), rgba(14, 11, 9, 0.88)),
    url("../assets/ui/ui/popup.png") center / 100% 100%;
  box-shadow: 0 12px 30px var(--shadow);
  text-shadow: 0 2px 0 #000;
}

.primary-action:hover,
.ghost-action:hover,
.close-action:hover {
  border-color: rgba(217, 181, 111, 0.75);
  background: rgba(50, 38, 26, 0.86);
}

.ghost-action {
  color: var(--muted);
}

.exploration {
  z-index: 5;
  display: block;
  background: #090807;
}

.exploration.is-hidden {
  display: none;
}

.objective-hud {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  left: clamp(16px, 3vw, 32px);
  z-index: 6;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  background: rgba(5, 5, 5, 0.68);
  text-shadow: 0 2px 8px #000;
}

.objective-label {
  color: var(--muted);
  font-size: 12px;
}

.scene-name {
  margin: 0 0 2px;
  color: var(--accent);
  font-size: clamp(15px, 1.9vw, 19px);
}

.objective {
  margin: 0;
  color: var(--ink);
  font-size: clamp(14px, 1.8vw, 18px);
}

.stage-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #0f0d0b;
}

#scene-canvas {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  image-rendering: pixelated;
}

.transition-flash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(238, 228, 196, 0.72), transparent);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

.transition-flash.is-running {
  animation: mirrorSweep 760ms ease both;
}

.scene-transition {
  position: absolute;
  inset: 0;
  z-index: 9;
  background: #050505;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.scene-transition.is-fading {
  opacity: 1;
}

.interaction-panel {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 7;
  min-width: min(360px, calc(100vw - 32px));
  padding: 10px 14px;
  background: rgba(5, 5, 5, 0.76);
  color: var(--ink);
  text-align: center;
  text-shadow: 0 2px 8px #000;
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.interaction-panel.is-ready {
  opacity: 1;
  transform: translate(-50%, 0);
}

.interaction-panel p {
  margin: 0;
}

#interaction-title {
  color: var(--accent);
  font-weight: 700;
}

#interaction-text {
  margin-top: 5px;
  color: var(--ink);
  font-size: 14px;
}

.dialogue-box {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 24px;
  z-index: 10;
  display: none;
  min-height: 132px;
  padding: 16px 18px;
  border: 0;
  background: rgba(7, 6, 5, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.dialogue-box.is-active {
  display: block;
}

#dialogue-text {
  min-height: 46px;
  margin: 8px 0 14px;
  color: var(--ink);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.dialogue-box .speaker {
  color: var(--accent);
}

.dialogue-box .close-action,
.galgame-dialogue .close-action {
  padding: 4px 0;
  border: 0;
  border-image: none;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
}

.dialogue-box .close-action:hover,
.galgame-dialogue .close-action:hover {
  color: var(--ink);
}

.replay-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.replay-actions[hidden] {
  display: none;
}

.replay-actions .close-action {
  min-width: 0;
  min-height: 0;
  padding: 4px 0;
  border: 0;
  border-image: none;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.chapter-card {
  position: absolute;
  top: 16%;
  left: 50%;
  z-index: 8;
  color: var(--ink);
  font-size: clamp(26px, 4.4vw, 48px);
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-shadow: 0 3px 18px #000;
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

.chapter-card.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.control-tutorial {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  width: min(760px, calc(100vw - 32px));
  color: var(--muted);
  font-size: clamp(12px, 1.6vw, 15px);
  text-align: center;
  text-shadow: 0 2px 8px #000;
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.control-tutorial.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.control-tutorial kbd {
  color: var(--ink);
  font: inherit;
}

.choice-overlay {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 24px;
  z-index: 20;
  display: none;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.choice-overlay.is-active {
  display: flex;
}

.global-fade {
  position: absolute;
  inset: 0;
  z-index: 80;
  background: #020202;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms linear;
}

.global-fade.is-dark {
  opacity: 1;
  pointer-events: auto;
}

.choice-inner {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 14px 18px 16px;
  border: 1px solid rgba(217, 181, 111, 0.42);
  border-radius: 6px;
  background: rgba(9, 8, 7, 0.93);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  text-align: left;
  pointer-events: auto;
}

.choice-title {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  font-size: 14px;
}

.choice-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-action {
  flex: 1 1 260px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(217, 181, 111, 0.5);
  background: rgba(14, 11, 9, 0.92);
  color: var(--ink);
  font-size: clamp(15px, 1.8vw, 19px);
  text-align: left;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
}

.choice-action:hover {
  border-color: rgba(217, 181, 111, 0.9);
  background: rgba(50, 38, 26, 0.9);
}

.galgame {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  background: #0b0a09;
}

.galgame.is-active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.galgame.is-choosing .galgame-dialogue {
  display: none;
}

.galgame.is-black {
  background: #000;
}

.galgame.is-black .galgame-bg,
.galgame.is-black .galgame-bg-img,
.galgame.is-black .galgame-vhs,
.galgame.is-black .galgame-cg,
.galgame.is-black .galgame-portrait,
.galgame.is-black .galgame-stage {
  display: none;
}

.galgame-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 38%, rgba(120, 110, 96, 0.18), transparent 60%),
    linear-gradient(180deg, #151210 0%, #080706 100%);
}

.galgame-bg-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

.galgame.has-bg .galgame-bg-img {
  display: block;
}

.galgame-stage {
  position: absolute;
  inset: 0 0 172px 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galgame-cg {
  display: none;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  image-rendering: pixelated;
  filter: contrast(1.05) saturate(0.9) brightness(0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.galgame.has-cg .galgame-cg {
  display: block;
}

.galgame-portrait {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: none;
  max-width: 46%;
  max-height: 62vh;
  object-fit: contain;
  image-rendering: pixelated;
  filter: contrast(1.04) saturate(0.94) brightness(0.96);
}

.galgame-portrait.is-left {
  left: 27%;
}

.galgame-portrait.is-right {
  left: 73%;
}

.galgame.has-portrait .galgame-portrait {
  display: block;
}

.galgame-vhs {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  mix-blend-mode: overlay;
  opacity: 0.5;
  animation: tapeJitter 180ms steps(2, end) infinite;
}

.galgame-dialogue {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 24px;
  min-height: 132px;
  padding: 16px 18px;
  z-index: 4;
  border: 1px solid rgba(217, 181, 111, 0.4);
  border-radius: 6px;
  background: linear-gradient(rgba(9, 8, 7, 0.86), rgba(9, 8, 7, 0.86));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.galgame-speaker {
  margin: 0;
  color: #d9b56f;
  font-weight: 700;
  font-size: 15px;
}

.galgame-text {
  min-height: 46px;
  margin: 10px 0 14px;
  color: #efe6d3;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.6;
}

.galgame-text.is-narration {
  color: #b9ae9e;
  font-style: italic;
}

.galgame-dialogue .close-action {
  margin-top: 4px;
}

/* ===== 系统通知（顶部中央，统一承载物品、成就与变量变化）===== */
.var-toast {
  position: fixed;
  top: clamp(18px, 5vh, 56px);
  left: 50%;
  z-index: 140;
  width: min(620px, calc(100vw - 32px));
  padding: 14px 22px 16px;
  border: 1px solid rgba(205, 174, 111, 0.82);
  border-radius: 2px;
  background: rgba(10, 14, 16, 0.96);
  box-shadow: 10px 14px 34px rgba(0, 0, 0, 0.48);
  color: #f3e3bd;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 2px 8px #000;
  opacity: 0;
  transform: translate(-50%, -14px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 300ms cubic-bezier(.2,.8,.2,1);
}

.var-toast::before {
  content: attr(data-label);
  display: block;
  margin-bottom: 4px;
  color: #bba275;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.var-toast.is-active {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ===== P3-01 全屏监控录像静帧播放 ===== */
.vhs {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  background: #000;
  overflow: hidden;
}

.vhs.is-active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.vhs-stage,
.p3-frame,
.vhs-blackout {
  position: absolute;
  inset: 0;
}

.vhs-stage {
  background: #000;
  transform: scale(1.012);
}

.p3-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  filter: grayscale(1) contrast(1.3) brightness(0.76);
  transform: translate3d(0, 0, 0) scale(1.012);
}

.vhs-blackout {
  z-index: 2;
  background: #000;
  opacity: 0;
  transition: opacity 80ms linear;
}

.vhs.is-black-frame .vhs-blackout {
  opacity: 1;
}

.vhs-noise {
  z-index: 4;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 19% 31%, rgba(255, 255, 255, 0.2) 0 1px, rgba(0, 0, 0, 0.24) 1px 2px, transparent 2px 4px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, rgba(0, 0, 0, 0.12) 1px 2px, transparent 2px 4px),
    radial-gradient(ellipse at center, transparent 48%, rgba(0, 0, 0, 0.58) 100%);
  mix-blend-mode: screen;
  opacity: 0.5;
  animation: vhsNoiseShift 120ms steps(2, end) infinite;
}

.vhs-tracking {
  position: absolute;
  z-index: 5;
  left: -4%;
  right: -4%;
  height: 14%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.44), transparent);
  mix-blend-mode: overlay;
  opacity: 0.58;
  animation: vhsTracking 4.8s linear infinite;
}

.vhs-fault {
  position: absolute;
  z-index: 6;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(180deg, transparent 0 18%, rgba(255, 255, 255, 0.92) 18% 25%, transparent 25% 61%, rgba(255, 255, 255, 0.5) 61% 66%, transparent 66%),
    #fff;
  mix-blend-mode: difference;
}

.vhs.is-glitching .p3-frame {
  animation: vhsImageBreak 260ms steps(3, end) both;
}

.vhs.is-glitching .vhs-fault {
  animation: vhsFaultFlash 260ms steps(3, end) both;
}

.vhs-timecode {
  position: absolute;
  z-index: 8;
  top: 18px;
  left: 20px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 16px;
  color: rgba(245, 245, 245, 0.9);
  font-family: "Ark Pixel", monospace;
  font-size: clamp(13px, 1.5vw, 18px);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-shadow: 2px 2px 0 #000;
}

#vhs-camera {
  grid-column: 1 / -1;
  color: rgba(235, 235, 235, 0.72);
}

.vhs-rect {
  z-index: 8;
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(245, 245, 245, 0.86);
  font-size: 16px;
  letter-spacing: 0.14em;
  text-shadow: 2px 2px 0 #000;
  font-family: "Ark Pixel", monospace;
}

.vhs-rect::before {
  content: "● ";
  animation: blink 1s steps(2, end) infinite;
}

.vhs-caption {
  position: absolute;
  z-index: 9;
  display: none;
  left: 8%;
  right: 8%;
  bottom: 24px;
  min-height: 70px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(0, 0, 0, 0.72);
  color: #e8e8e8;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.55;
  text-shadow: 1px 1px 0 #000;
}

.vhs.has-caption .vhs-caption {
  display: block;
}

.vhs-caption-label {
  color: #aaa;
  font-size: 13px;
  letter-spacing: 0.18em;
}

.vhs-caption p {
  margin: 5px 0 0;
}

.vhs-skip {
  position: absolute;
  z-index: 10;
  right: 20px;
  bottom: 10px;
  padding: 5px 8px;
  border: 0;
  background: rgba(0, 0, 0, 0.56);
  color: rgba(235, 235, 235, 0.7);
  font-family: "Ark Pixel", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.vhs-skip:hover,
.vhs-skip:focus-visible {
  color: #fff;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes tapeJitter {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(1px, -1px, 0); }
  100% { transform: translate3d(-1px, 1px, 0); }
}

@keyframes vhsNoiseShift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1.05); opacity: 0.38; }
  50% { transform: translate3d(1%, 1%, 0) scale(1.04); opacity: 0.62; }
  100% { transform: translate3d(2%, -1%, 0) scale(1.06); opacity: 0.46; }
}

@keyframes vhsTracking {
  from { top: -18%; }
  to { top: 112%; }
}

@keyframes vhsImageBreak {
  0% { transform: translate3d(0, 0, 0) scale(1.012); filter: grayscale(1) contrast(1.3) brightness(0.76); }
  25% { transform: translate3d(-4%, 1px, 0) scale(1.06); filter: grayscale(1) contrast(2.1) brightness(1.45); }
  55% { transform: translate3d(3%, -2px, 0) scale(1.03); filter: grayscale(1) contrast(1.8) brightness(0.35); }
  100% { transform: translate3d(0, 0, 0) scale(1.012); filter: grayscale(1) contrast(1.3) brightness(0.76); }
}

@keyframes vhsFaultFlash {
  0% { opacity: 0; transform: translateY(-8%); }
  20% { opacity: 0.92; transform: translateY(4%); }
  45% { opacity: 0.18; transform: translateY(-2%); }
  70% { opacity: 0.7; transform: translateY(7%); }
  100% { opacity: 0; transform: translateY(0); }
}

@keyframes mirrorSweep {
  0% { opacity: 0; transform: translateX(-120%); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateX(120%); }
}

@media (max-width: 760px) {
  .dialogue-box {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .control-tutorial {
    bottom: 18px;
    gap: 8px 14px;
  }

  .vhs-caption {
    left: 12px;
    right: 12px;
    bottom: 38px;
    min-height: 62px;
  }
}
