* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: #1f2937;
  background: #fff7ed;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #ea580c, #f59e0b, #eab308);
  color: #fff;
  box-shadow: 0 12px 34px rgba(194, 65, 12, 0.22);
}

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

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

.brand-icon,
.footer-brand span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #f97316;
  box-shadow: 0 10px 24px rgba(124, 45, 18, 0.2);
}

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

.brand-text small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #ffedd5;
}

.header-search {
  flex: 1;
  max-width: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
}

.header-search input,
.mobile-search input,
.search-page-form input {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 13px 18px;
  font-size: 15px;
  background: transparent;
  color: #1f2937;
}

.header-search button,
.mobile-search button,
.search-page-form button {
  border: 0;
  cursor: pointer;
  padding: 13px 22px;
  font-weight: 700;
  color: #fff;
  background: #ea580c;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
}

.nav-link {
  color: #fff7ed;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 24px;
}

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

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

.mobile-panel a {
  display: block;
  padding: 12px 0;
  color: #fff;
  font-weight: 700;
}

.mobile-search {
  display: flex;
  overflow: hidden;
  margin-bottom: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-position: center;
  background-size: cover;
  filter: saturate(1.1) blur(1px);
  transform: scale(1.04);
}

.hero-overlay {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(194, 65, 12, 0.72), rgba(234, 179, 8, 0.46)),
    linear-gradient(0deg, rgba(17, 24, 39, 0.96), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
  color: #fff;
}

.eyebrow,
.channel-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffedd5;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 700px;
  margin: 0 0 24px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.75;
  color: #fff7ed;
}

.hero-tags,
.detail-badges,
.channel-tags,
.tag-cloud,
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.detail-badges span,
.channel-tags a,
.tag,
.mini-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(124, 45, 18, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(124, 45, 18, 0.24);
}

.btn-light {
  background: #fff;
  color: #ea580c;
}

.btn-dark {
  background: rgba(124, 45, 18, 0.82);
  color: #fff;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-orange {
  background: #ea580c;
  color: #fff;
}

.hero-poster {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 32px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.36);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-poster span {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #f97316;
  font-size: 32px;
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.48);
}

.hero-dots button.active {
  width: 34px;
  background: #fff;
}

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

.section-white {
  background: #fff;
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}

.section-warm {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
}

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

.section-head > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-head h2,
.center-title h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  color: #111827;
}

.section-head a {
  color: #ea580c;
  font-weight: 800;
}

.section-head.light h2,
.section-head.light a {
  color: #fff;
}

.section-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(90deg, #f97316, #f59e0b);
  font-weight: 900;
}

.section-icon.hot {
  background: linear-gradient(90deg, #ef4444, #ec4899);
}

.section-icon.fresh {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.section-icon.crown {
  color: #f59e0b;
  background: #fff;
}

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

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

.full-list {
  align-items: stretch;
}

.movie-card {
  overflow: hidden;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.16);
}

.movie-card figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #111827;
}

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

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

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

.movie-card figcaption {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 55%);
  opacity: 1;
}

