:root {
  --sand-50: #fdfbf7;
  --sand-100: #f8f4ea;
  --sand-200: #f0e7d3;
  --sand-300: #e4d2aa;
  --sand-600: #b8904d;
  --sand-700: #9a7540;
  --desert-50: #fff7ed;
  --desert-100: #fdf2e5;
  --desert-500: #e88c45;
  --desert-600: #d66f2e;
  --desert-700: #b35a26;
  --earth-50: #f7f5f2;
  --earth-100: #ede9e4;
  --earth-500: #9a7e66;
  --earth-600: #8d6f59;
  --earth-700: #745b4b;
  --earth-800: #604c40;
  --earth-900: #504035;
  --dune-50: #f9f7f4;
  --dune-100: #f1ece4;
  --dune-700: #855d44;
  --dune-900: #583f31;
  --white: #ffffff;
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, .05), 0 2px 4px -1px rgba(0, 0, 0, .03);
  --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, .07), 0 10px 20px -2px rgba(0, 0, 0, .04);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, .10), 0 8px 10px -6px rgba(0, 0, 0, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--earth-900);
  background: var(--sand-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(253, 251, 247, .96), rgba(255, 247, 237, .96));
  border-bottom: 1px solid var(--sand-200);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  backdrop-filter: blur(12px);
}

.nav-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--desert-500), var(--sand-600));
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s ease, transform .3s ease;
}

.brand:hover .brand-mark {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.brand-mark span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}

.brand-copy strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.04em;
  background: linear-gradient(90deg, var(--desert-700), var(--sand-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--earth-600);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--earth-700);
  font-weight: 600;
  transition: color .2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--desert-600);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--earth-700);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.mobile-nav {
  display: none;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--sand-200);
}

.mobile-link {
  display: block;
  padding: 9px 0;
  font-weight: 600;
  color: var(--earth-700);
}

.mobile-link:hover {
  color: var(--desert-600);
}

.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--earth-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .52), rgba(0, 0, 0, .08));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 760px;
  padding-top: 40px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(214, 111, 46, .92);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  max-width: 760px;
  margin: 20px 0 16px;
  color: #fff;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -.06em;
}

.hero-content p {
  max-width: 690px;
  margin: 0 0 28px;
  color: var(--sand-100);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.detail-info .primary-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn,
.ghost-btn,
.light-btn,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(90deg, var(--desert-600), var(--desert-500));
  box-shadow: var(--shadow-card);
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.ghost-btn {
  color: #fff;
  background: rgba(255, 255, 255, .17);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(8px);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, .28);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, .32);
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(6px);
  transition: background .2s ease, transform .2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, .52);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 22px;
  transform: translateY(-50%);
}

.hero-next {
  right: 22px;
  transform: translateY(-50%);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 10;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 18px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .52);
  transition: width .25s ease, background .25s ease;
}

.hero-dot.active {
  width: 34px;
  background: #fff;
}

.intro-strip {
  background: #fff;
  box-shadow: var(--shadow-card);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.intro-grid a {
  padding: 22px;
  background: #fff;
  transition: background .2s ease;
}

.intro-grid a:hover {
  background: var(--sand-100);
}

.intro-grid strong,
.intro-grid span {
  display: block;
}

.intro-grid strong {
  color: var(--earth-900);
  font-size: 18px;
}

.intro-grid span {
  color: var(--earth-600);
  font-size: 14px;
}

.section-block {
  padding: 64px 0;
}

.section-head {
  margin-bottom: 28px;
}

.section-head.with-link {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  color: var(--earth-900);
  letter-spacing: -.04em;
}

.section-kicker {
  background: var(--desert-100);
  color: var(--desert-700);
}

.section-more {
  min-height: 42px;
  color: var(--desert-700);
  background: var(--desert-100);
}

.section-more:hover {
  color: #fff;
  background: var(--desert-600);
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.small-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.card-link {
  display: block;
  height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--sand-100);
}

.card-large .poster-wrap {
  aspect-ratio: 16 / 11;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.08);
}

