:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --cyan: #0891b2;
  --blue: #1d4ed8;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --paper: #ffffff;
  --warm: #fff7ed;
  --danger: #ef4444;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f3f7fb;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, var(--teal-dark), var(--cyan), var(--blue));
  box-shadow: 0 12px 30px rgba(8, 47, 73, 0.18);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark,
.footer-brand span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: #0f766e;
  background: #fff;
  box-shadow: inset 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.brand-text strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.brand-text small {
  display: block;
  color: #ccfbf1;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-dropdown > a {
  color: #ecfeff;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.nav-dropdown:hover > a {
  color: #fde68a;
}

.nav-dropdown {
  position: relative;
  padding: 24px 0;
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  top: 68px;
  width: 190px;
  padding: 8px;
  color: #1f2937;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
}

.dropdown-menu a:hover {
  color: var(--teal-dark);
  background: #ecfeff;
}

.header-search {
  position: relative;
  width: 260px;
}

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 999px;
  outline: none;
  background: #fff;
  color: #1f2937;
  box-shadow: 0 0 0 0 rgba(45, 212, 191, 0);
  transition: 0.2s ease;
}

.header-search input {
  padding: 10px 44px 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: #5eead4;
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.24);
}

.header-search button {
  position: absolute;
  right: 6px;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #0f766e;
  background: #ecfeff;
  transform: translateY(-50%);
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 30px;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.mobile-search input {
  padding: 10px 14px;
}

.mobile-search button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #14b8a6;
  padding: 10px 18px;
}

.mobile-panel nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-panel nav a {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  color: #fff;
  background: linear-gradient(120deg, #0f172a, #0f766e);
}

.hero-stage {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

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

.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.05));
}

.hero-content {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100vw - 1180px) / 2));
  z-index: 2;
  width: min(620px, calc(100% - 48px));
  transform: translateY(-50%);
}

.hero-kicker,
.section-head p,
.page-hero p:first-child {
  margin: 0 0 12px;
  color: #99f6e4;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.05;
  font-weight: 800;
  text-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.hero h2 + p,
.hero h1 + h2 + p,
.hero h1 + p {
  margin: 0 0 22px;
  color: #e5e7eb;
  font-size: 18px;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.hero-tags span,
.tag-list a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #ecfeff;
  background: rgba(20, 184, 166, 0.72);
  padding: 6px 12px;
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: #14b8a6;
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.35);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  font-size: 36px;
  transform: translateY(-50%);
  transition: 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

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

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

.section {
  padding: 54px 0;
}

.section-warm {
  width: min(1180px, calc(100% - 32px));
  margin: 20px auto 0;
  border-radius: 30px;
  background: linear-gradient(135deg, #fff7ed, #fff1f2);
  padding: 40px;
}

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

.section-head.compact {
  align-items: center;
}

.section-head.more-space {
  margin-top: 48px;
}

.section-head p {
  margin-bottom: 4px;
  color: var(--teal);
}

.section-head h2 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
}

.section-head a {
  color: var(--teal-dark);
  font-weight: 700;
}

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

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

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

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

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 280px);
  gap: 18px;
  overflow-x: auto;
  padding: 0 0 14px;
}

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

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #0f172a, #0f766e);
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.movie-card-large .poster-frame {
  aspect-ratio: 16 / 9;
}

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
}

.type-badge,
.year-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-style: normal;
}

.type-badge {
  left: 10px;
  top: 10px;
  background: rgba(13, 148, 136, 0.9);
  padding: 4px 9px;
}

.year-badge {
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.72);
  padding: 4px 8px;
}

.rank-badge {
  left: 10px;
  bottom: 10px;
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #ef4444, #f97316);
  font-size: 18px;
}

.play-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.12);
  font-size: 44px;
  opacity: 0;
  transition: 0.25s ease;
}

.movie-info {
  display: block;
  padding: 12px 2px 0;
}

.movie-info strong {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-info em,
.card-desc,
.card-meta {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.card-desc {
  display: -webkit-box;
  min-height: 40px;
  margin-top: 6px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}

.card-meta i {
  font-style: normal;
}

.card-meta i:first-child {
  color: #ca8a04;
  font-weight: 700;
}

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

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

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

.movie-card:hover .movie-info strong {
  color: var(--teal-dark);
}

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

.rank-list-wide {
  grid-template-columns: 1fr;
}

.rank-row {
  display: grid;
  grid-template-columns: 54px 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: 0.2s ease;
}

.rank-row:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.rank-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #f97316);
  font-weight: 800;
  font-size: 20px;
}

.rank-row img {
  width: 96px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  background: #0f766e;
}

.rank-copy strong,
.rank-copy em,
.rank-copy span {
  display: block;
}

.rank-copy strong {
  color: #1f2937;
  font-weight: 800;
}

.rank-copy em,
.rank-copy span {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.rank-copy span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-score {
  color: #ca8a04;
  font-weight: 800;
}

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

.category-grid-large {
  margin-bottom: 54px;
}

.category-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #0f766e);
  box-shadow: var(--shadow-soft);
}

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.84), rgba(15, 118, 110, 0.2));
}

