:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --orange: #f97316;
  --amber: #facc15;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --surface: #ffffff;
  --soft: #f9fafb;
  --dark: #111827;
  --shadow: 0 16px 45px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 8px 25px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 45%, #f8fafc 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 16px rgba(15, 23, 42, 0.08);
}

.nav-inner {
  max-width: 1200px;
  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;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  box-shadow: 0 8px 22px rgba(220, 38, 38, 0.28);
}

.brand-name {
  font-size: 22px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 650;
  color: #374151;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: #374151;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 10px 20px 16px;
  background: #fff;
}

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

.mobile-link {
  padding: 10px 12px;
  border-radius: 12px;
  color: #374151;
  font-weight: 650;
}

.mobile-link:hover {
  color: var(--red);
  background: #fef2f2;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 42%, #f97316 100%);
  color: #fff;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero::after,
.page-hero::after,
.rank-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.28), transparent 28%), rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  min-height: 560px;
  margin: 0 auto;
  padding: 56px 20px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.25fr) 360px;
  gap: 54px;
  align-items: center;
}

.hero-slide.active {
  display: grid;
}

.hero-copy h1,
.page-hero h1,
.rank-hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p,
.rank-hero p {
  max-width: 740px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-pill,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
}

.hero-pill {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: #fff;
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-meta span,
.detail-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 750;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  background: #fff;
  color: var(--red);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  border: 2px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ghost-button.dark {
  border-color: rgba(220, 38, 38, 0.2);
  background: #fff7ed;
  color: var(--red-dark);
}

.hero-poster,
.rank-hero-poster {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.18);
}

.hero-poster img,
.rank-hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-poster span,
.rank-hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.hero-controls {
  margin-top: 26px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 32px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-dot.active {
  background: #fff;
}

.hero-search {
  margin-top: 26px;
  max-width: 720px;
  display: flex;
  padding: 8px;
  gap: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  color: #111827;
  outline: none;
}

.hero-search button {
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  background: #111827;
  color: #fff;
  font-weight: 800;
}

.intro-strip {
  max-width: 1200px;
  margin: -32px auto 0;
  position: relative;
  z-index: 2;
  padding: 22px 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.intro-strip div {
  display: grid;
  gap: 4px;
}

.intro-strip strong {
  font-size: 22px;
}

.intro-strip span {
  color: var(--muted);
}

.intro-strip a,
.section-more {
  color: var(--red);
  font-weight: 850;
}

.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 58px 20px;
}

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

.compact-heading {
  align-items: flex-start;
}

.section-kicker {
  padding: 5px 10px;
  background: #fef2f2;
  color: var(--red);
  font-size: 13px;
}

.section-heading h2 {
  margin: 10px 0 6px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

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

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

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

.movie-card {
  min-width: 0;
}

.poster-card {
  display: grid;
  height: 100%;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fee2e2, #fff7ed);
}

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

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

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.12) 55%, transparent);
}

