:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-solid: #0f172a;
  --panel-light: rgba(30, 41, 59, 0.82);
  --border: rgba(103, 232, 249, 0.18);
  --border-strong: rgba(34, 211, 238, 0.36);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-dark: #0891b2;
  --blue: #3b82f6;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(34, 211, 238, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 10%, rgba(59, 130, 246, 0.16), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(51, 65, 85, 0.78);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  height: 68px;
  padding: 0 24px;
  margin: 0 auto;
}

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #001018;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.42);
}

.brand-text,
.footer-brand {
  font-size: 20px;
  color: transparent;
  background: linear-gradient(90deg, #67e8f9, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
}

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

.nav-link,
.mobile-link {
  color: #e5e7eb;
  border-radius: 10px;
  transition: 0.22s ease;
}

.nav-link {
  padding: 10px 14px;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover {
  color: #ffffff;
  background: rgba(51, 65, 85, 0.72);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.68);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 8px 24px 18px;
  border-top: 1px solid rgba(51, 65, 85, 0.8);
}

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

.mobile-link {
  padding: 12px 14px;
}

main {
  min-height: 72vh;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.42;
  pointer-events: none;
}

.hero-glow-one {
  top: 120px;
  left: 8%;
  background: rgba(34, 211, 238, 0.32);
}

.hero-glow-two {
  right: 10%;
  bottom: 90px;
  background: rgba(59, 130, 246, 0.32);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.54fr);
  align-items: center;
  gap: 54px;
  padding: 120px max(24px, calc((100vw - 1280px) / 2 + 24px)) 88px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.65s ease, transform 0.8s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

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

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  background: rgba(8, 145, 178, 0.12);
}

.hero h1,
.page-hero h1,
.detail-content h1 {
  margin: 0;
  color: #ffffff;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 6vw, 76px);
}

.hero h2 {
  margin: 18px 0 12px;
  color: var(--cyan);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
}

.hero p,
.page-hero p,
.section-heading p,
.detail-content p,
.category-overview-card p {
  color: var(--soft);
  line-height: 1.8;
}

.hero p {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: 18px;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  color: #bae6fd;
  font-size: 12px;
  border: 1px solid rgba(14, 116, 144, 0.48);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
}

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

.primary-button,
.ghost-button,
.search-form button,
.large-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  font-weight: 800;
  border-radius: 12px;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.primary-button,
.search-form button {
  color: #001018;
  background: linear-gradient(135deg, var(--cyan), #60a5fa);
  box-shadow: 0 18px 44px rgba(34, 211, 238, 0.24);
}

.ghost-button,
.large-search button {
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.72);
}

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

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(8, 145, 178, 0.34), rgba(30, 41, 59, 0.94));
  box-shadow: var(--shadow);
}

.hero-poster::after,
.poster::after,
.detail-poster::after,
.ranking-cover::after,
.compact-image::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: rgba(226, 232, 240, 0.5);
  font-weight: 800;
  letter-spacing: 0.12em;
  content: "MOVIE";
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.22), rgba(15, 23, 42, 0.12));
}

.hero-poster img,
.poster img,
.detail-poster img,
.ranking-cover img,
.compact-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.is-missing {
  display: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--text);
  font-size: 32px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(226, 232, 240, 0.44);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
}

.hero-dot.is-active {
  width: 34px;
  border-color: var(--cyan);
  background: var(--cyan);
}

.search-band,
.content-section,
.page-hero,
.detail-hero {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.search-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 28px;
  padding: 28px;
  margin-top: -44px;
  position: relative;
  z-index: 5;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-band h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.search-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.search-form,
.search-panel,
.filter-panel {
  display: flex;
  gap: 12px;
}

.search-form input,
.search-panel input,
.search-panel select,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 48px;
  color: var(--text);
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: 12px;
  outline: none;
  background: rgba(2, 6, 23, 0.72);
  padding: 0 14px;
}

.search-form input:focus,
.search-panel input:focus,
.search-panel select:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

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

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

.section-heading h2,
.category-overview-card .category-title-link,
.detail-text-grid h2 {
  margin: 0;
  color: #ffffff;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.section-heading p {
  max-width: 720px;
  margin: 8px 0 0;
}

.section-action {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: var(--cyan);
  font-weight: 800;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 12px;
  background: rgba(8, 145, 178, 0.1);
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.26s ease, background 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.movie-card:hover {
  border-color: rgba(34, 211, 238, 0.34);
  background: rgba(30, 41, 59, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-5px);
}

.poster-link,
.poster,
.detail-poster,
.ranking-cover,
.compact-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(8, 145, 178, 0.28), rgba(15, 23, 42, 0.94));
}

.poster {
  aspect-ratio: 16 / 10;
}

.poster img {
  transition: transform 0.45s ease;
}

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 48%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent);
}

.poster-year {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  padding: 5px 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
}

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

.movie-meta-row,
.detail-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.category-pill {
  color: var(--cyan);
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(8, 145, 178, 0.14);
}

