:root {
  --cream: #f8ebd8;
  --cream-soft: rgba(255, 248, 236, 0.9);
  --amber: #f2c879;
  --amber-deep: #c99545;
  --brown: #4b3528;
  --brown-soft: #755944;
  --blue-gray: #8fa1aa;
  --night: #302c2d;
  --safe-top: max(18px, env(safe-area-inset-top));
  --safe-bottom: max(20px, env(safe-area-inset-bottom));
  color-scheme: only light;
  font-family:
    "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, serif;
  background: var(--night);
  color: var(--brown);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(242, 200, 121, 0.12), transparent 26rem),
    #211e1d;
}

button {
  font: inherit;
}

button:focus-visible {
  outline: 3px solid rgba(242, 200, 121, 0.9);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.experience {
  position: relative;
  width: min(100%, 480px);
  margin: 0 auto;
  overflow: clip;
  background: var(--cream);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.55);
}

.experience::after {
  position: fixed;
  z-index: 20;
  inset: 0;
  width: min(100%, 480px);
  margin: auto;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0 0.7px, transparent 0.9px),
    radial-gradient(circle at 70% 60%, #5a4638 0 0.6px, transparent 0.8px);
  background-size: 9px 11px, 13px 15px;
  mix-blend-mode: soft-light;
}

.story-progress {
  position: fixed;
  z-index: 30;
  top: var(--safe-top);
  left: 50%;
  display: flex;
  width: min(calc(100% - 40px), 440px);
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 248, 236, 0.26);
  border-radius: 999px;
  color: #fff8ec;
  opacity: 0;
  background: rgba(43, 37, 34, 0.45);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -12px);
  transition:
    opacity 300ms ease,
    transform 300ms ease;
  pointer-events: none;
}

.story-started .story-progress {
  opacity: 1;
  transform: translate(-50%, 0);
}

.story-progress__label {
  width: 3.6em;
  flex: 0 0 auto;
  overflow: hidden;
  font-family: system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-progress__track {
  display: block;
  height: 2px;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.25);
}

.story-progress__fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--amber);
  transition: width 100ms linear;
}

.scene {
  --parallax: 0px;
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--night);
}

.scene__media {
  position: absolute;
  z-index: -3;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
  transform: translate3d(0, var(--parallax), 0) scale(1.035);
  transition:
    filter 800ms ease,
    opacity 600ms ease;
  will-change: transform;
}

.scene__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
}

.scene__veil--cover {
  background:
    linear-gradient(180deg, rgba(24, 29, 38, 0.05) 0%, transparent 38%),
    linear-gradient(180deg, transparent 48%, rgba(249, 222, 171, 0.16) 66%, rgba(65, 43, 30, 0.38) 100%);
}

.scene__veil--morning {
  background: linear-gradient(180deg, rgba(248, 235, 216, 0.05), transparent 40%, rgba(59, 43, 32, 0.13));
}

.scene__veil--bottom {
  background: linear-gradient(180deg, transparent 34%, rgba(34, 30, 29, 0.08) 54%, rgba(25, 23, 23, 0.72) 100%);
}

.scene__veil--rain {
  background: linear-gradient(180deg, rgba(40, 50, 61, 0.14), transparent 45%, rgba(24, 29, 34, 0.66));
}

.scene__veil--ending {
  background: linear-gradient(180deg, rgba(57, 45, 35, 0.12), rgba(28, 26, 25, 0.28));
}

.scene--cover .scene__media {
  object-position: center 48%;
  animation: cover-breathe 9s ease-in-out infinite alternate;
}

.scene--morning .scene__media {
  object-position: center 51%;
}

.scene--store .scene__media {
  object-position: center 45%;
}

.scene--trash .scene__media {
  object-position: center 48%;
}

.scene--car .scene__media {
  object-position: center 43%;
}

.scene--road .scene__media {
  object-position: center 48%;
}

.scene--rain .scene__media {
  object-position: center 50%;
}

.scene--alley .scene__media {
  object-position: center 45%;
}

.scene--injury .scene__media {
  object-position: 57% 46%;
}

.scene--ending .scene__media {
  object-position: center 48%;
}

.lamp-glow {
  position: absolute;
  top: -8%;
  left: 43%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.35;
  background: rgba(255, 208, 111, 0.55);
  filter: blur(32px);
  animation: lamp-flicker 5s ease-in-out infinite;
}

