:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #667085;
  --line: #e5e7eb;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --orange: #f97316;
  --blue: #2563eb;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #fff;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.28);
}

.brand-text {
  font-size: 24px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link,
.mobile-link {
  border-radius: 999px;
  color: #4b5563;
  font-weight: 700;
  transition: all 0.25s ease;
}

.nav-link {
  padding: 9px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  background: #fef3c7;
  color: #b45309;
}

.header-search {
  position: relative;
  width: 260px;
}

.site-search,
.filter-search input,
.filter-search select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.site-search {
  padding: 11px 16px;
}

.site-search:focus,
.filter-search input:focus,
.filter-search select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(420px, 88vw);
  max-height: 520px;
  overflow: auto;
  display: none;
  padding: 10px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.search-results.open {
  display: grid;
  gap: 8px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 8px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.search-result-item:hover {
  background: #fff7ed;
}

.search-result-item img {
  width: 64px;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  object-fit: cover;
}

.search-result-item strong {
  display: block;
  color: #111827;
}

.search-result-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: #fff7ed;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #b45309;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-panel.open {
  display: block;
}

.mobile-panel-inner {
  display: grid;
  gap: 10px;
  padding: 14px 0 18px;
}

.mobile-link {
  padding: 12px 14px;
}

.hero-carousel {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(245, 158, 11, 0.25), transparent 28%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.68) 46%, rgba(17, 24, 39, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
  height: 76vh;
  min-height: 620px;
  color: #fff;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p,
.detail-copy p {
  margin: 0 0 24px;
  color: #e5e7eb;
  font-size: clamp(16px, 2vw, 20px);
}

.hero-meta,
.movie-meta,
.detail-tags,
.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-meta span,
.detail-tags span,
.movie-tags span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #fff;
  box-shadow: 0 16px 28px rgba(245, 158, 11, 0.28);
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.35);
}

.primary-button.small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

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

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.95);
  color: #fff;
  transform: translate(-50%, -50%);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero-control.prev {
  left: 24px;
}

.hero-control.next {
  right: 24px;
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-dots button.active {
  width: 34px;
  background: var(--amber);
}

.section {
  padding: 76px 0;
}

.white-section {
  background: #fff;
}

.warm-section {
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.section-heading,
.section-heading-row {
  margin-bottom: 30px;
}

.section-heading {
  text-align: center;
  max-width: 720px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2,
.section-heading-row h2,
.player-card h2,
.detail-side-card h2,
.article-content h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.section-heading p {
  color: var(--muted);
}

.text-link {
  color: var(--amber-dark);
  font-weight: 800;
}

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

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

.category-movie-grid {
  align-items: stretch;
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111827;
}

.poster-link img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: all 0.25s ease;
}

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

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

.year-badge {
  right: 12px;
  background: rgba(17, 24, 39, 0.74);
}

.rank-badge {
  left: 12px;
  background: linear-gradient(135deg, #ef4444, var(--orange));
}

.movie-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.movie-card-title {
  color: #111827;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
}

.movie-card-title:hover {
  color: var(--amber-dark);
}

.movie-card-body p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta {
  gap: 10px;
  color: #6b7280;
  font-size: 13px;
}

.movie-meta span {
  display: inline-flex;
  align-items: center;
}

.movie-tags span {
  background: #fff7ed;
  color: #b45309;
}

.compact-card .movie-card-body p {
  display: none;
}

.compact-card .movie-card-title {
  font-size: 16px;
}

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

.category-card {
  position: relative;
  display: flex;
  min-height: 210px;
  overflow: hidden;
  align-items: end;
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.86));
}

.category-card-title,
.category-card-intro {
  position: relative;
  z-index: 1;
  padding: 0 18px;
  color: #fff;
}

.category-card-title {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 850;
}

.category-card-intro {
  display: block;
  padding-bottom: 18px;
  color: #e5e7eb;
  font-size: 13px;
}

.ranking-strip {
  padding: 76px 0;
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #fff;
}

.light-heading h2 {
  color: #fff;
}

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

.small-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111827;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.small-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.small-card:hover img {
  transform: scale(1.08);
}

.small-card-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.rank-number {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-weight: 900;
}

.small-card-title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: #fff;
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 86px;
  background:
    radial-gradient(circle at 80% 10%, rgba(251, 191, 36, 0.28), transparent 30%),
    linear-gradient(135deg, #92400e, #f59e0b 52%, #f97316);
  color: #fff;
}

.page-hero p {
  max-width: 760px;
}

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

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

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

.overview-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 26px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.overview-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.overview-card p {
  margin: 0;
  color: var(--muted);
}

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

.overview-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  object-fit: cover;
}

