:root {
  --amber-950: #451a03;
  --amber-900: #78350f;
  --amber-800: #92400e;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-200: #fde68a;
  --amber-100: #fef3c7;
  --orange-700: #c2410c;
  --orange-600: #ea580c;
  --stone-950: #1c1917;
  --stone-900: #292524;
  --stone-800: #44403c;
  --stone-700: #57534e;
  --stone-600: #78716c;
  --stone-300: #d6d3d1;
  --stone-100: #f5f5f4;
  --stone-50: #fafaf9;
  --white: #ffffff;
  --black: #000000;
  --shadow-soft: 0 18px 45px rgba(120, 53, 15, 0.12);
  --shadow-card: 0 12px 28px rgba(41, 37, 36, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--stone-900);
  background: linear-gradient(180deg, #fffbeb 0%, var(--stone-50) 34%, #fff7ed 100%);
  line-height: 1.6;
  min-width: 320px;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 235, 0.92);
  border-bottom: 1px solid rgba(253, 230, 138, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.32);
}

.brand-text strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  color: var(--amber-900);
}

.brand-text small {
  color: var(--amber-700);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--amber-900);
  font-weight: 700;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--orange-600);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(253, 230, 138, 0.55);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--amber-900);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(253, 230, 138, 0.8);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  padding: 10px 12px;
  color: var(--amber-900);
  border-radius: 12px;
}

.mobile-nav a:hover {
  background: var(--amber-100);
}

.hero-slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--amber-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(245, 158, 11, 0.42), transparent 34%),
    linear-gradient(90deg, rgba(69, 26, 3, 0.94) 0%, rgba(69, 26, 3, 0.76) 45%, rgba(69, 26, 3, 0.28) 100%);
}

.hero-content {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 52px;
  color: var(--white);
}

.hero-copy {
  max-width: 700px;
  animation: slideUp 0.8s ease both;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-200);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-desc {
  max-width: 680px;
  font-size: 18px;
  color: rgba(255, 251, 235, 0.88);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.hero-meta span,
.detail-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-meta span {
  color: var(--amber-100);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(253, 230, 138, 0.2);
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-button,
.secondary-button,
.search-bar button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button,
.search-bar button {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.32);
  border: 0;
  padding: 0 24px;
  cursor: pointer;
}

.secondary-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  padding: 0 24px;
  backdrop-filter: blur(14px);
}

.primary-button:hover,
.secondary-button:hover,
.search-bar button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.72), rgba(194, 65, 12, 0.72));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  transform: rotate(2deg);
}

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

.hero-poster:hover img {
  transform: scale(1.08);
}

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.42);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-weight: 800;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.24s ease, background 0.24s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--amber-200);
}

.quick-search {
  position: relative;
  margin-top: -42px;
  z-index: 5;
}

.quick-search-panel {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 24px;
  align-items: center;
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(253, 230, 138, 0.82);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.quick-search h2,
.section-heading h2,
.list-hero h1,
.watch-info h1 {
  color: var(--amber-950);
  letter-spacing: -0.04em;
}

.quick-search h2 {
  margin: 8px 0 6px;
  font-size: 32px;
}

.quick-search p {
  margin: 0;
  color: var(--stone-600);
}

.search-bar {
  display: flex;
  gap: 10px;
}

.search-bar input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--amber-200);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--stone-900);
  background: var(--white);
  outline: 0;
}

.search-bar input:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.quick-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-links a,
.filter-chip {
  color: var(--amber-900);
  background: var(--amber-100);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
}

.content-section {
  padding: 70px 0;
}

.content-section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.58);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 42px);
}

.section-heading p {
  max-width: 470px;
  color: var(--stone-600);
  margin: 0;
}

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

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

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(41, 37, 36, 0.18);
}

.poster-link,
.poster-shell {
  display: block;
}

.poster-shell {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

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

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

.poster-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--white);
  background: rgba(194, 65, 12, 0.9);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.card-content {
  padding: 14px;
}

.movie-title {
  display: -webkit-box;
  min-height: 44px;
  color: var(--stone-900);
  font-weight: 900;
  line-height: 1.35;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-title:hover,
.wide-title:hover {
  color: var(--amber-600);
}

.movie-meta,
.wide-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--stone-600);
  font-size: 13px;
  margin: 8px 0;
}

.card-content p {
  display: -webkit-box;
  margin: 0;
  color: var(--stone-600);
  font-size: 13px;
  line-height: 1.55;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.feature-band {
  padding-top: 20px;
}

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

.feature-card,
.info-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--amber-100), #fff7ed);
  box-shadow: var(--shadow-soft);
}

.feature-card span {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  display: inline-flex;
  border-radius: 14px;
  padding: 8px 12px;
  font-weight: 900;
}

.feature-card h3,
.info-card h2 {
  margin: 18px 0 10px;
  color: var(--amber-950);
}

.feature-card p,
.info-card p {
  margin: 0;
  color: var(--stone-700);
}

.list-hero {
  padding: 76px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(253, 230, 138, 0.32), transparent 30%),
    linear-gradient(135deg, var(--amber-900), var(--orange-700));
}