.cover-copy {
  position: absolute;
  z-index: 2;
  top: max(36px, calc(var(--safe-top) + 18px));
  right: 24px;
  left: 24px;
  color: #fff8ea;
  text-align: center;
  text-wrap: balance;
}

.eyebrow,
.chapter,
.ending-kicker {
  margin: 0 0 10px;
  font-family:
    "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  opacity: 0;
  transform: translateY(12px);
  animation: rise-in 800ms 150ms ease forwards;
}

.cover-copy h1 {
  margin: 0;
  font-family: "STKaiti", "KaiTi", "FangSong", serif;
  font-size: clamp(46px, 14vw, 66px);
  font-weight: 700;
  line-height: 0.83;
  letter-spacing: -0.09em;
  text-shadow: 0 3px 24px rgba(25, 20, 18, 0.68);
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 900ms 300ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.cover-copy h1 span {
  display: inline-block;
  margin-left: 0.75em;
  color: var(--amber);
}

.cover-copy__subtitle {
  margin: 10px auto 12px;
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 800ms 500ms ease forwards;
}

.primary-button {
  display: inline-flex;
  min-width: 168px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 20px;
  border: 1px solid rgba(75, 53, 40, 0.16);
  border-radius: 999px;
  color: #fff9ee;
  background: rgba(75, 53, 40, 0.93);
  box-shadow: 0 10px 24px rgba(67, 45, 31, 0.26);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.cover-copy .primary-button {
  min-height: 48px;
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 800ms 680ms ease forwards;
}

.cover-copy .eyebrow,
.cover-copy__subtitle {
  text-shadow: 0 2px 12px rgba(24, 20, 19, 0.85);
}

.primary-button:hover {
  background: #654832;
  box-shadow: 0 12px 28px rgba(67, 45, 31, 0.32);
  transform: translateY(-2px);
}

.primary-button:active {
  transform: translateY(1px);
}

.primary-button__arrow {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--brown);
  background: var(--amber);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: var(--safe-bottom);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(75, 53, 40, 0.78);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 1px;
  height: 20px;
  background: currentColor;
  transform-origin: top;
  animation: scroll-line 1.8s ease-in-out infinite;
}

.scene-copy {
  position: absolute;
  z-index: 3;
  right: 16px;
  left: 16px;
  width: calc(100% - 32px);
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 252, 243, 0.34);
  border-radius: 24px;
  color: var(--brown);
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(245, 229, 204, 0.83));
  box-shadow: 0 15px 38px rgba(33, 27, 23, 0.19);
  backdrop-filter: blur(12px) saturate(1.08);
  transform: translateY(28px);
  transition:
    opacity 800ms ease,
    transform 800ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.is-visible .scene-copy {
  opacity: 1;
  transform: translateY(0);
}

.scene-copy--top {
  top: max(70px, calc(var(--safe-top) + 44px));
}

.scene-copy--middle {
  bottom: 11%;
}

.scene-copy--bottom {
  bottom: max(28px, var(--safe-bottom));
}

.scene-copy--prompt {
  top: max(66px, calc(var(--safe-top) + 42px));
  bottom: auto;
  padding: 15px 17px 14px;
  border-color: rgba(255, 252, 243, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.86), rgba(245, 229, 204, 0.72));
  box-shadow: 0 10px 28px rgba(33, 27, 23, 0.13);
  backdrop-filter: none;
  transform: none;
  transition: opacity 500ms ease;
}

.is-visible .scene-copy--prompt {
  transform: none;
}

.scene-copy--prompt h2 {
  margin-bottom: 5px;
  font-size: clamp(25px, 7vw, 32px);
}

.scene-copy--prompt > p:not(.chapter) {
  padding-right: 112px;
  font-size: 13px;
  line-height: 1.55;
}

.scene-copy .chapter {
  color: var(--brown-soft);
}

.chapter span {
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin-right: 7px;
  place-items: center;
  border: 1px solid rgba(75, 53, 40, 0.32);
  border-radius: 50%;
  font-size: 9px;
  letter-spacing: 0;
}

