:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --cyan-600: #0891b2;
  --cyan-900: #164e63;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.10);
  --shadow-xl: 0 18px 46px rgba(15, 23, 42, 0.18);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gray-50);
  color: var(--gray-900);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-600));
  color: var(--white);
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.32);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--gray-700);
  font-weight: 650;
}

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

.nav-links a:hover,
.mobile-panel a:hover {
  color: var(--teal-600);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--gray-100);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gray-800);
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 20px;
  border-top: 1px solid var(--gray-200);
}

.mobile-panel a {
  display: block;
  padding: 10px 0;
  color: var(--gray-700);
  font-weight: 650;
}

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

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: linear-gradient(135deg, #134e4a, #164e63);
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 30%, rgba(20, 184, 166, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(9, 33, 38, 0.88), rgba(9, 33, 38, 0.68) 44%, rgba(9, 33, 38, 0.20));
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100% - var(--max-width)) / 2));
  top: 50%;
  width: min(680px, calc(100% - 48px));
  transform: translateY(-52%);
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.92);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(20, 184, 166, 0.28);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-meta,
.hero-tags,
.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.78);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.hero-tags {
  margin: 18px 0 28px;
}

.hero-tags span,
.tag-row span,
.tag-list span,
.ranking-tags span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.94);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(13, 148, 136, 0.28);
}

.btn-primary:hover {
  background: var(--teal-700);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-soft {
  background: var(--teal-50);
  color: var(--teal-700);
}

.hero-tools {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 4;
  width: min(var(--max-width), calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  align-items: center;
  gap: 20px;
}

.hero-search {
  display: flex;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-xl);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 18px;
  outline: none;
  color: var(--gray-800);
}

.hero-search button {
  border: 0;
  padding: 0 22px;
  background: var(--teal-600);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.hero-category-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.hero-category-links a {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-controls {
  position: absolute;
  right: max(20px, calc((100% - var(--max-width)) / 2));
  top: 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(-50%);
}

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

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

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

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

.hero-dot.active {
  width: 28px;
  background: var(--white);
}

.section {
  padding: 72px 0;
  background: var(--white);
}

.section-alt {
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
}

.section-inner,
.detail-wrap {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--teal-600);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section h2,
.section-head h2,
.page-hero h1,
.detail-content h1,
.detail-content h2,
.side-card h2,
.filter-panel h2 {
  margin: 0;
  color: var(--gray-900);
  line-height: 1.18;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.03em;
}

.section-desc,
.page-hero p {
  color: var(--gray-600);
  font-size: 17px;
}

.text-link {
  color: var(--teal-600);
  font-weight: 800;
}

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

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

.movie-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

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

.poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--gray-200);
}

.movie-card-small .poster-wrap {
  aspect-ratio: 3 / 4;
}

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

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

.poster-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.movie-card:hover .poster-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.40);
}

.play-bubble,
.play-large {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(13, 148, 136, 0.36);
}

.play-bubble {
  width: 48px;
  height: 48px;
  font-size: 18px;
}

.movie-type,
.movie-year {
  position: absolute;
  top: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 7px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.movie-type {
  left: 10px;
  background: rgba(0, 0, 0, 0.72);
}

.movie-year {
  right: 10px;
  background: rgba(13, 148, 136, 0.92);
}

.movie-body {
  padding: 16px;
}

.movie-title {
  margin: 0 0 8px;
  min-height: 48px;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-title {
  color: var(--teal-600);
}

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

.movie-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--gray-500);
  font-size: 13px;
}

.tag-row,
.tag-list,
.ranking-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.ranking-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 42px;
  align-items: start;
}

.rank-list,
.ranking-page-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.rank-list li a,
.ranking-item a {
  display: grid;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-list li a {
  grid-template-columns: 42px 56px 1fr auto;
  padding: 12px;
}

.rank-list li a:hover,
.ranking-item a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.rank-list img,
.ranking-item img {
  width: 56px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--gray-200);
}

.rank-no,
.ranking-number {
  color: var(--teal-600);
  font-weight: 900;
  text-align: center;
}

.rank-title {
  font-weight: 850;
}

