:root {
  --color-page: #f9fafb;
  --color-panel: #ffffff;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-soft: #e5e7eb;
  --color-emerald: #059669;
  --color-emerald-deep: #047857;
  --color-emerald-soft: #d1fae5;
  --color-dark: #0f172a;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.10);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-page);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(14px);
}

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

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-emerald), #10b981);
  box-shadow: 0 12px 24px rgba(5, 150, 105, 0.28);
  font-size: 14px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand-text em {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f3f4f6;
}

.nav-link,
.mobile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: #374151;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.active,
.mobile-link.active {
  color: #ffffff;
  background: var(--color-emerald);
}

.nav-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--color-dark);
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-search:hover {
  transform: translateY(-1px);
  background: #111827;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #111827;
  transition: 0.25s ease;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.hero-carousel {
  position: relative;
  height: 66vh;
  min-height: 480px;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #0f172a);
}

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 76px;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  color: #ffffff;
}

.hero-content h1 {
  max-width: 760px;
  margin: 14px 0 14px;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.hero-content p {
  max-width: 660px;
  margin: 0 0 26px;
  color: #e5e7eb;
  font-size: clamp(17px, 2.4vw, 22px);
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #065f46;
  background: var(--color-emerald-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-content .eyebrow,
.page-hero .eyebrow {
  color: #ffffff;
  background: rgba(16, 185, 129, 0.82);
  box-shadow: 0 10px 24px rgba(5, 150, 105, 0.25);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  color: #ffffff;
  background: var(--color-emerald);
  box-shadow: 0 16px 32px rgba(5, 150, 105, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  background: var(--color-emerald-deep);
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-light {
  color: var(--color-emerald-deep);
  background: var(--color-emerald-soft);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: min(1180px, calc(100% - 32px));
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

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

.hero-dot.active,
.hero-dot:hover {
  width: 58px;
  background: #10b981;
}

.intro-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -26px auto 34px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.intro-strip a {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background: linear-gradient(135deg, #059669, #10b981);
  font-size: 18px;
  font-weight: 800;
  box-shadow: var(--shadow-card);
  transition: 0.25s ease;
}

.intro-strip a:hover {
  transform: translateY(-3px);
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  margin: 0 0 34px;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.34), transparent 36%), linear-gradient(135deg, #111827, #0f172a);
  color: #ffffff;
}

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

.page-hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: #d1d5db;
  font-size: 18px;
}

.small-hero,
.category-hero,
.rank-hero,
.search-hero {
  min-height: 280px;
}

.content-section,
.search-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 44px;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 24px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.search-panel h2,
.section-head h2,
.split-right h2,
.story-card h2 {
  margin: 0;
  color: var(--color-text);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.search-panel p,
.section-head p,
.split-right p,
.story-card p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

.search-box {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--color-soft);
  border-radius: 14px;
  background: #f9fafb;
}

.search-box span {
  color: var(--color-emerald);
  font-size: 22px;
  font-weight: 800;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-text);
}

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

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

.section-link {
  color: var(--color-emerald-deep);
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: 0.28s ease;
}

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

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

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

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

.movie-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.poster-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.30);
  font-size: 42px;
  opacity: 0;
  transition: 0.28s ease;
}

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

.movie-card-body {
  padding: 15px;
}

.movie-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: 0.25s ease;
}

.movie-title:hover {
  color: var(--color-emerald);
}

.movie-desc {
  display: -webkit-box;
  height: 42px;
  margin: 8px 0 12px;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #4b5563;
  font-size: 13px;
}

.movie-meta span,
.detail-meta span {
  padding: 4px 8px;
  border-radius: 8px;
  background: #f3f4f6;
}

.movie-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.movie-tags span {
  padding: 4px 9px;
  border-radius: 999px;
  color: #047857;
  background: #ecfdf5;
  font-size: 12px;
  font-weight: 800;
}

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

.category-tile {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 20px;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.category-tile img,
.category-tile-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-tile img {
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.category-tile-shade {
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.16));
}

.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
}

.category-tile strong {
  font-size: 22px;
  font-weight: 900;
}

.category-tile em {
  margin-top: 8px;
  font-style: normal;
  color: #d1d5db;
  font-size: 13px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
}

.split-left,
.split-right,
.story-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.split-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.full-rank-list {
  gap: 14px;
}

