* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #0f172a;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f8fafc 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(13, 148, 136, 0.96), rgba(8, 145, 178, 0.96), rgba(37, 99, 235, 0.96));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(3deg);
}

.brand-text strong {
  display: block;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.brand-text small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

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

.nav-link,
.mobile-link {
  color: #ffffff;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  background: rgba(255, 255, 255, 0.18);
}

.top-search,
.mobile-search,
.hero-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.hero-search input,
.filter-panel input {
  border: 0;
  outline: 0;
  border-radius: 14px;
}

.top-search input {
  width: 250px;
  padding: 10px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.top-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.top-search button,
.mobile-search button,
.hero-search button,
.btn-primary,
.btn-secondary,
.category-enter {
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-search button,
.mobile-search button {
  padding: 10px 14px;
  color: #0f766e;
  background: #ffffff;
}

.top-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.btn-primary:hover,
.category-enter:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 20px 18px;
}

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

.mobile-menu nav {
  display: grid;
  gap: 8px;
  width: min(1180px, 100%);
  margin: 12px auto 0;
}

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

.mobile-search {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.mobile-search input {
  flex: 1;
  padding: 12px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: #020617;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

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

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

.hero-slide.is-active img {
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.09);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.56) 46%, rgba(2, 6, 23, 0.18) 100%), linear-gradient(0deg, rgba(2, 6, 23, 0.8), transparent 48%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 142px;
  width: min(680px, calc(100% - 48px));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #14b8a6, #06b6d4);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-content h1,
.page-hero h1,
.detail-head h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-content p,
.page-hero p,
.detail-head p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

.hero-meta,
.card-meta,
.rank-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta {
  margin: 20px 0 0;
}

.hero-meta span {
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

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

.btn-primary,
.btn-secondary,
.category-enter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
}

.btn-primary,
.category-enter {
  color: #ffffff;
  background: linear-gradient(135deg, #0d9488, #06b6d4);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.26);
}

.hero-panel {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.55);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-search input {
  flex: 1;
  min-height: 50px;
  padding: 0 16px;
}

.hero-search button {
  min-height: 50px;
  padding: 0 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #0d9488, #06b6d4);
}

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

.hero-quick-links a {
  padding: 10px 13px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-quick-links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.24);
}

.hero-dots {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 145px;
  display: flex;
  gap: 8px;
}

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

.hero-dot.is-active {
  background: #ffffff;
}

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

.stack-large {
  display: grid;
  gap: 72px;
  padding: 72px 0;
}

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

.section-heading h2,
.filter-panel h2,
.content-card h2,
.aside-card h2,
.category-card-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.section-heading p,
.filter-panel p,
.category-card-head p {
  margin: 8px 0 0;
  color: #64748b;
  line-height: 1.7;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0d9488;
  font-weight: 900;
}

.section-link span {
  transition: transform 0.2s ease;
}

.section-link:hover span {
  transform: translateX(4px);
}

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

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

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

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

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

.soft-section,
.blue-section,
.warm-section,
.filter-panel {
  border-radius: 32px;
  padding: clamp(24px, 4vw, 42px);
}

.soft-section {
  background: linear-gradient(135deg, #ecfeff, #f0fdfa);
}

.blue-section {
  background: linear-gradient(135deg, #eff6ff, #ecfeff, #f0fdfa);
}

.warm-section {
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.movie-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.17);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #164e63);
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.card-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.26);
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  backdrop-filter: blur(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.68);
  font-size: 12px;
}

.card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover .card-title,
.rank-title:hover,
.category-card-head h2 a:hover {
  color: #0d9488;
}

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  margin: 0;
  color: #64748b;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-tags,
.tag-cloud,
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-tags span,
.tag-cloud span,
.filter-chips button {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
  font-size: 12px;
  font-weight: 800;
}

.card-tags span,
.tag-cloud span {
  padding: 5px 9px;
}

.card-meta,
.rank-meta {
  color: #64748b;
  font-size: 13px;
}

.card-meta span + span::before,
.rank-meta span + span::before {
  content: "•";
  margin-right: 10px;
  color: #94a3b8;
}

.movie-card-horizontal {
  flex-direction: row;
}

.movie-card-horizontal .card-cover {
  width: 42%;
  flex: 0 0 42%;
  aspect-ratio: auto;
}

.movie-card-horizontal .card-body {
  align-content: center;
}

.rank-section {
  position: relative;
}

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

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

.rank-card {
  display: grid;
  grid-template-columns: 54px 118px 1fr;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.10);
}

.rank-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  font-size: 22px;
  font-weight: 900;
}

.rank-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: #0f172a;
}

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

.rank-main {
  min-width: 0;
}