.year-badge,
.rating-badge {
  position: absolute;
  z-index: 1;
  top: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.year-badge {
  right: 10px;
  background: var(--red);
}

.rating-badge {
  left: 10px;
  background: rgba(17, 24, 39, 0.72);
}

.poster-frame figcaption {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  gap: 2px;
  color: #fff;
}

.poster-frame strong {
  font-size: 15px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poster-frame small {
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.play-mark {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-text {
  padding: 14px 14px 16px;
}

.card-text h2 {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.35;
}

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

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

.category-card,
.category-overview-card a {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.category-overview-card a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-card img {
  width: 118px;
  height: 150px;
  border-radius: 16px;
  object-fit: cover;
}

.category-card span,
.category-overview-text {
  display: grid;
  gap: 7px;
}

.category-card strong,
.category-overview-text h2 {
  margin: 0;
  font-size: 21px;
}

.category-card small,
.category-overview-text p {
  color: var(--muted);
}

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

.category-posters img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
}

.ranking-block {
  padding-top: 34px;
}

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

.mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.mini-card:hover {
  transform: translateX(4px);
}

.rank-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-weight: 900;
}

.mini-card img {
  width: 58px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-card span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.mini-card strong,
.mini-card small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-card small {
  color: var(--muted);
}

.page-hero,
.rank-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #111827 0%, #7f1d1d 45%, #ea580c 100%);
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 20px;
}

.small-hero > div {
  padding-top: 58px;
  padding-bottom: 58px;
}

.filter-panel {
  margin: 0 0 26px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

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

.filter-search input,
.filter-selects select {
  border: 1px solid var(--border);
  outline: none;
  border-radius: 14px;
  background: #f9fafb;
}

.filter-search input {
  flex: 1;
  min-height: 46px;
  padding: 0 14px;
}

.filter-search button {
  border: 0;
  padding: 0 16px;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  font-weight: 800;
}

.filter-selects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.filter-selects select {
  min-height: 42px;
  padding: 0 12px;
}

.filter-state {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.side-card {
  position: sticky;
  top: 88px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.side-card h2 {
  margin: 0 0 16px;
}

.compact-ranking {
  grid-template-columns: 1fr;
}

.rank-hero {
  min-height: 420px;
  padding: 58px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 42px;
}

.rank-hero > * {
  position: relative;
  z-index: 1;
}

.rank-hero-copy {
  max-width: 780px;
  justify-self: end;
}

.rank-hero-poster {
  width: 260px;
  justify-self: start;
}

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

.rank-row a {
  display: grid;
  grid-template-columns: 58px 78px minmax(0, 1fr) 80px;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.rank-index,
.rank-score {
  font-weight: 900;
  color: var(--red);
  font-size: 22px;
  text-align: center;
}

.rank-row img {
  width: 78px;
  height: 104px;
  border-radius: 14px;
  object-fit: cover;
}

.rank-info {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.rank-info strong {
  font-size: 20px;
}

.rank-info small {
  color: var(--muted);
}

.rank-info em {
  color: #4b5563;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-inner > * {
  position: relative;
  z-index: 1;
}

.detail-cover {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

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

.detail-cover span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red);
  transform: translate(-50%, -50%);
  font-size: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
}

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

.detail-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
}

.detail-one-line {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 28px;
}

.tag-list span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 750;
}

.player-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px 20px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.1));
  color: var(--red);
}

.play-overlay span {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  font-size: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.video-shell.is-playing .play-overlay {
  display: none;
}

.detail-article {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.detail-article h2 {
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--red);
  font-size: 24px;
}

.detail-article h2:not(:first-child) {
  margin-top: 30px;
}

.detail-article p {
  margin: 0;
  color: #374151;
  font-size: 17px;
}

.movie-info-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.movie-info-list div {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border-radius: 14px;
  background: #f9fafb;
}

.movie-info-list dt {
  color: var(--muted);
  font-weight: 750;
}

.movie-info-list dd {
  margin: 0;
}

.site-footer {
  margin-top: 40px;
  background: linear-gradient(135deg, #111827, #1f2937 55%, #111827);
  color: #d1d5db;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 20px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

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

.footer-grid p,
.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #9ca3af;
}

.footer-grid li + li {
  margin-top: 8px;
}

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

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9ca3af;
  font-size: 14px;
}

[data-filter-hidden="true"] {
  display: none !important;
}

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

  .hero-slide,
  .detail-inner,
  .two-column-layout,
  .detail-content-grid,
  .rank-hero {
    grid-template-columns: 1fr;
  }

  .hero-poster,
  .rank-hero-poster {
    width: min(360px, 100%);
  }

  .rank-hero-copy,
  .rank-hero-poster {
    justify-self: start;
  }

  .side-card {
    position: static;
  }
}

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

  .menu-button {
    display: flex;
  }

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

  .hero-inner,
  .page-hero > div,
  .detail-inner,
  .rank-hero {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero-slide.active {
    display: grid;
  }

  .hero-copy p,
  .page-hero p,
  .rank-hero p {
    font-size: 17px;
  }

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

  .category-grid,
  .category-overview-grid,
  .ranking-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filter-search,
  .intro-strip,
  .section-heading,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

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

  .rank-row a {
    grid-template-columns: 42px 64px minmax(0, 1fr);
  }

  .rank-score {
    grid-column: 1 / -1;
    text-align: left;
    padding-left: 10px;
  }

  .rank-row img {
    width: 64px;
    height: 86px;
  }

  .rank-info em {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .nav-inner {
    padding: 0 14px;
  }

  .brand-name {
    font-size: 18px;
  }

  .content-section,
  .player-section {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .hero-search input,
  .hero-search button {
    min-height: 44px;
  }

  .category-card,
  .category-overview-card a {
    grid-template-columns: 86px 1fr;
  }

  .category-card img {
    width: 86px;
    height: 116px;
  }

  .detail-cover {
    max-width: 280px;
  }

  .video-shell {
    border-radius: 18px;
  }
}