.poster-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, .38);
  opacity: 0;
  transition: opacity .25s ease;
}

.poster-hover span,
.play-circle {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(255, 255, 255, .42);
  backdrop-filter: blur(6px);
}

.movie-card:hover .poster-hover {
  opacity: 1;
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: var(--desert-600);
  box-shadow: var(--shadow-card);
}

.card-body {
  padding: 16px;
}

.card-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--earth-600);
  font-size: 13px;
  font-weight: 700;
}

.card-meta span,
.detail-meta span {
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--sand-100);
}

.card-body h2 {
  display: -webkit-box;
  min-height: 52px;
  margin: 10px 0 8px;
  overflow: hidden;
  color: var(--earth-900);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 800;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color .2s ease;
}

.movie-card:hover h2 {
  color: var(--desert-600);
}

.card-body p {
  display: -webkit-box;
  min-height: 62px;
  margin: 0;
  overflow: hidden;
  color: var(--earth-600);
  font-size: 14px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag-row span {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--desert-700);
  background: var(--desert-100);
  font-size: 12px;
  font-weight: 700;
}

.soft-section {
  background: linear-gradient(180deg, var(--sand-50), #fff);
}

.desert-section {
  background: linear-gradient(90deg, var(--desert-50), var(--sand-50));
}

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

.compact-card {
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.compact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.compact-card a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
}

.compact-poster {
  position: relative;
  flex: 0 0 112px;
  height: 84px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--sand-100);
}

.compact-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compact-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  border-radius: 999px;
  color: #fff;
  background: var(--desert-600);
  font-size: 12px;
  font-weight: 900;
}

.compact-info {
  min-width: 0;
}

.compact-info h2 {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--earth-900);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.compact-card:hover h2 {
  color: var(--desert-600);
}

.compact-info p {
  margin: 0;
  color: var(--earth-600);
  font-size: 13px;
}

.cta-section {
  padding: 72px 0;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, var(--earth-900), var(--dune-900));
}

.cta-section h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -.05em;
}

.cta-section p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: var(--sand-200);
  font-size: 18px;
}

.light-btn {
  color: var(--earth-900);
  background: #fff;
}

.light-btn:hover {
  background: var(--sand-100);
  transform: translateY(-2px);
}

.page-hero {
  padding: 84px 0 76px;
  color: #fff;
  background: linear-gradient(135deg, var(--earth-900), var(--dune-900));
}

.category-hero {
  background: linear-gradient(135deg, var(--earth-900), var(--desert-700));
}

.ranking-hero {
  background: linear-gradient(135deg, var(--dune-900), var(--earth-900));
}

.page-hero h1 {
  max-width: 840px;
  margin: 18px 0 14px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -.06em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--sand-100);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: #fff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.category-card {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 128px;
  overflow: hidden;
  background: var(--sand-100);
}

.category-covers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-body {
  padding: 20px;
}

.category-body h2 {
  margin: 0 0 8px;
  color: var(--earth-900);
  font-size: 22px;
}

.category-body p {
  min-height: 72px;
  margin: 0 0 16px;
  color: var(--earth-600);
  font-size: 14px;
}

.category-body span {
  color: var(--desert-600);
  font-weight: 800;
}

.filter-panel {
  margin-bottom: 34px;
  padding: 22px;
  border: 1px solid var(--sand-200);
  border-radius: 22px;
  background: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-card);
}

.filter-title {
  margin-bottom: 12px;
  color: var(--earth-900);
  font-size: 18px;
  font-weight: 900;
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 12px;
}

.search-input,
.type-filter {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--sand-200);
  border-radius: 14px;
  color: var(--earth-900);
  background: #fff;
  outline: none;
}

.search-input:focus,
.type-filter:focus {
  border-color: var(--desert-500);
  box-shadow: 0 0 0 3px rgba(232, 140, 69, .15);
}