.scene-copy h2,
.ending-copy h2 {
  margin: 0 0 10px;
  font-family: "STKaiti", "KaiTi", "FangSong", serif;
  font-size: clamp(29px, 8vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.scene-copy > p:not(.chapter, .continue-hint) {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  text-wrap: pretty;
}

.continue-hint {
  margin: 16px 0 0;
  color: var(--brown-soft);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.choice-trigger {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  color: #fff9ef;
  background: rgba(75, 53, 40, 0.94);
  box-shadow: 0 7px 18px rgba(48, 34, 26, 0.22);
  cursor: pointer;
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.choice-trigger:hover {
  background: #654832;
  transform: translateY(-1px);
}

.choice-trigger span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--brown);
  background: var(--amber);
  font-size: 15px;
  line-height: 1;
}

.choice-trigger.is-complete {
  color: var(--brown);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: inset 0 0 0 1px rgba(75, 53, 40, 0.18);
}

.choice-backdrop {
  position: fixed;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(23, 21, 21, 0.48);
  backdrop-filter: blur(3px);
  transition:
    opacity 260ms ease,
    visibility 260ms ease;
}

.choice-open .choice-backdrop {
  opacity: 1;
  visibility: visible;
}

.choice-group {
  position: fixed;
  z-index: 90;
  right: auto;
  bottom: 0;
  left: 50%;
  display: grid;
  width: min(100%, 480px);
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 28px 20px max(24px, calc(var(--safe-bottom) + 10px));
  border: 1px solid rgba(255, 252, 243, 0.48);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  opacity: 0;
  visibility: hidden;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.98), rgba(239, 216, 183, 0.97));
  box-shadow: 0 -18px 50px rgba(25, 21, 19, 0.3);
  transform: translate(-50%, 105%);
  transition:
    opacity 260ms ease,
    visibility 260ms ease,
    transform 360ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.choice-group.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.choice-close {
  position: absolute;
  top: 12px;
  right: 14px;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--brown);
  background: rgba(75, 53, 40, 0.08);
  cursor: pointer;
  font-family: system-ui, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.choice-question,
.choice-feedback {
  grid-column: 1 / -1;
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 11px;
}

.choice-question {
  padding-right: 34px;
  color: var(--brown-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.choice-button {
  min-height: 49px;
  padding: 10px 12px;
  border: 1px solid rgba(75, 53, 40, 0.16);
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255, 252, 245, 0.8);
  box-shadow: 0 4px 12px rgba(75, 53, 40, 0.08);
  cursor: pointer;
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.choice-button:hover:not(:disabled) {
  border-color: rgba(75, 53, 40, 0.42);
  background: #fffaf1;
  transform: translateY(-1px);
}

.choice-button.is-selected {
  border-color: var(--brown);
  color: #fffaf0;
  background: var(--brown);
}

.choice-button.is-muted {
  opacity: 0.36;
}

.choice-button:disabled {
  cursor: default;
}

.choice-feedback {
  min-height: 16px;
  color: #8a603a;
  text-align: center;
  letter-spacing: 0.08em;
}

.light-sweep {
  position: absolute;
  z-index: 1;
  top: 32%;
  left: -55%;
  width: 48%;
  height: 20%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 232, 167, 0.3), transparent);
  filter: blur(7px);
  transform: skewX(-18deg);
}

.scene--car.is-visible .light-sweep,
.scene--road.is-visible .light-sweep {
  animation: light-pass 4.8s 1s ease-in-out infinite;
}

.light-sweep--road {
  top: 34%;
  height: 28%;
}

.rain-layer {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.raindrop {
  position: absolute;
  top: -14%;
  width: 1px;
  height: var(--rain-length, 54px);
  opacity: var(--rain-opacity, 0.34);
  background: linear-gradient(transparent, rgba(221, 233, 235, 0.9));
  transform: rotate(8deg);
  animation: rain-fall var(--rain-duration, 1.6s) linear infinite;
  animation-delay: var(--rain-delay, 0s);
}

.scene--ending {
  min-height: 112svh;
  align-items: center;
}

.ending-copy {
  position: relative;
  z-index: 3;
  width: calc(100% - 32px);
  margin: clamp(82px, 13svh, 120px) 16px 78px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 252, 243, 0.38);
  border-radius: 28px;
  color: var(--brown);
  opacity: 0;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.95), rgba(242, 221, 188, 0.86));
  box-shadow: 0 20px 50px rgba(29, 24, 21, 0.25);
  backdrop-filter: blur(13px) saturate(1.08);
  transform: translateY(30px);
  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.scene--ending.is-visible .ending-copy {
  opacity: 1;
  transform: translateY(0);
}

.ending-copy .chapter {
  color: var(--brown-soft);
}

.ending-kicker {
  margin-top: 24px;
  color: #9a6b3a;
  letter-spacing: 0.1em;
}