.rank-meta {
  color: var(--gray-500);
  font-size: 13px;
}

.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.18), transparent 34%),
    linear-gradient(135deg, var(--teal-50), #eff6ff);
  padding: 72px 0;
}

.page-hero-compact {
  padding: 54px 0;
}

.page-hero-inner {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--gray-500);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--teal-600);
  font-weight: 700;
}

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

.category-card a {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-cover {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--gray-200);
}

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

.category-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.08));
}

.category-cover span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.category-card p {
  margin: 18px 18px 14px;
  color: var(--gray-600);
}

.category-preview,
.compact-list {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.compact-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--gray-800);
  font-weight: 750;
}

.compact-card img {
  width: 44px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--gray-200);
}

.compact-card span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.filter-panel h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px auto;
  gap: 14px;
  align-items: end;
}

.filter-controls label {
  display: grid;
  gap: 8px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 800;
}

.filter-controls input,
.filter-controls select {
  min-height: 46px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--gray-50);
  color: var(--gray-900);
  padding: 0 14px;
  outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.movie-card.is-hidden,
.ranking-item.is-hidden {
  display: none;
}

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

.ranking-item a {
  grid-template-columns: 58px 76px 1fr auto;
  padding: 14px 18px;
}

.ranking-info {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ranking-info strong {
  font-size: 18px;
}

.ranking-info em {
  overflow: hidden;
  color: var(--gray-600);
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-info span {
  color: var(--gray-500);
  font-size: 13px;
}

.detail-wrap {
  padding: 34px 0 72px;
}

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

.detail-main,
.detail-side,
.detail-content,
.side-card {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000000;
  box-shadow: var(--shadow-xl);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000000;
  cursor: pointer;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.player-cover-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(20, 184, 166, 0.18), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.22));
}

.play-large {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  font-size: 26px;
}

.detail-content {
  margin-top: 24px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.detail-content h1 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.03em;
}

.detail-content h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 24px;
}

.detail-content p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
}

.detail-lead {
  margin: 18px 0 0 !important;
  color: var(--gray-800) !important;
  font-size: 19px !important;
  font-weight: 700;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-weight: 800;
}

.related-grid {
  margin-top: 16px;
}

.detail-side {
  display: grid;
  gap: 20px;
}

.side-card {
  padding: 20px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.side-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 16px;
  background: var(--gray-200);
}

.side-poster h2 {
  margin-top: 16px;
  font-size: 24px;
}

.side-poster p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.info-list dt {
  color: var(--gray-500);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  color: var(--gray-800);
}

.site-footer {
  background: var(--gray-900);
  color: #cbd5e1;
}

.footer-inner {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}

.brand-footer {
  color: var(--white);
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
  color: #cbd5e1;
}

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

.footer-links h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 18px;
}

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

.footer-bottom {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: #94a3b8;
  font-size: 14px;
}

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

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

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

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

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

  .mobile-toggle {
    display: block;
  }

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

  .hero {
    min-height: 720px;
  }

  .hero-content {
    top: 42%;
  }

  .hero-tools {
    grid-template-columns: 1fr;
    bottom: 24px;
  }

  .hero-category-links {
    justify-content: flex-start;
  }

  .hero-controls {
    top: auto;
    right: 24px;
    bottom: 144px;
    transform: none;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .ranking-item a {
    grid-template-columns: 46px 58px 1fr;
  }

  .ranking-tags,
  .rank-meta {
    display: none;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav-inner {
    height: 64px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions .btn,
  .page-actions .btn {
    width: 100%;
  }

  .hero-search {
    height: 48px;
  }

  .hero-search button {
    padding: 0 16px;
  }

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

  .movie-body {
    padding: 12px;
  }

  .movie-title {
    min-height: 42px;
    font-size: 16px;
  }

  .movie-line,
  .tag-row {
    display: none;
  }

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

  .rank-list li a {
    grid-template-columns: 34px 48px 1fr;
  }

  .rank-list img {
    width: 48px;
    height: 64px;
  }

  .detail-content {
    padding: 22px;
  }

  .play-large {
    width: 64px;
    height: 64px;
  }
}
