* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: #1e293b;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 46%, #f8fafc 100%);
}

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

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  color: #ffffff;
  background: linear-gradient(90deg, #1e293b 0%, #334155 52%, #1e293b 100%);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
}

.nav-inner {
  max-width: 1180px;
  height: 64px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fecaca;
  background: rgba(239, 68, 68, 0.18);
  box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.36);
}

.brand-text {
  font-size: 24px;
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(90deg, #f87171, #fecaca);
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.mobile-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: #e2e8f0;
  font-size: 14px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.active,
.mobile-link.active {
  color: #ffffff;
  background: #ef4444;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  padding: 8px 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.hero-carousel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at 80% 10%, rgba(239, 68, 68, 0.45), transparent 28%), linear-gradient(135deg, #0f172a 0%, #7f1d1d 52%, #111827 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  min-height: 520px;
  margin: 0 auto;
  padding: 56px 20px 72px;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 44px;
  min-height: 392px;
}

.hero-slide.active {
  display: grid;
  animation: fadeLift 0.55s ease both;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fecaca;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 13px;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0 0 12px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.hero-copy h2 {
  margin: 0 0 16px;
  color: #fecaca;
  font-size: clamp(24px, 4vw, 36px);
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 22px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.wide-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.wide-tags span,
.tag-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  color: #b91c1c;
  background: #fee2e2;
}

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

.primary-button,
.ghost-button,
.light-button,
.panel-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.primary-button {
  padding: 13px 22px;
  color: #ffffff;
  background: #ef4444;
  box-shadow: 0 18px 32px rgba(239, 68, 68, 0.28);
}

.primary-button:hover,
.light-button:hover,
.panel-link:hover {
  transform: translateY(-2px) scale(1.02);
}

.ghost-button {
  padding: 12px 20px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

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

.hero-art {
  position: relative;
  isolation: isolate;
}

.hero-art img {
  width: min(360px, 100%);
  margin-left: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
}

.hero-glow {
  position: absolute;
  inset: 12% -5% -6% 14%;
  z-index: -1;
  border-radius: 38px;
  filter: blur(28px);
  background: rgba(248, 113, 113, 0.35);
}

.hero-controls {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 28px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.hero-dot.active {
  width: 28px;
  background: #f87171;
}

.feature-strip,
.content-section,
.page-main,
.detail-main,
.dark-inner,
.site-footer .footer-inner,
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 34px;
  padding-bottom: 8px;
}

.feature-card {
  min-height: 132px;
  padding: 26px;
  border-radius: 22px;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.feature-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
}

.feature-card span {
  color: rgba(255, 255, 255, 0.84);
}

.feature-card.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.feature-card.green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.feature-card.red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.content-section {
  padding-top: 44px;
  padding-bottom: 44px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: 28px;
  color: #1e293b;
}

.section-heading span {
  height: 4px;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, #f87171, rgba(248, 113, 113, 0));
}

.section-heading p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  background: #0f172a;
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.category-card span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.82));
}

.category-card strong,
.category-card em {
  position: absolute;
  left: 18px;
  right: 18px;
  color: #ffffff;
}

.category-card strong {
  bottom: 54px;
  font-size: 22px;
}

.category-card em {
  bottom: 20px;
  color: #cbd5e1;
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.movie-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.11);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

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

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.78));
}

.region-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.region-badge {
  right: 10px;
  padding: 0 10px;
  background: #ef4444;
}

.rank-badge {
  left: 10px;
  min-width: 28px;
  background: #f59e0b;
}

.poster-title {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.35;
}

.movie-info {
  padding: 14px;
}

.movie-info h3 {
  margin: 0 0 8px;
  color: #1e293b;
  font-size: 16px;
  line-height: 1.35;
}

.movie-info p {
  display: -webkit-box;
  min-height: 42px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #64748b;
  font-size: 12px;
}

.movie-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f1f5f9;
}

.movie-card.compact .movie-info {
  display: none;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 30px;
  align-items: start;
}

.wide-list,
.ranking-list,
.ranking-page-list {
  display: grid;
  gap: 14px;
}

.wide-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 16px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
}

.wide-cover {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 2 / 3;
  background: #111827;
}

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

.wide-rank {
  position: absolute;
  top: 6px;
  left: 6px;
  min-width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: #ef4444;
  font-size: 12px;
  font-weight: 800;
}

.wide-body h3 {
  margin: 4px 0 8px;
  font-size: 17px;
}

.wide-body p {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: #64748b;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ranking-panel {
  padding: 24px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.26);
}

.ranking-panel h2 {
  margin: 0 0 18px;
}

.ranking-panel .wide-card {
  color: #1e293b;
  box-shadow: none;
}

.panel-link {
  width: 100%;
  margin-top: 16px;
  padding: 12px 16px;
  color: #ffffff;
  background: #ef4444;
}

