* {
  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: #111827;
  background: linear-gradient(180deg, #fff7ed 0%, #fff1f2 42%, #ffffff 100%);
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(244, 63, 94, 0.14);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 74px;
  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: 900;
  color: #9f1239;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #e11d48, #f97316);
  box-shadow: 0 16px 36px rgba(225, 29, 72, 0.28);
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: #4b5563;
  font-weight: 700;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #e11d48;
  background: #fff1f2;
}

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

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #be123c;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #111827;
}

.hero-track {
  position: relative;
  height: 640px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-bg,
.category-hero img,
.ranking-hero img,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 22%, rgba(251, 113, 133, 0.38), transparent 30%),
    linear-gradient(90deg, rgba(159, 18, 57, 0.94), rgba(225, 29, 72, 0.74) 42%, rgba(249, 115, 22, 0.70));
}

.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 360px;
  align-items: center;
  gap: 60px;
  color: #ffffff;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  color: #e11d48;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe4e6;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 44px);
  color: #ffe4e6;
}

.hero p {
  max-width: 660px;
  margin: 0 0 24px;
  color: #fff1f2;
  font-size: 20px;
  line-height: 1.8;
}

.hero-tags,
.detail-tags,
.movie-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #be123c;
  background: #fff1f2;
  border: 1px solid rgba(225, 29, 72, 0.12);
  font-size: 12px;
  font-weight: 800;
}

.hero .tag,
.detail-hero .tag {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #e11d48, #f97316);
  box-shadow: 0 16px 38px rgba(225, 29, 72, 0.28);
}

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

.btn.small {
  min-height: 40px;
  padding: 0 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #e11d48, #f97316);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(17, 24, 39, 0.35);
  transform: rotate(2deg);
}

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

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

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

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

.search-panel {
  position: relative;
  z-index: 12;
  margin-top: -42px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(225, 29, 72, 0.18);
  backdrop-filter: blur(18px);
}

.search-box {
  display: flex;
  gap: 12px;
}

.search-box input {
  flex: 1;
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  border: 2px solid #ffe4e6;
  border-radius: 999px;
  outline: 0;
  background: #ffffff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.search-box input:focus {
  border-color: #fb7185;
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.18);
}

.search-box button {
  min-width: 110px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #e11d48, #f97316);
  cursor: pointer;
}

.search-box.inline {
  width: min(720px, 100%);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.quick-links a,
.filter-buttons button {
  padding: 9px 14px;
  border: 1px solid #ffe4e6;
  border-radius: 999px;
  color: #9f1239;
  background: #fff7ed;
  font-weight: 800;
}

.section-block {
  padding: 72px 0 0;
}

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

.section-heading h2 {
  margin: 4px 0 8px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 650px;
  margin: 0;
  color: #6b7280;
  line-height: 1.8;
}

.compact-heading {
  align-items: center;
  margin-bottom: 20px;
}

.section-link {
  flex: 0 0 auto;
  color: #e11d48;
  font-weight: 900;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(244, 63, 94, 0.08);
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(225, 29, 72, 0.16);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe4e6, #fed7aa);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.66));
  transition: opacity 0.25s ease;
}

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

.poster-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 34px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #e11d48, #f97316);
  font-size: 13px;
  font-weight: 900;
  transform: translateY(12px);
  opacity: 0;
  transition: 0.25s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translateY(0);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #e11d48);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.2);
}

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

.movie-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #e11d48;
  font-size: 12px;
  font-weight: 900;
}

.movie-card h3 {
  margin: 9px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: #e11d48;
}

.movie-card p {
  min-height: 66px;
  margin: 0 0 14px;
  color: #6b7280;
  line-height: 1.62;
  font-size: 14px;
}

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

.category-tile {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: 24px;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

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

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

.tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(159, 18, 57, 0.82));
}

.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 18px;
}

.category-tile strong {
  margin-top: 82px;
  font-size: 22px;
  font-style: normal;
}

.category-tile em {
  margin-top: 6px;
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
  color: #ffe4e6;
}

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

.split-section .section-block {
  padding-top: 72px;
}

.ranking-card {
  position: sticky;
  top: 96px;
  margin-top: 72px;
  padding: 22px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
}

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

.rank-list.small {
  gap: 12px;
}

.rank-item {
  display: grid;
  grid-template-columns: 92px 52px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #ffe4e6;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.rank-list.small .rank-item {
  grid-template-columns: 56px 34px minmax(0, 1fr);
  gap: 10px;
  padding: 9px;
  box-shadow: none;
}

.rank-cover {
  overflow: hidden;
  border-radius: 16px;
  background: #fff1f2;
}

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

.rank-number {
  color: #e11d48;
  font-size: 24px;
  font-weight: 900;
}

.rank-list.small .rank-number {
  font-size: 16px;
}

