:root {
  --bg: #f8fafc;
  --ink: #111827;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --brand: #dc2626;
  --brand-dark: #991b1b;
  --accent: #f97316;
  --blue: #2563eb;
  --panel: #ffffff;
  --dark: #020617;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 48%, #ffffff 100%);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, #020617 0%, #111827 45%, #020617 100%);
  box-shadow: 0 12px 35px rgba(2, 6, 23, 0.35);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 15px;
}

.nav-links a {
  padding: 8px 2px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fb7185;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #020617 0%, #7f1d1d 48%, #020617 100%);
}

.hero-bg,
.hero-bg-slide,
.hero-layer {
  position: absolute;
  inset: 0;
}

.hero-bg-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 3.8s ease;
}

.hero-bg-slide.is-active {
  opacity: 0.34;
  transform: scale(1);
}

.hero-layer {
  background:
    radial-gradient(circle at 15% 20%, rgba(248, 113, 113, 0.42), transparent 30%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(88, 28, 28, 0.78) 48%, rgba(2, 6, 23, 0.9) 100%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 42px;
  padding: 68px 0;
}

.hero-kicker,
.page-hero span,
.section-heading span,
.category-block-head span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 12px;
  color: #fecaca;
  background: rgba(220, 38, 38, 0.22);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.08em;
  background: linear-gradient(90deg, #fecaca, #fb923c, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 680px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.75;
}

.hero-search {
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-search input {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 14px;
  padding: 14px 16px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.62);
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.hero-search button,
.category-block-head a,
.text-link {
  border: 0;
  border-radius: 14px;
  padding: 13px 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.28);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-pills a:hover {
  background: rgba(220, 38, 38, 0.38);
  transform: translateY(-2px);
}

.hero-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-card {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 25px 55px rgba(2, 6, 23, 0.32);
  transform: translateY(0) scale(1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-card:first-child {
  grid-column: span 2;
  min-height: 260px;
}

.hero-card.is-active,
.hero-card:hover {
  border-color: rgba(248, 113, 113, 0.7);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 32px 70px rgba(127, 29, 29, 0.42);
}

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

.hero-card:hover img {
  transform: scale(1.06);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.05));
}

.hero-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.hero-card strong,
.hero-card small {
  display: block;
}

.hero-card strong {
  font-size: 19px;
  line-height: 1.3;
}

.hero-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

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

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 28px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.section-heading.compact {
  display: block;
}

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

.movie-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111827;
}

.poster-wrap img,
.movie-thumb img,
.cover-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-wrap img,
.movie-thumb img {
  transition: transform 0.42s ease;
}

.movie-card:hover img {
  transform: scale(1.07);
}

.poster-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.08) 58%, rgba(2, 6, 23, 0.2));
}