.list-head {
  margin-top: 54px;
}

.detail-hero {
  padding: 54px 0;
  color: #fff;
  background: radial-gradient(circle at 20% 0%, rgba(232, 140, 69, .36), transparent 36%), linear-gradient(135deg, var(--earth-900), var(--dune-900));
}

.detail-grid {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  background: var(--sand-100);
  box-shadow: var(--shadow-hover);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-info h1 {
  margin: 18px 0 12px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -.06em;
}

.detail-one-line {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--sand-100);
  font-size: 20px;
}

.detail-meta {
  margin-bottom: 16px;
}

.detail-meta span {
  color: var(--sand-100);
  background: rgba(255, 255, 255, .14);
}

.detail-tags {
  margin-bottom: 24px;
}

.player-section {
  padding: 56px 0 24px;
}

.player-section h2,
.prose-section h2 {
  margin: 0 0 18px;
  color: var(--earth-900);
  font-size: 30px;
  letter-spacing: -.04em;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 16 / 9;
}

.player-box video,
.play-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player-box video {
  object-fit: contain;
  z-index: 1;
}

.play-cover {
  display: grid;
  place-items: center;
  z-index: 2;
  padding: 0;
  border: 0;
  color: #fff;
  background: #000;
}

.play-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.play-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
}

.play-circle {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  font-size: 28px;
  background: rgba(214, 111, 46, .88);
}

.prose-section {
  padding: 34px 0 12px;
}

.prose-section p {
  margin: 0 0 24px;
  padding: 24px;
  border-radius: 18px;
  color: var(--earth-700);
  background: #fff;
  box-shadow: var(--shadow-card);
  font-size: 17px;
}

.page-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 24px 0 46px;
}

.page-switch a {
  padding: 18px 20px;
  border-radius: 16px;
  color: var(--earth-800);
  background: #fff;
  box-shadow: var(--shadow-card);
  font-weight: 800;
  transition: color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.page-switch a:hover {
  color: var(--desert-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  color: var(--earth-600);
  background: #fff;
  border-top: 1px solid var(--sand-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  padding: 46px 0;
}

.footer-title {
  margin-bottom: 12px;
  color: var(--earth-900);
  font-size: 26px;
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--earth-900);
  font-size: 18px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--desert-600);
}

.footer-bottom {
  padding: 18px;
  text-align: center;
  border-top: 1px solid var(--sand-200);
  color: var(--earth-500);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1024px) {
  .desktop-nav {
    gap: 14px;
  }

  .movie-grid,
  .feature-grid,
  .small-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compact-grid,
  .editor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-grid {
    grid-template-columns: 240px minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: block;
    animation: fadeIn .25s ease;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    height: 520px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 20px;
  }

  .hero-arrow {
    display: none;
  }

  .intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .movie-grid,
  .feature-grid,
  .small-grid,
  .category-grid,
  .editor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-grid {
    grid-template-columns: 1fr;
  }

  .filter-row {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    max-width: 260px;
  }

  .page-switch,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .container,
  .nav-shell {
    width: min(100% - 24px, 1200px);
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .hero {
    height: 500px;
  }

  .hero-content h1,
  .page-hero h1,
  .detail-info h1 {
    letter-spacing: -.04em;
  }

  .hero-content p,
  .page-hero p,
  .detail-one-line {
    font-size: 16px;
  }

  .section-block {
    padding: 46px 0;
  }

  .intro-grid,
  .movie-grid,
  .feature-grid,
  .small-grid,
  .category-grid,
  .editor-grid {
    grid-template-columns: 1fr;
  }

  .compact-card a {
    align-items: flex-start;
  }

  .compact-poster {
    flex-basis: 96px;
    height: 74px;
  }

  .card-large .poster-wrap {
    aspect-ratio: 16 / 10;
  }

  .player-box {
    border-radius: 16px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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