.ending-copy h2 {
  margin-top: 4px;
  font-size: clamp(35px, 10vw, 48px);
}

.ending-story {
  margin: 0;
  font-size: 15px;
  line-height: 1.88;
}

.rescue-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(75, 53, 40, 0.18);
}

.rescue-note__title {
  margin: 0 0 10px;
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.rescue-note ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0 0 0 1.2em;
  color: #654c3b;
  font-size: 12px;
  line-height: 1.55;
}

.primary-button--restart {
  width: 100%;
  margin-top: 22px;
}

.footprints {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 14px;
  width: 110px;
  height: 170px;
  opacity: 0.48;
  transform: rotate(-24deg);
}

.paw {
  --paw-scale: 1;
  position: absolute;
  width: 14px;
  height: 12px;
  border-radius: 50% 50% 45% 45%;
  opacity: 0;
  background: #513827;
  transform: scale(var(--paw-scale));
}

.paw::before,
.paw::after {
  position: absolute;
  top: -7px;
  width: 5px;
  height: 7px;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.paw::before {
  left: 0;
  box-shadow: 8px -2px 0 #513827;
}

.paw::after {
  left: 4px;
  box-shadow: 6px 1px 0 #513827;
}

.paw:nth-child(1) {
  bottom: 5px;
  left: 14px;
}

.paw:nth-child(2) {
  bottom: 48px;
  right: 16px;
  --paw-scale: 0.88;
}

.paw:nth-child(3) {
  bottom: 91px;
  left: 22px;
  --paw-scale: 0.77;
}

.paw:nth-child(4) {
  top: 8px;
  right: 24px;
  --paw-scale: 0.65;
}

.scene--ending.is-visible .paw {
  animation: paw-appear 600ms ease forwards;
}

.scene--ending.is-visible .paw:nth-child(2) {
  animation-delay: 350ms;
}

.scene--ending.is-visible .paw:nth-child(3) {
  animation-delay: 700ms;
}

.scene--ending.is-visible .paw:nth-child(4) {
  animation-delay: 1050ms;
}

.toast {
  position: fixed;
  z-index: 100;
  bottom: max(22px, var(--safe-bottom));
  left: 50%;
  max-width: calc(100% - 40px);
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff9ef;
  opacity: 0;
  background: rgba(53, 43, 36, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 12px;
  text-align: center;
  transform: translate(-50%, 14px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  pointer-events: none;
}

.toast.is-shown {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cover-breathe {
  from {
    transform: translate3d(0, var(--parallax), 0) scale(1.035);
  }
  to {
    transform: translate3d(0, var(--parallax), 0) scale(1.065);
  }
}

@keyframes lamp-flicker {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.96);
  }
  45% {
    opacity: 0.42;
    transform: scale(1.04);
  }
  48% {
    opacity: 0.34;
  }
}

@keyframes scroll-line {
  0%,
  100% {
    opacity: 0.32;
    transform: scaleY(0.45);
  }
  50% {
    opacity: 0.95;
    transform: scaleY(1);
  }
}

@keyframes light-pass {
  0%,
  20% {
    left: -55%;
    opacity: 0;
  }
  42% {
    opacity: 0.7;
  }
  65%,
  100% {
    left: 115%;
    opacity: 0;
  }
}

@keyframes rain-fall {
  to {
    transform: translate3d(70px, 125svh, 0) rotate(8deg);
  }
}

@keyframes paw-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}

@media (max-height: 720px) {
  .scene-copy {
    padding: 16px 17px 14px;
  }

  .scene-copy h2 {
    margin-bottom: 7px;
    font-size: 27px;
  }

  .scene-copy > p:not(.chapter, .continue-hint) {
    font-size: 13px;
    line-height: 1.6;
  }

  .choice-group {
    padding-top: 24px;
  }

  .choice-button {
    min-height: 44px;
    font-size: 11px;
  }

  .chapter {
    margin-bottom: 7px;
  }
}

@media (min-width: 700px) {
  body::before,
  body::after {
    position: fixed;
    top: 50%;
    color: rgba(248, 235, 216, 0.35);
    font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    content: "流浪猫的一天";
    writing-mode: vertical-rl;
    transform: translateY(-50%);
  }

  body::before {
    left: max(28px, calc(50% - 300px));
  }

  body::after {
    right: max(28px, calc(50% - 300px));
    content: "看见，是改变的开始";
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .scene__media {
    transform: scale(1.035);
  }
}
