* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: #1f2937;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, rgba(236, 254, 255, 0.75) 100%);
}

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

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #ffffff;
  background: linear-gradient(90deg, #115e59 0%, #164e63 52%, #1e293b 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.22);
}

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

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee 0%, #14b8a6 100%);
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.32);
}

.brand-text {
  font-size: 20px;
  line-height: 1;
  color: transparent;
  background: linear-gradient(90deg, #a5f3fc 0%, #99f6e4 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
}

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

.nav-links a:hover {
  color: #67e8f9;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(280px, 100%);
}

.nav-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(34, 211, 238, 0.28);
  outline: none;
  border-radius: 12px;
  padding: 10px 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-search input::placeholder {
  color: rgba(207, 250, 254, 0.72);
}

.nav-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #22d3ee;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.16);
}

.nav-search button,
.primary-button,
.ghost-button,
.filter-panel button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-search button,
.primary-button,
.filter-panel button {
  color: #ffffff;
  background: linear-gradient(90deg, #06b6d4 0%, #14b8a6 100%);
  box-shadow: 0 14px 28px rgba(20, 184, 166, 0.28);
}

.nav-search button {
  padding: 10px 16px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
}

.primary-button:hover,
.nav-search button:hover,
.filter-panel button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 38px rgba(20, 184, 166, 0.36);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(14px);
}

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

.nav-toggle {
  display: none;
  border: 0;
  color: #ffffff;
  font-size: 28px;
  background: transparent;
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 520px;
  margin: 24px clamp(16px, 4vw, 32px) 0;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
}

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

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

.hero-slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.5) 46%, rgba(2, 6, 23, 0.1) 100%);
}

.hero-content {
  position: absolute;
  left: clamp(24px, 7vw, 72px);
  right: clamp(24px, 7vw, 72px);
  bottom: clamp(36px, 7vw, 80px);
  max-width: 820px;
  color: #ffffff;
}

.hero-labels,
.detail-meta,
.tag-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-labels span,
.detail-label,
.tag-list span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-labels span:first-child,
.detail-label {
  color: #ecfeff;
  background: rgba(6, 182, 212, 0.92);
}

.hero-labels span:last-child,
.detail-meta span,
.tag-list span {
  color: #475569;
  background: #ecfeff;
}

.hero-content h1 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 28px;
  color: #e5e7eb;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  font-size: 32px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

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

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

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

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

.content-section,
.rail-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 56px auto;
}

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

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #1f2937;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.section-heading h2 span {
  width: 6px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #06b6d4 0%, #14b8a6 100%);
}

.section-more {
  color: #0891b2;
  font-weight: 700;
}

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

.category-tile,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff 0%, #ecfeff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile {
  min-height: 160px;
  padding: 24px;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.15);
}

.category-tile span,
.category-overview-card h2 {
  display: block;
  margin-bottom: 12px;
  color: #0f766e;
  font-size: 20px;
  font-weight: 800;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: 240px;
  gap: 22px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 22px;
  background: #0f172a;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.2);
}

.feature-large {
  grid-row: span 2;
}

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

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

.feature-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.18));
}

.feature-layer span {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.9);
}

.feature-layer h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 3vw, 32px);
}

.feature-layer p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.7;
}

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

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

.movie-card {
  min-width: 0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

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

.poster {
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(145deg, #0f172a 0%, #155e75 100%);
}

.poster-wide {
  aspect-ratio: 16 / 9;
}

.poster-tall {
  aspect-ratio: 3 / 4;
}

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

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

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
}

.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #06b6d4;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-content {
  padding: 18px;
}

.card-content h3 {
  margin: 0 0 10px;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-content p {
  min-height: 48px;
  margin: 0 0 14px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  color: #64748b;
  font-size: 13px;
}

.rail-section {
  margin: 56px 0;
  padding: 48px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ecfeff 100%);
}

.rail-inner {
  position: relative;
}

.rail-controls {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: 10px;
}

.rail-controls button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #334155;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.movie-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scrollbar-width: none;
}