.list-hero h1 {
  margin: 8px 0 12px;
  color: var(--white);
  font-size: clamp(36px, 6vw, 62px);
}

.list-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 251, 235, 0.88);
  font-size: 18px;
}

.list-section {
  padding-top: 48px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}

.page-number,
.page-control,
.page-dot {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 12px;
  color: var(--amber-900);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(41, 37, 36, 0.08);
  font-weight: 800;
}

.page-number.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

.page-control.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

.rank-list {
  display: grid;
  gap: 12px;
}

.rank-row {
  display: grid;
  grid-template-columns: 64px 72px minmax(0, 1fr) 76px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(41, 37, 36, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.rank-num {
  color: var(--amber-600);
  font-size: 26px;
  font-weight: 950;
  text-align: center;
}

.rank-cover {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

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

.rank-main strong,
.wide-title {
  display: block;
  color: var(--stone-900);
  font-weight: 900;
}

.rank-main small {
  display: block;
  margin-top: 4px;
  color: var(--stone-600);
}

.rank-go {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  text-align: center;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-chip {
  border: 0;
  cursor: pointer;
}

.filter-chip.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

.search-summary {
  color: var(--stone-600);
  margin-bottom: 22px;
  font-weight: 700;
}

.search-page-bar {
  max-width: 680px;
  margin-top: 26px;
}

.watch-page {
  background: var(--stone-950);
}

.watch-hero {
  position: relative;
  overflow: hidden;
}

.watch-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(22px) saturate(1.1);
  transform: scale(1.12);
  opacity: 0.36;
}

.watch-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.94), rgba(69, 26, 3, 0.86));
}

.watch-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  padding: 34px 0 58px;
}

.back-link {
  display: inline-flex;
  color: var(--amber-200);
  margin-bottom: 18px;
  font-weight: 800;
}

.player-panel,
.watch-side {
  overflow: hidden;
  border: 1px solid rgba(253, 230, 138, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.player-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black);
  overflow: hidden;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--black);
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.62));
  border: 0;
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-cover.is-hidden,
.player-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 18px 38px rgba(217, 119, 6, 0.36);
  font-size: 30px;
  padding-left: 4px;
}

.player-loading,
.player-status {
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--amber-100);
  background: rgba(0, 0, 0, 0.48);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.player-status {
  top: auto;
  right: 18px;
  bottom: 72px;
  left: auto;
  max-width: min(420px, calc(100% - 36px));
  color: var(--white);
}

.player-status:empty {
  display: none;
}

.player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.66));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.player-card:hover .player-controls,
.player-card.is-playing .player-controls {
  opacity: 1;
}

.player-controls button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.watch-info {
  padding: 28px;
}

.watch-info h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
}

.detail-meta span {
  color: var(--amber-800);
  background: var(--amber-100);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 22px;
}

.tag-row span {
  color: var(--stone-700);
  background: var(--stone-100);
}

.one-line {
  color: var(--amber-900);
  font-size: 18px;
  font-weight: 800;
}

.watch-info section {
  border-top: 1px solid rgba(214, 211, 209, 0.78);
  padding-top: 22px;
  margin-top: 22px;
}

.watch-info h2,
.watch-side h2 {
  margin: 0 0 12px;
  color: var(--amber-950);
}

.watch-info p {
  color: var(--stone-700);
}

.watch-side {
  align-self: start;
  padding: 22px;
}

.side-list {
  display: grid;
  gap: 14px;
}

.wide-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(254, 243, 199, 0.5);
  transition: background 0.2s ease;
}

.wide-card:hover {
  background: rgba(254, 243, 199, 0.95);
}

.wide-cover {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

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

.wide-info p {
  display: -webkit-box;
  margin: 6px 0 0;
  color: var(--stone-600);
  font-size: 13px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-link {
  min-height: 0;
  margin-top: 6px;
  color: var(--amber-700);
  font-size: 13px;
}

.related-section {
  background: var(--stone-50);
}

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

.site-footer {
  color: var(--amber-50);
  background: linear-gradient(135deg, var(--amber-950), var(--orange-700));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 950;
  margin-bottom: 12px;
}

.footer-about p,
.site-footer a {
  color: rgba(255, 251, 235, 0.78);
}

.site-footer h3 {
  color: var(--amber-200);
  margin: 0 0 14px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(253, 230, 138, 0.2);
  padding: 20px 16px;
  text-align: center;
  color: rgba(255, 251, 235, 0.72);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (max-width: 1100px) {
  .movie-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .watch-layout {
    grid-template-columns: 1fr;
  }

  .watch-side {
    align-self: stretch;
  }
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 86px 0 96px;
  }

  .hero-poster {
    display: none;
  }

  .quick-search-panel,
  .section-heading,
  .feature-grid,
  .footer-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .search-bar {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    height: 66px;
  }

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

  .hero-slider,
  .hero-content {
    min-height: 580px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

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

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

  .rank-row {
    grid-template-columns: 44px 58px minmax(0, 1fr);
  }

  .rank-go {
    display: none;
  }

  .watch-info {
    padding: 20px;
  }

  .player-controls {
    opacity: 1;
  }

  .wide-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }
}