.corner-badge,
.year-badge {
  position: absolute;
  top: 10px;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.corner-badge {
  left: 10px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.year-badge {
  right: 10px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

.play-mark,
.movie-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(220, 38, 38, 0.88);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.movie-card:hover .play-mark,
.movie-card:hover .movie-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-body {
  display: block;
  padding: 14px;
}

.card-body strong,
.card-body small,
.card-body em {
  display: block;
}

.card-body strong {
  overflow: hidden;
  min-height: 42px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body small {
  overflow: hidden;
  margin-top: 8px;
  color: var(--brand);
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-body em {
  overflow: hidden;
  height: 40px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card-wide {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: 132px;
}

.movie-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 132px;
  background: #111827;
}

.movie-card-wide .movie-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 18px;
}

.movie-info strong,
.movie-info small,
.movie-info em {
  display: block;
}

.movie-info strong {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 850;
}

.movie-info small {
  margin-top: 8px;
  color: var(--brand);
}

.movie-info em {
  overflow: hidden;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.sticky-panel {
  position: sticky;
  top: 92px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  padding: 12px;
  background: #f8fafc;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: #fff1f2;
  transform: translateX(4px);
}

.rank-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  font-weight: 900;
}

.rank-text strong,
.rank-text small {
  display: block;
}

.rank-text strong {
  overflow: hidden;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-text small {
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
}

.latest-band {
  background: linear-gradient(90deg, #eff6ff 0%, #f0fdfa 100%);
}

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

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

.related-grid,
.category-preview,
.mini-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 170px 150px 150px;
  gap: 12px;
  margin: 0 0 24px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 14px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.search-box input,
.filter-bar select {
  width: 100%;
  min-height: 48px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.filter-bar select {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 12px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.empty-note {
  border-radius: 16px;
  padding: 16px;
  color: var(--muted);
  background: #ffffff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(248, 113, 113, 0.34), transparent 28%),
    linear-gradient(135deg, #020617 0%, #7f1d1d 55%, #111827 100%);
}

.page-hero > div {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.75;
}

.category-overview {
  display: grid;
  gap: 26px;
}

.category-block {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.category-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.category-block-head h2 {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.category-block-head p {
  margin: 0;
  color: var(--muted);
}

.detail-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--brand);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.28);
  aspect-ratio: 16 / 9;
}

.player-card video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.16));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-overlay span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 22px 42px rgba(220, 38, 38, 0.34);
  font-size: 34px;
}

.video-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-content,
.cover-panel,
.side-links {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.detail-title-row h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.detail-title-row > span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 13px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  font-weight: 800;
}

.meta-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.meta-row span,
.tag-row span {
  border-radius: 999px;
  padding: 7px 11px;
  background: #f1f5f9;
  color: #475569;
  font-size: 13px;
}

.tag-row span {
  color: #b91c1c;
  background: #fee2e2;
}

.lead-text {
  border-left: 4px solid var(--brand);
  padding-left: 16px;
  color: #334155;
  font-size: 18px;
  line-height: 1.8;
}

.detail-content h2 {
  margin: 26px 0 12px;
  font-size: 24px;
  font-weight: 900;
}

.detail-content p {
  margin: 0 0 14px;
  color: #334155;
  line-height: 1.9;
}

.detail-side {
  position: sticky;
  top: 92px;
}

.cover-panel {
  margin-top: 0;
}

.cover-panel img {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background: #111827;
}

.cover-panel h2 {
  margin: 18px 0 8px;
  font-size: 22px;
  font-weight: 900;
}

.cover-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.side-links {
  display: grid;
  gap: 8px;
}

.side-links h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.side-links a {
  overflow: hidden;
  border-radius: 14px;
  padding: 10px 12px;
  background: #f8fafc;
  color: #334155;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.side-links a:hover {
  color: var(--brand);
  background: #fff1f2;
}

.soft-section {
  padding-top: 20px;
}

.site-footer {
  margin-top: 60px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(180deg, #111827 0%, #020617 100%);
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(160px, 0.5fr) minmax(180px, 0.7fr);
  gap: 34px;
  padding: 48px 0;
}

.footer-logo {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 950;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
  color: #fb7185;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.54);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1080px) {
  .hero-shell,
  .split-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    max-width: 760px;
  }

  .rank-panel,
  .detail-side,
  .sticky-panel {
    position: static;
  }

  .movie-grid,
  .latest-grid,
  .related-grid,
  .category-preview,
  .mini-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .nav-shell {
    min-height: 64px;
  }

  .brand {
    font-size: 20px;
  }

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 10px;
    background: rgba(2, 6, 23, 0.96);
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.45);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero,
  .hero-shell {
    min-height: auto;
  }

  .hero-shell {
    padding: 48px 0;
  }

  .hero-search {
    grid-template-columns: 1fr;
  }

  .hero-showcase,
  .wide-grid,
  .movie-card-wide,
  .footer-shell,
  .category-block-head {
    grid-template-columns: 1fr;
  }

  .hero-card:first-child {
    grid-column: auto;
  }

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

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

  .section-shell,
  .detail-shell,
  .page-hero > div,
  .footer-shell {
    width: min(100% - 24px, 1180px);
  }

  .section-shell {
    padding: 38px 0;
  }

  .detail-title-row {
    display: block;
  }

  .detail-title-row > span {
    display: inline-flex;
    margin-top: 12px;
  }

  .detail-content,
  .cover-panel,
  .side-links,
  .category-block,
  .rank-panel {
    border-radius: 20px;
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .movie-grid,
  .latest-grid,
  .related-grid,
  .category-preview,
  .mini-grid {
    grid-template-columns: 1fr;
  }
}