.rank-content h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rank-list.small .rank-content h3 {
  font-size: 14px;
}

.rank-content p {
  margin: 0 0 8px;
  color: #6b7280;
  line-height: 1.55;
}

.rank-list.small .rank-content p {
  display: none;
}

.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #9f1239;
  font-size: 13px;
  font-weight: 800;
}

.sub-hero,
.category-hero,
.ranking-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
}

.sub-hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 80% 20%, rgba(251, 113, 133, 0.24), transparent 28%),
    linear-gradient(135deg, #fff1f2, #fff7ed);
}

.sub-hero h1,
.category-hero h1,
.ranking-hero h1 {
  margin: 8px 0 14px;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.sub-hero p,
.category-hero p,
.ranking-hero p {
  max-width: 780px;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.8;
}

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

.category-card-large {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  align-self: stretch;
}

.category-cover-stack img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  border-radius: 18px;
}

.category-card-large h2 {
  margin: 6px 0 10px;
  font-size: 28px;
}

.category-card-large p {
  color: #6b7280;
  line-height: 1.8;
}

.category-hero,
.ranking-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #111827;
}

.category-hero-shade,
.ranking-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(159, 18, 57, 0.94), rgba(249, 115, 22, 0.66));
}

.category-hero-content,
.ranking-hero-content {
  position: relative;
  z-index: 2;
}

.category-hero .section-kicker,
.ranking-hero .section-kicker {
  color: #ffe4e6;
}

.category-hero p,
.ranking-hero p {
  color: #fff1f2;
}

.filter-bar {
  display: grid;
  gap: 16px;
  padding: 28px;
  margin-top: 34px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.filter-bar.full {
  margin-top: -30px;
  position: relative;
  z-index: 4;
}

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

.filter-buttons button {
  cursor: pointer;
}

.filter-buttons button.active {
  color: #ffffff;
  border-color: #e11d48;
  background: linear-gradient(135deg, #e11d48, #f97316);
}

.empty-message {
  display: none;
  padding: 30px;
  text-align: center;
  color: #9f1239;
  font-weight: 900;
}

.empty-message.visible {
  display: block;
}

.detail-hero {
  min-height: 620px;
  color: #ffffff;
  background: #111827;
}

.detail-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(159, 18, 57, 0.82), rgba(249, 115, 22, 0.48)),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.24), transparent 24%);
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 44px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 30px;
  color: #ffe4e6;
  font-weight: 700;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

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

.detail-info h1 {
  margin: 8px 0 18px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 780px;
  color: #fff1f2;
  font-size: 20px;
  line-height: 1.8;
}

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

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.player-section {
  margin-top: -64px;
  position: relative;
  z-index: 8;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #030712;
  box-shadow: 0 36px 90px rgba(17, 24, 39, 0.24);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.16), rgba(0, 0, 0, 0.38));
  cursor: pointer;
}

.video-shell.is-playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e11d48, #f97316);
  box-shadow: 0 18px 44px rgba(225, 29, 72, 0.35);
}

.play-icon::before {
  content: "";
  margin-left: 6px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #ffffff;
}

.play-overlay strong {
  font-size: 22px;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  padding-top: 50px;
}

.content-card {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.content-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.9;
}

.info-table {
  grid-column: 1 / -1;
}

.info-table dl {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px 18px;
  margin: 0;
}

.info-table dt {
  color: #9f1239;
  font-weight: 900;
}

.info-table dd {
  margin: 0;
  color: #374151;
}

.site-footer {
  margin-top: 86px;
  color: #ffe4e6;
  background: linear-gradient(135deg, #9f1239, #ea580c);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 32px;
}

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

.site-footer p {
  max-width: 680px;
  color: #ffe4e6;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

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

  .hero-poster {
    display: none;
  }

  .ranking-card {
    position: static;
  }

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

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

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

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.16);
  }

  .main-nav.open {
    display: grid;
  }

  .hero,
  .hero-track {
    height: auto;
    min-height: 640px;
  }

  .hero-slide {
    min-height: 640px;
  }

  .hero-content {
    padding: 70px 0 110px;
  }

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

  .hero p,
  .detail-one-line {
    font-size: 16px;
  }

  .search-panel {
    margin-top: -28px;
  }

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

  .search-box button {
    min-height: 48px;
  }

  .section-heading {
    display: block;
  }

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

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

  .movie-card p {
    min-height: auto;
  }

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

  .category-cover-stack img {
    min-height: 100px;
  }

  .rank-item {
    grid-template-columns: 74px 38px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-content p,
  .rank-meta {
    display: none;
  }

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

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

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

@media (max-width: 480px) {
  .container,
  .header-inner,
  .footer-inner {
    width: min(100% - 22px, 1180px);
  }

  .movie-grid.five,
  .movie-grid.four,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .detail-meta span {
    font-size: 13px;
  }
}