.rank-title {
  display: block;
  overflow: hidden;
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-main p {
  display: -webkit-box;
  overflow: hidden;
  margin: 6px 0 8px;
  color: #64748b;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.category-grid,
.category-large-grid {
  display: grid;
  gap: 22px;
}

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

.category-tile,
.category-card-large {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.category-tile > a {
  display: block;
  padding: 22px;
}

.category-tile span,
.category-card-head span {
  color: #0d9488;
  font-weight: 900;
}

.category-tile strong {
  display: block;
  margin: 8px 0;
  color: #0f172a;
  font-size: 20px;
}

.category-tile p {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}

.mini-links {
  display: grid;
  gap: 8px;
  padding: 0 22px 22px;
}

.mini-links a {
  overflow: hidden;
  color: #475569;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-links a:hover {
  color: #0d9488;
}

.page-hero,
.detail-head {
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(45, 212, 191, 0.32), transparent 34%), linear-gradient(120deg, #0f766e, #0891b2 52%, #1d4ed8);
}

.page-hero {
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
}

.page-hero > div {
  max-width: 860px;
}

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

.category-card-large {
  display: grid;
  gap: 20px;
  padding: 26px;
}

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

.category-preview a {
  min-width: 0;
}

.category-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  background: #0f172a;
}

.category-preview span {
  display: block;
  overflow: hidden;
  margin-top: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-enter {
  justify-self: start;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
}

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

.filter-panel {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 22px;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.filter-panel input {
  width: 100%;
  padding: 15px 18px;
  color: #0f172a;
  background: #f1f5f9;
}

.filter-chips {
  grid-column: 1 / -1;
}

.filter-chips button {
  border: 0;
  padding: 8px 12px;
  cursor: pointer;
}

.filter-chips button.is-active,
.filter-chips button:hover {
  color: #ffffff;
  background: #0d9488;
}

.empty-state {
  display: none;
  margin: 28px 0 0;
  padding: 24px;
  border-radius: 18px;
  color: #64748b;
  text-align: center;
  background: #ffffff;
}

.empty-state.is-visible {
  display: block;
}

.detail-head {
  padding: 48px 0 60px;
}

.detail-head-inner {
  display: grid;
  gap: 22px;
}

.detail-title-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding: 42px 0 72px;
}

.player-column {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #020617;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
  aspect-ratio: 16 / 9;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.28), rgba(2, 6, 23, 0.72));
  cursor: pointer;
}

.player-cover[hidden] {
  display: none;
}

.player-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  font-size: 34px;
}

.player-cover strong {
  font-size: 20px;
}

.content-card,
.aside-card {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.content-card {
  padding: clamp(22px, 4vw, 34px);
}

.content-card p {
  margin: 16px 0 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.9;
}

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

.detail-poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
  background: #0f172a;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.aside-card {
  padding: 22px;
}

.aside-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px 14px;
  margin: 18px 0 0;
}

.aside-card dt {
  color: #64748b;
}

.aside-card dd {
  margin: 0;
  color: #0f172a;
  font-weight: 800;
}

.aside-card a {
  color: #0d9488;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(135deg, #0f172a, #134e4a, #0f172a);
}

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

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

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

.site-footer p {
  max-width: 480px;
  margin: 0;
  line-height: 1.8;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 8px 0;
  color: #cbd5e1;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 34px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

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

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

  .detail-aside {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }
}

@media (max-width: 820px) {
  .hero-carousel {
    min-height: 700px;
  }

  .hero-content {
    bottom: 230px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-dots {
    left: max(24px, calc((100vw - 1180px) / 2));
    right: auto;
    bottom: 198px;
  }

  .grid-3,
  .grid-4,
  .poster-grid,
  .list-grid,
  .rank-list.compact,
  .category-large-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .rank-card {
    grid-template-columns: 42px 96px 1fr;
    gap: 12px;
  }

  .rank-number {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

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

@media (max-width: 560px) {
  .nav-wrap {
    min-height: 64px;
  }

  .brand-text small {
    display: none;
  }

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

  .hero-carousel {
    min-height: 680px;
  }

  .hero-content {
    bottom: 248px;
  }

  .hero-panel {
    bottom: 18px;
    padding: 14px;
  }

  .hero-search {
    display: grid;
  }

  .hero-search button {
    width: 100%;
  }

  .hero-dots {
    bottom: 214px;
  }

  .grid-3,
  .grid-4,
  .poster-grid,
  .list-grid,
  .category-grid,
  .category-large-grid,
  .category-preview {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal {
    flex-direction: column;
  }

  .movie-card-horizontal .card-cover {
    width: 100%;
    flex-basis: auto;
    aspect-ratio: 16 / 9;
  }

  .rank-card {
    grid-template-columns: 36px 1fr;
  }

  .rank-thumb {
    display: none;
  }

  .stack-large {
    gap: 48px;
    padding: 48px 0;
  }

  .page-hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