.duration,
.category-badge {
  position: absolute;
  top: 12px;
  padding: 6px 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.duration {
  right: 12px;
  background: rgba(0, 0, 0, 0.64);
}

.category-badge {
  left: 12px;
  background: #f97316;
}

.play-mark {
  position: absolute;
  inset: 0;
  width: 52px;
  height: 52px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #f97316;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-mark {
  opacity: 1;
  transform: scale(1);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 18px;
  line-height: 1.4;
}

.card-body p {
  margin: 0 0 14px;
  color: #64748b;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  color: #64748b;
  font-size: 14px;
}

.meta-row span:first-child {
  color: #f59e0b;
  font-weight: 900;
}

.mini-tags {
  margin-top: 14px;
}

.mini-tags span,
.tag {
  background: #ffedd5;
  color: #ea580c;
}

.category-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(135deg, #faf5ff, #fff1f2, #fff7ed);
}

.center-title {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.center-title p {
  color: #64748b;
  font-size: 18px;
  line-height: 1.7;
}

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

.category-tile {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
}

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

.category-tile small,
.category-tile em {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
}

.category-tile em {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  font-size: 13px;
}

.tone-orange { background: linear-gradient(135deg, #f97316, #f59e0b); }
.tone-red { background: linear-gradient(135deg, #ef4444, #f97316); }
.tone-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.tone-purple { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.tone-rose { background: linear-gradient(135deg, #e11d48, #fb7185); }
.tone-pink { background: linear-gradient(135deg, #ec4899, #f97316); }
.tone-amber { background: linear-gradient(135deg, #f59e0b, #eab308); }
.tone-cyan { background: linear-gradient(135deg, #0891b2, #22d3ee); }
.tone-emerald { background: linear-gradient(135deg, #059669, #10b981); }
.tone-yellow { background: linear-gradient(135deg, #ca8a04, #f59e0b); }

.ranking-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(90deg, #eab308, #f97316, #ef4444);
}

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

.rank-item,
.ranking-row {
  display: grid;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(124, 45, 18, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover,
.ranking-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(124, 45, 18, 0.22);
}

.rank-item {
  grid-template-columns: 54px 92px 1fr;
  padding: 12px;
}

.rank-num,
.ranking-index {
  color: #ea580c;
  font-weight: 900;
  font-size: 20px;
  text-align: center;
}

.rank-item img {
  width: 92px;
  height: 62px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-copy strong,
.side-card strong,
.ranking-main strong {
  display: block;
  color: #111827;
  line-height: 1.4;
}

.rank-copy small,
.side-card small,
.ranking-main em,
.ranking-meta small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-style: normal;
}

.sub-hero,
.channel-hero {
  color: #fff;
  background: linear-gradient(90deg, #f97316, #f59e0b, #eab308);
}

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

.sub-hero span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.sub-hero h1,
.channel-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 56px);
}

.sub-hero p,
.channel-hero p {
  max-width: 760px;
  margin: 0;
  color: #fff7ed;
  font-size: 18px;
  line-height: 1.8;
}

.category-overview {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 82px;
}

.category-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 32px;
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.category-panel-copy h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 32px;
}

.category-panel-copy p {
  margin: 0 0 24px;
  color: #64748b;
  line-height: 1.8;
}

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

.channel-hero {
  border-radius: 0 0 34px 34px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.detail-content .breadcrumbs {
  color: #ea580c;
}

.channel-tags {
  margin-top: 24px;
}

.channel-tags a {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff7ed;
  color: #111827;
}

.filter-bar div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-bar a {
  color: #ea580c;
  font-weight: 800;
}

.ranking-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 82px;
  display: grid;
  gap: 14px;
}

.ranking-row {
  grid-template-columns: 72px 120px 1fr 120px;
  padding: 14px;
}

.ranking-row img {
  width: 120px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
}

.ranking-meta {
  color: #f59e0b;
  font-weight: 900;
  text-align: right;
}

.search-page-form {
  display: flex;
  overflow: hidden;
  max-width: 680px;
  margin-top: 28px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(124, 45, 18, 0.2);
}

.detail-main {
  background: linear-gradient(135deg, #fff7ed, #fef3c7, #fefce8);
}

.detail-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 0;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
  align-items: start;
}

.player-card,
.detail-side {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.24);
}

.player-overlay.hidden {
  display: none;
}

.player-overlay span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: auto;
  border-radius: 999px;
  color: #f97316;
  background: rgba(255, 255, 255, 0.94);
  font-size: 38px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.detail-content {
  padding: 28px;
}

.detail-badges {
  margin-bottom: 16px;
}

.detail-badges span {
  background: #ffedd5;
  color: #ea580c;
}

.detail-content h1 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(30px, 4vw, 44px);
}

.lead {
  margin: 0 0 20px;
  color: #475569;
  font-size: 18px;
  line-height: 1.8;
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
  color: #64748b;
  font-weight: 800;
}

.detail-stats span:first-child {
  color: #f59e0b;
}

.text-block,
.tag-block {
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
  margin-top: 24px;
}

.text-block h2,
.tag-block h2,
.detail-side h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 22px;
}

.text-block p {
  margin: 0;
  color: #475569;
  line-height: 1.9;
  font-size: 16px;
}

.review-block p {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(90deg, #fff7ed, #fef3c7);
}

.detail-side {
  position: sticky;
  top: 104px;
  padding: 22px;
}

.side-list {
  display: grid;
  gap: 14px;
}

.side-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.side-card:hover {
  background: #fff7ed;
  transform: translateX(2px);
}

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

.guess-section {
  margin-top: 44px;
}

.site-footer {
  background: linear-gradient(135deg, #111827, #1f2937, #111827);
  color: #cbd5e1;
}

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

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

.site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
}

.site-footer p {
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: #fb923c;
}

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

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background: #f97316;
  box-shadow: 0 14px 30px rgba(194, 65, 12, 0.28);
}

.back-top.show {
  display: grid;
}

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

  .mobile-toggle {
    display: inline-flex;
  }

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

  .hero-content {
    padding: 90px 0;
  }

  .hero-poster {
    max-width: 420px;
    margin: 0 auto;
  }

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

  .detail-side {
    position: static;
  }

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

@media (max-width: 760px) {
  .brand-text small {
    display: none;
  }

  .hero-carousel,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    display: block;
    padding: 76px 0 110px;
  }

  .hero-poster {
    margin-top: 34px;
    transform: none;
  }

  .hero-actions,
  .section-head,
  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .large-grid,
  .movie-grid,
  .category-grid,
  .ranking-list,
  .category-panel-movies {
    grid-template-columns: 1fr;
  }

  .section,
  .section-white,
  .section-warm,
  .category-section,
  .ranking-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .ranking-row {
    grid-template-columns: 42px 86px 1fr;
  }

  .ranking-row img {
    width: 86px;
    height: 58px;
  }

  .ranking-meta {
    grid-column: 3;
    text-align: left;
  }

  .search-page-form {
    border-radius: 22px;
    flex-direction: column;
  }

  .detail-content {
    padding: 20px;
  }

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