.movie-card h2 {
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h2 a:hover,
.ranking-body a:hover,
.compact-card:hover strong,
.category-overview-card a:hover {
  color: var(--cyan);
}

.movie-card p {
  display: -webkit-box;
  min-height: 46px;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 34px;
}

.rank-list,
.category-grid.small,
.category-overview-grid {
  display: grid;
  gap: 14px;
}

.rank-item,
.category-card,
.category-overview-card,
.ranking-card,
.compact-card,
.detail-text-grid article,
.detail-side-card,
.player-card,
.filter-panel,
.search-panel {
  border: 1px solid rgba(51, 65, 85, 0.82);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.rank-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.rank-item span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #001018;
  font-weight: 900;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), #60a5fa);
}

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

.rank-item em {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.category-card {
  padding: 18px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover,
.category-overview-card:hover,
.ranking-card:hover,
.compact-card:hover {
  border-color: rgba(34, 211, 238, 0.34);
  transform: translateY(-3px);
}

.category-card span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.category-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-hero {
  padding: 128px 0 22px;
}

.compact-hero {
  max-width: 980px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.page-hero p {
  margin: 18px auto 0;
  max-width: 760px;
  font-size: 18px;
}

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

.category-overview-card {
  padding: 22px;
}

.category-title-link {
  display: inline-block;
  font-size: 24px;
  font-weight: 900;
}

.category-overview-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.category-overview-card li a {
  color: var(--soft);
  font-size: 14px;
}

.filter-panel,
.search-panel {
  padding: 14px;
  margin-bottom: 24px;
}

.large-search {
  grid-template-columns: minmax(0, 1fr) 200px 110px;
}

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

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

.ranking-card {
  display: grid;
  grid-template-columns: 62px 150px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.ranking-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #001018;
  font-weight: 900;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan), #60a5fa);
}

.ranking-cover {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
}

.ranking-body h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.ranking-body p {
  margin: 0 0 10px;
  color: var(--soft);
  line-height: 1.65;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.pagination a,
.pagination span {
  min-width: 42px;
  padding: 9px 12px;
  color: var(--soft);
  text-align: center;
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.78);
}

.pagination a.is-current,
.pagination a:hover {
  color: #001018;
  border-color: transparent;
  background: var(--cyan);
}

.detail-hero {
  padding-top: 98px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--cyan);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: stretch;
}

.player-card,
.detail-side-card {
  padding: 14px;
}

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

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  gap: 12px;
  place-items: center;
  align-content: center;
  color: #ffffff;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.82));
}

.player-card.is-playing .play-overlay {
  display: none;
}

.play-circle {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  padding-left: 4px;
  color: #001018;
  font-size: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), #60a5fa);
  box-shadow: 0 0 44px rgba(34, 211, 238, 0.36);
}

.play-overlay span:last-child {
  font-size: 18px;
  font-weight: 900;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  border-radius: 16px;
}

.detail-facts {
  margin-top: 14px;
}

.detail-facts span {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(51, 65, 85, 0.56);
}

.detail-content h1 {
  font-size: clamp(36px, 5vw, 62px);
}

.lead-text {
  max-width: 920px;
  margin: 18px 0 22px;
  font-size: 18px;
}

.detail-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.detail-text-grid article {
  padding: 24px;
}

.detail-text-grid h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.detail-text-grid p {
  margin: 0;
  text-align: justify;
}

.compact-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.compact-image {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
}

.compact-body strong,
.compact-body em,
.compact-body span {
  display: block;
}

.compact-body em {
  margin: 4px 0;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.compact-body span {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer {
  margin-top: 84px;
  border-top: 1px solid rgba(51, 65, 85, 0.78);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.94), #020617);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 36px;
  width: min(1280px, calc(100% - 48px));
  padding: 46px 0;
  margin: 0 auto;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
}

.footer-grid p {
  max-width: 460px;
  line-height: 1.75;
}

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

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

.footer-grid a:hover {
  color: var(--cyan);
}

.footer-bottom {
  width: min(1280px, calc(100% - 48px));
  padding: 18px 0 28px;
  margin: 0 auto;
  border-top: 1px solid rgba(51, 65, 85, 0.68);
  font-size: 14px;
}

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

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

  .hero-poster {
    max-width: 360px;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 860px;
  }

  .hero-slide {
    padding-top: 108px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .hero h2 {
    font-size: 30px;
  }

  .movie-grid,
  .category-overview-grid,
  .detail-text-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ranking-card {
    grid-template-columns: 48px minmax(86px, 120px) minmax(0, 1fr);
  }

  .large-search,
  .filter-panel,
  .search-panel,
  .search-form {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding: 0 16px;
  }

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

  .search-band,
  .content-section,
  .page-hero,
  .detail-hero,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, 1280px);
  }

  .hero {
    min-height: 820px;
  }

  .hero-slide {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-arrow {
    display: none;
  }

  .movie-grid,
  .category-overview-grid,
  .detail-text-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .ranking-cover {
    display: none;
  }

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

  .detail-side-card {
    max-width: 260px;
  }
}