.movie-rail::-webkit-scrollbar {
  display: none;
}

.rail-item {
  width: 320px;
  flex: 0 0 auto;
}

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

.compact-card {
  display: block;
}

.compact-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease;
}

.compact-card span {
  display: block;
  margin-top: 10px;
  color: #334155;
  font-weight: 700;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-hero {
  width: min(1280px, calc(100% - 32px));
  margin: 28px auto 42px;
  border-radius: 28px;
  color: #ffffff;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.34), transparent 32%), linear-gradient(135deg, #0f172a 0%, #164e63 52%, #115e59 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.simple-hero > div {
  max-width: 780px;
  padding: clamp(42px, 7vw, 78px);
}

.simple-hero span {
  color: #67e8f9;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.simple-hero h1 {
  margin: 14px 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
}

.simple-hero p {
  margin: 0;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.8;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(14, 165, 233, 0.16);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.filter-panel input,
.filter-panel select {
  color: #1f2937;
  background: #f8fafc;
}

.empty-state {
  margin: 36px 0;
  padding: 28px;
  text-align: center;
  color: #64748b;
  border-radius: 18px;
  background: #ffffff;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.category-covers img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 64px 72px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 90px;
  padding: 12px 16px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-row:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.rank-num {
  color: #0891b2;
  font-size: 24px;
  font-weight: 900;
}

.ranking-row img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-title {
  font-size: 18px;
  font-weight: 800;
  color: #1f2937;
}

.rank-meta {
  color: #64748b;
  white-space: nowrap;
}

.detail-hero {
  width: min(1280px, calc(100% - 32px));
  margin: 28px auto 0;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 28px;
  color: #ffffff;
  background: radial-gradient(circle at 80% 10%, rgba(20, 184, 166, 0.32), transparent 34%), linear-gradient(135deg, #020617 0%, #0f172a 48%, #164e63 100%);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.26);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  color: #bae6fd;
  font-size: 14px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.detail-poster img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.detail-intro h1 {
  margin: 18px 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 820px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  margin: 24px 0 14px;
}

.detail-meta span,
.tag-list span {
  background: rgba(255, 255, 255, 0.1);
  color: #e0f2fe;
  border: 1px solid rgba(186, 230, 253, 0.18);
}

.detail-intro .primary-button {
  margin-top: 26px;
}

.watch-section h2,
.story-section h2 {
  margin: 0 0 18px;
  color: #1f2937;
  font-size: clamp(24px, 3vw, 32px);
}

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

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.24));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-icon {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  font-size: 34px;
  background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
  box-shadow: 0 18px 42px rgba(6, 182, 212, 0.42);
}

.player-title {
  padding: 0 24px;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
  text-align: center;
}

.story-section {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.story-section p {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.95;
}

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

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

.site-footer {
  margin-top: 72px;
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 32px;
}

.footer-brand {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 20px;
}

.site-footer p {
  max-width: 460px;
  margin: 0;
  color: #94a3b8;
  line-height: 1.8;
}

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

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

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #64748b;
}

@media (max-width: 1080px) {
  .category-grid,
  .movie-grid,
  .search-content .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 860px) {
  .nav-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    display: none;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

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

  .nav-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-search {
    width: 100%;
  }

  .hero-carousel {
    height: 66vh;
    min-height: 460px;
    border-radius: 22px;
  }

  .hero-arrow {
    display: none;
  }

  .category-grid,
  .movie-grid,
  .wide-grid,
  .related-grid,
  .search-content .movie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-overview-grid,
  .footer-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .category-overview-card {
    grid-template-columns: 140px minmax(0, 1fr);
  }

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

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

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

  .rank-meta {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 18px;
  }

  .hero-carousel {
    margin-left: 12px;
    margin-right: 12px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 52px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .category-grid,
  .movie-grid,
  .wide-grid,
  .related-grid,
  .search-content .movie-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .rail-item {
    width: 82vw;
  }

  .card-content h3 {
    font-size: 17px;
  }
}