.category-copy {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
}

.category-copy strong,
.category-copy em {
  display: block;
}

.category-copy strong {
  font-size: 22px;
  font-weight: 800;
}

.category-copy em {
  color: #ccfbf1;
  font-size: 13px;
  font-style: normal;
}

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

.page-hero,
.detail-hero {
  color: #fff;
  background: radial-gradient(circle at 20% 20%, rgba(45, 212, 191, 0.32), transparent 28%), linear-gradient(120deg, #0f766e, #155e75, #1e3a8a);
  padding: 46px 0;
}

.page-hero h1,
.detail-side h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: #ccfbf1;
  font-size: 14px;
}

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

.filter-bar {
  display: flex;
  align-items: end;
  gap: 16px;
  margin-bottom: 26px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.filter-bar label {
  display: grid;
  gap: 8px;
  flex: 1;
  color: #374151;
  font-weight: 700;
}

.filter-bar input,
.filter-bar select {
  border-color: var(--line);
  border-radius: 14px;
  padding: 11px 12px;
}

.view-actions {
  display: flex;
  gap: 8px;
}

.view-actions button {
  border: 0;
  border-radius: 14px;
  padding: 11px 16px;
  color: #475569;
  background: #e5e7eb;
}

.view-actions button.is-active {
  color: #fff;
  background: var(--teal);
}

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

.category-list.is-list .movie-card {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.category-list.is-list .poster-frame {
  width: 130px;
  aspect-ratio: 3 / 4;
}

.category-list.is-list .movie-info {
  padding-top: 4px;
}

.category-list.is-list .movie-info strong {
  min-height: 0;
  font-size: 20px;
}

.search-page-form {
  display: flex;
  gap: 10px;
  width: min(620px, 100%);
  margin-top: 24px;
}

.search-page-form input {
  padding: 14px 18px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: stretch;
}

.player-card,
.detail-side,
.content-main,
.content-aside {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.player-card {
  padding: 12px;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  background: #020617;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.48), rgba(2, 6, 23, 0.08));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-cover span {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.9);
  box-shadow: 0 18px 45px rgba(20, 184, 166, 0.35);
  font-size: 38px;
  padding-left: 5px;
}

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

.detail-side {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
}

.detail-side img {
  width: 150px;
  height: 220px;
  border-radius: 18px;
  object-fit: cover;
  background: #0f766e;
}

.detail-side p {
  margin: 0 0 14px;
  color: #e0f2fe;
}

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

.detail-meta span {
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  font-size: 13px;
}

.detail-content {
  padding-top: 42px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  margin-bottom: 52px;
}

.content-main,
.content-aside {
  color: #1f2937;
  background: #fff;
  box-shadow: var(--shadow-soft);
  backdrop-filter: none;
}

.content-main {
  padding: 28px;
}

.content-main h2,
.content-aside h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.content-main p {
  margin: 0 0 24px;
  color: #374151;
  font-size: 16px;
}

.content-aside {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.content-aside a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--teal-dark);
  background: #ecfeff;
  font-weight: 700;
}

.related-section {
  margin-top: 20px;
}

.category-preview {
  margin-top: 46px;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, #1f2937, #111827);
  padding: 48px 0 26px;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 20px;
}

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

.site-footer p,
.site-footer li {
  margin: 0;
  color: #9ca3af;
  font-size: 14px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #2dd4bf;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9ca3af;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

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

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

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

@media (max-width: 760px) {
  .header-inner {
    min-height: 64px;
  }

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

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

  .hero-stage {
    height: 560px;
  }

  .hero-mask {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.18));
  }

  .hero-content {
    top: auto;
    bottom: 78px;
    left: 18px;
    width: calc(100% - 36px);
    transform: none;
  }

  .hero h1,
  .hero h2 {
    font-size: 36px;
  }

  .hero-arrow {
    display: none;
  }

  .section,
  .section-warm {
    padding: 34px 0;
  }

  .section-warm {
    width: min(100% - 24px, 1180px);
    padding: 28px 18px;
  }

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

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

  .rail {
    grid-auto-columns: 220px;
  }

  .rank-list {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 40px 82px minmax(0, 1fr);
  }

  .rank-score {
    display: none;
  }

  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .view-actions button {
    flex: 1;
  }

  .category-list.is-list .movie-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .category-list.is-list .poster-frame {
    width: 96px;
  }

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

  .detail-side img {
    width: 110px;
    height: 162px;
  }

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

  .content-main {
    padding: 22px;
  }
}

@media (max-width: 460px) {
  .movie-grid,
  .movie-grid-home,
  .preview-grid,
  .related-grid,
  .editor-grid,
  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .movie-info strong {
    font-size: 15px;
  }

  .card-desc {
    display: none;
  }

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

  .detail-side img {
    width: 160px;
    height: 230px;
  }
}