.rank-card {
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

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

.rank-card-link {
  min-height: 96px;
  display: grid;
  grid-template-columns: 54px 96px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 14px;
}

.rank-number {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: var(--color-emerald);
  font-weight: 900;
}

.rank-small {
  font-size: 13px;
}

.rank-card img {
  width: 96px;
  height: 68px;
  border-radius: 12px;
  object-fit: cover;
}

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

.rank-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
}

.rank-info em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 13px;
  font-style: normal;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.rank-info span,
.rank-views {
  color: #6b7280;
  font-size: 13px;
}

.rank-views {
  min-width: 60px;
  font-weight: 900;
  text-align: right;
}

.featured-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 300px;
  border-radius: var(--radius-lg);
  color: #ffffff;
}

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

.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 62%);
}

.featured-card span {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 22px;
}

.featured-card strong,
.featured-card em {
  display: block;
}

.featured-card strong {
  font-size: 26px;
  font-weight: 900;
}

.featured-card em {
  margin-top: 6px;
  color: #d1d5db;
  font-style: normal;
}

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

.category-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.category-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  overflow: hidden;
  border-radius: 16px;
  background: #e5e7eb;
}

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

.category-card-body h2 {
  margin: 4px 0 8px;
  font-size: 24px;
}

.category-card-body p {
  margin: 0 0 14px;
  color: var(--color-muted);
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.category-links a {
  padding: 6px 9px;
  border-radius: 999px;
  color: #047857;
  background: #ecfdf5;
  font-size: 12px;
  font-weight: 800;
}

.detail-top {
  padding: 22px 0 0;
  background: linear-gradient(180deg, #ffffff, #f9fafb);
}

.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--color-emerald-deep);
  font-weight: 800;
}

.detail-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 24px;
}

.detail-player-card,
.detail-side {
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.detail-player-card {
  overflow: hidden;
}

.player-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

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

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(5, 150, 105, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.25s ease;
}

.player-start:hover {
  background: var(--color-emerald-deep);
  transform: translate(-50%, -50%) scale(1.04);
}

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

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

.detail-side {
  padding: 18px;
}

.detail-side img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}

.detail-side h1 {
  margin: 14px 0 10px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.detail-side p {
  margin: 0 0 16px;
  color: var(--color-muted);
}

.detail-content {
  display: grid;
  gap: 18px;
}

.story-card p {
  color: #374151;
  font-size: 16px;
  line-height: 1.85;
}

.story-card h2 + p {
  margin-bottom: 24px;
}

.detail-tags {
  margin-top: 6px;
}

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

.next-prev a {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.next-prev span {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.next-prev strong {
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.site-footer {
  margin-top: 60px;
  color: #d1d5db;
  background: #111827;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(2, minmax(160px, 0.65fr));
  gap: 34px;
}

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

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

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 16px;
}

.footer-column a {
  color: #9ca3af;
  transition: 0.25s ease;
}

.footer-column a:hover {
  color: #34d399;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6b7280;
  text-align: center;
}

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

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

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

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

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

  .detail-side img {
    margin: 0;
  }
}

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

  .menu-toggle {
    display: block;
  }

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

  .hero-carousel {
    height: 72vh;
    min-height: 540px;
  }

  .hero-content {
    bottom: 86px;
  }

  .intro-strip,
  .search-panel,
  .footer-inner,
  .next-prev {
    grid-template-columns: 1fr;
  }

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

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

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

  .category-cover img {
    height: 140px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    width: min(100% - 22px, 1180px);
  }

  .brand-text strong {
    font-size: 18px;
  }

  .hero-content,
  .hero-dots,
  .content-section,
  .search-panel,
  .page-hero > div,
  .detail-layout,
  .breadcrumb,
  .footer-inner,
  .footer-bottom,
  .intro-strip {
    width: min(100% - 22px, 1180px);
  }

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

  .hero-content p {
    font-size: 16px;
  }

  .intro-strip a {
    min-height: 58px;
    font-size: 16px;
  }

  .movie-grid,
  .large-grid,
  .related-grid,
  .category-grid {
    gap: 14px;
  }

  .movie-card-body {
    padding: 12px;
  }

  .movie-title {
    min-height: 44px;
    font-size: 15px;
  }

  .movie-desc {
    display: none;
  }

  .rank-card-link {
    grid-template-columns: 44px 74px minmax(0, 1fr);
  }

  .rank-card img {
    width: 74px;
    height: 58px;
  }

  .rank-views {
    display: none;
  }

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

  .detail-side h1 {
    font-size: 22px;
  }

  .player-start {
    min-height: 46px;
    padding: 0 18px;
  }
}