.filter-panel {
  margin-bottom: 28px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 24px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.filter-search {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 170px 180px 160px;
  gap: 12px;
}

.filter-search input,
.filter-search select {
  min-height: 44px;
  padding: 0 14px;
}

.filter-empty {
  display: none;
  margin-top: 14px;
  border-radius: 16px;
  background: #fff7ed;
  padding: 14px;
  color: #9a3412;
  font-weight: 700;
}

.filter-empty.show {
  display: block;
}

.ranking-list {
  display: grid;
  gap: 16px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 22px;
  background: #fff;
  padding: 14px;
  box-shadow: var(--soft-shadow);
}

.ranking-cover {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.ranking-cover img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.ranking-cover span {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, var(--orange));
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.ranking-content {
  display: grid;
  align-content: center;
  gap: 10px;
}

.ranking-title {
  color: #111827;
  font-size: 24px;
  font-weight: 900;
}

.ranking-title:hover {
  color: var(--amber-dark);
}

.ranking-content p {
  margin: 0;
  color: var(--muted);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: #111827;
  color: #fff;
}

.detail-hero-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.42)),
    radial-gradient(circle at 75% 22%, rgba(245, 158, 11, 0.24), transparent 30%);
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  padding: 58px 0 72px;
}

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

.detail-cover {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

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

.detail-copy {
  max-width: 820px;
}

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

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

.player-card,
.detail-side-card,
.article-content article {
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 26px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.player-card h2,
.detail-side-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.video-player {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72));
  color: #fff;
  cursor: pointer;
}

.player-start.hidden {
  display: none;
}

.player-start span {
  display: grid;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--amber);
  font-size: 30px;
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.32);
}

.player-start strong {
  font-size: 18px;
}

.player-message {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.76);
  color: #fff;
  padding: 12px 14px;
  text-align: center;
}

.player-message.show {
  display: block;
}

.detail-side-card dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px 14px;
  margin: 0;
}

.detail-side-card dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-side-card dd {
  margin: 0;
  color: #111827;
  font-weight: 700;
}

.article-content {
  display: grid;
  gap: 22px;
}

.article-content article {
  max-width: 980px;
}

.article-content h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

.article-content p {
  margin: 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

.site-footer {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #d1d5db;
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  color: #fff;
  font-size: 22px;
}

.footer-about p {
  max-width: 520px;
  color: #cbd5e1;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

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

.footer-links a:hover {
  color: #fbbf24;
}

@media (max-width: 1100px) {
  .header-search {
    width: 220px;
  }

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

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

  .hero-content {
    grid-template-columns: 1fr 280px;
  }
}

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

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: 640px;
    padding-top: 64px;
    padding-bottom: 82px;
  }

  .hero-poster {
    display: none;
  }

  .hero-control {
    display: none;
  }

  .section-heading-row,
  .detail-main-grid,
  .detail-layout,
  .footer-grid,
  .overview-grid,
  .ranking-item {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    display: grid;
    align-items: start;
  }

  .detail-cover {
    width: min(280px, 72vw);
  }

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

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

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

  .hero-carousel,
  .hero-content {
    min-height: 660px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 40px;
  }

  .movie-grid,
  .compact-grid,
  .category-grid,
  .small-card-row,
  .overview-thumbs {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .page-hero {
    padding: 70px 0 64px;
  }

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