.dark-showcase {
  margin-top: 20px;
  color: #ffffff;
  background: linear-gradient(145deg, #1e293b, #0f172a);
}

.dark-inner {
  padding-top: 54px;
  padding-bottom: 56px;
}

.dark-showcase .section-heading h2 {
  color: #ffffff;
}

.dark-showcase .movie-card {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.cta-section {
  margin: 58px auto 68px;
  max-width: 1040px;
  padding: 46px 24px;
  border-radius: 28px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 24px 50px rgba(239, 68, 68, 0.24);
}

.cta-section h2 {
  margin: 0 0 10px;
  font-size: 34px;
}

.cta-section p {
  margin: 0 0 24px;
  color: #fee2e2;
  font-size: 18px;
}

.light-button {
  padding: 13px 22px;
  color: #dc2626;
  background: #ffffff;
}

.page-main,
.detail-main {
  padding-top: 34px;
  padding-bottom: 60px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 52px;
  border-radius: 30px;
  color: #ffffff;
  background: radial-gradient(circle at 90% 12%, rgba(248, 113, 113, 0.36), transparent 30%), linear-gradient(135deg, #0f172a, #7f1d1d 55%, #111827);
}

.compact-hero {
  padding: 44px;
}

.page-hero span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #fecaca;
  font-weight: 700;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.8;
}

.small-actions {
  margin-top: 22px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

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

.category-preview img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
}

.category-overview-card h2 {
  margin: 8px 0 10px;
}

.category-overview-card p {
  color: #64748b;
  line-height: 1.7;
}

.text-link {
  color: #dc2626;
}

.filter-bar {
  position: sticky;
  top: 78px;
  z-index: 30;
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.filter-bar input {
  width: 100%;
  height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 0 16px;
  font: inherit;
  outline: none;
}

.filter-bar input:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 8px 13px;
  color: #475569;
  background: #f1f5f9;
  cursor: pointer;
  font-weight: 700;
}

.filter-chip.active,
.filter-chip:hover {
  color: #ffffff;
  background: #ef4444;
}

.empty-state {
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  color: #64748b;
  background: #ffffff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 14px 18px;
  border-radius: 16px;
  color: #cbd5e1;
  background: #1e293b;
}

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

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

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

.detail-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.18);
}

.detail-facts {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.detail-facts div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px;
  font-size: 14px;
}

.detail-facts span {
  color: #64748b;
}

.detail-facts strong {
  color: #1e293b;
}

.detail-title {
  margin-bottom: 22px;
}

.detail-title h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.detail-title p {
  margin: 0 0 18px;
  color: #64748b;
  font-size: 18px;
  line-height: 1.8;
}

.player-shell {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.2);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000000;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.66));
  cursor: pointer;
}

.play-overlay[hidden],
.player-state[hidden] {
  display: none;
}

.play-circle {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #dc2626;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  font-size: 30px;
}

.play-overlay strong {
  max-width: 80%;
  text-align: center;
  font-size: 20px;
}

.player-state {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
}

.text-panel {
  margin-bottom: 22px;
  padding: 26px;
  border-radius: 22px;
}

.text-panel h2 {
  margin: 0 0 14px;
  color: #1e293b;
}

.text-panel p {
  margin: 0;
  color: #334155;
  line-height: 1.9;
  text-align: justify;
}

.red-panel {
  background: linear-gradient(90deg, #fff1f2, #fee2e2);
}

.white-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.related-section {
  padding-left: 0;
  padding-right: 0;
}

.site-footer {
  color: #cbd5e1;
  background: #0f172a;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 36px;
  padding-bottom: 28px;
}

.footer-brand {
  margin-bottom: 12px;
  color: #fecaca;
  font-size: 22px;
}

.footer-inner p {
  max-width: 560px;
  margin: 0;
  color: #94a3b8;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-bottom {
  padding-top: 16px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  font-size: 13px;
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

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

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

  .split-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-aside {
    position: static;
    max-width: 420px;
  }
}

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

  .nav-toggle {
    display: block;
  }

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

  .hero-inner {
    min-height: auto;
    padding-top: 38px;
  }

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

  .hero-art img {
    width: min(260px, 78vw);
    margin: 0 auto;
  }

  .feature-strip,
  .category-grid,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

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

  .page-hero,
  .compact-hero {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .category-preview {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-preview img {
    height: 110px;
  }

  .footer-inner {
    display: grid;
  }
}

@media (max-width: 520px) {
  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-copy p,
  .page-hero p,
  .detail-title p {
    font-size: 15px;
  }

  .movie-grid.eight,
  .movie-grid.six,
  .catalog-grid {
    gap: 14px;
  }

  .movie-info {
    padding: 12px;
  }

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

  .filter-bar {
    top: 70px;
  }
}
