* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  color: #111827;
}

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, #dc2626);
  box-shadow: 0 18px 40px rgba(185, 28, 28, 0.22);
}

.header-inner {
  max-width: 1200px;
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  min-width: 188px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 21px;
  letter-spacing: 0.02em;
}

.logo-text em {
  margin-top: 3px;
  font-size: 12px;
  font-style: normal;
  opacity: 0.9;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  font-weight: 700;
}

.desktop-nav a {
  padding: 9px 0;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  opacity: 1;
  transform: translateY(-1px);
}

.header-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-panel input,
.toolbar input,
.big-search input {
  width: 260px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 11px 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.header-search input::placeholder,
.mobile-panel input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.header-search button,
.mobile-panel button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  color: #dc2626;
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-panel button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(127, 29, 29, 0.22);
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  padding: 9px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  font-size: 22px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 16px 20px 20px;
  background: #c2410c;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

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

.mobile-panel input {
  width: 100%;
}

.mobile-panel nav {
  display: grid;
  gap: 10px;
}

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

.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

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

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

.hero-shade,
.detail-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 7, 18, 0.82), rgba(17, 24, 39, 0.55), rgba(17, 24, 39, 0.06));
}

.hero-content {
  position: absolute;
  inset: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.hero-content > * {
  max-width: 720px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: #ea580c;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.28);
}

.hero h1,
.page-hero h1,
.detail-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p,
.detail-hero p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
}

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

.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  padding: 13px 26px;
  color: #ffffff;
  background: linear-gradient(90deg, #ea580c, #dc2626);
  box-shadow: 0 18px 36px rgba(220, 38, 38, 0.32);
}

.ghost-btn {
  padding: 12px 24px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(127, 29, 29, 0.24);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 54px 20px 0;
}

.content-section:last-child {
  padding-bottom: 64px;
}

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

.section-heading > div:first-child {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.section-icon {
  font-size: 30px;
}

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

.section-heading p {
  grid-column: 2;
  margin: -4px 0 0;
  color: #6b7280;
  line-height: 1.6;
}

.section-link {
  flex: 0 0 auto;
  color: #ea580c;
  gap: 4px;
}

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

.category-card,
.category-cover {
  position: relative;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  overflow: hidden;
  border-radius: 22px;
  padding: 22px;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.category-cover:hover,
.movie-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(15, 23, 42, 0.22);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: -1;
}

.category-card::before,
.category-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
  z-index: -1;
}

.category-card span,
.category-cover span {
  font-size: 21px;
  font-weight: 900;
}

.category-card strong,
.category-cover strong {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card a {
  display: block;
  height: 100%;
}

.movie-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111827;
}

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

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

.poster-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
}

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

.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

.movie-meta-row span {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 8px;
  background: #fff7ed;
  color: #c2410c;
}

.movie-card h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
  color: #111827;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card p {
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  border-radius: 999px;
  padding: 5px 9px;
  color: #7c2d12;
  background: #ffedd5;
  font-size: 12px;
  font-weight: 800;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  border-radius: 28px;
  padding: 44px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #1f2937);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.feature-copy span {
  color: #fb923c;
  font-weight: 900;
}

.feature-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.feature-copy p {
  color: #d1d5db;
  line-height: 1.85;
  margin-bottom: 24px;
}

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

.small-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.small-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.small-card img {
  width: 74px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
}

.small-card span {
  font-weight: 800;
  line-height: 1.35;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 28px;
  align-items: start;
}

.ranking-panel,
.detail-side {
  border-radius: 22px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.ranking-panel h2,
.detail-side h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 42px 86px 1fr;
  gap: 13px;
  align-items: center;
  border-radius: 16px;
  padding: 10px;
  background: #f9fafb;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: #fff7ed;
  transform: translateX(4px);
}

.rank-number {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #4b5563;
  background: #e5e7eb;
  font-size: 18px;
  font-weight: 900;
}

.top-rank .rank-number {
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

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

.rank-info {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.rank-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info em {
  overflow: hidden;
  color: #6b7280;
  font-size: 13px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #374151);
}

.slim-hero,
.search-hero {
  min-height: 340px;
  display: flex;
  align-items: center;
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 62px 20px;
}

.category-hero {
  min-height: 350px;
}

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

.category-overview-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-cover {
  min-height: 150px;
  border-radius: 0;
}

.category-samples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.category-samples .small-card,
.side-list .small-card {
  color: #111827;
  background: #f9fafb;
}

.category-samples .small-card:hover,
.side-list .small-card:hover {
  background: #fff7ed;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.toolbar input,
.big-search input {
  color: #111827;
  background: #f3f4f6;
  box-shadow: inset 0 0 0 1px #e5e7eb;
}

.toolbar input::placeholder,
.big-search input::placeholder {
  color: #9ca3af;
}

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

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #7c2d12;
  background: #ffedd5;
  font-weight: 900;
  cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #ea580c, #dc2626);
}

.big-search {
  max-width: 620px;
}

.big-search input {
  width: 100%;
  padding: 16px 20px;
  font-size: 17px;
}

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

.empty-state.show {
  display: block;
}

.ranking-page-list {
  padding-top: 24px;
}

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

.detail-hero {
  min-height: 430px;
}

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

.detail-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 86px 20px 70px;
}

.detail-hero-content > * {
  max-width: 780px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumb a::after {
  content: "›";
  margin-left: 8px;
  opacity: 0.6;
}

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

.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

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

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

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

.play-cover {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  color: #ffffff;
  background: #05070d;
  cursor: pointer;
  overflow: hidden;
}

.play-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: blur(1px);
  transform: scale(1.04);
}

.play-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(234, 88, 12, 0.24), rgba(0, 0, 0, 0.62));
}

.play-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  font-size: 32px;
  box-shadow: 0 18px 44px rgba(220, 38, 38, 0.42);
  transform: translate(-50%, -50%);
}

.detail-text-block {
  margin-top: 24px;
  border-radius: 22px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.detail-text-block h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.detail-text-block p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
}

.detail-tags {
  margin-top: 20px;
}

.prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.prev-next a {
  border-radius: 16px;
  padding: 15px;
  background: #ffffff;
  color: #ea580c;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.site-footer {
  margin-top: 68px;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 20px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
}

.footer-inner strong {
  color: #ffffff;
  font-size: 22px;
}

.footer-inner p {
  margin: 10px 0 0;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: #f3f4f6;
  opacity: 0.86;
}

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

.from-red-to-orange {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.from-orange-to-amber {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.from-blue-to-indigo {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.from-slate-to-zinc {
  background: linear-gradient(135deg, #334155, #3f3f46);
}

.from-purple-to-pink {
  background: linear-gradient(135deg, #7c3aed, #db2777);
}

.from-rose-to-red {
  background: linear-gradient(135deg, #e11d48, #dc2626);
}

.from-yellow-to-orange {
  background: linear-gradient(135deg, #eab308, #ea580c);
}

.from-pink-to-rose {
  background: linear-gradient(135deg, #ec4899, #e11d48);
}

.from-cyan-to-blue {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.from-emerald-to-teal {
  background: linear-gradient(135deg, #10b981, #0d9488);
}

.from-stone-to-amber {
  background: linear-gradient(135deg, #57534e, #d97706);
}

.from-indigo-to-violet {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.from-sky-to-cyan {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.from-fuchsia-to-pink {
  background: linear-gradient(135deg, #c026d3, #db2777);
}

.from-lime-to-green {
  background: linear-gradient(135deg, #65a30d, #16a34a);
}

.from-orange-to-red {
  background: linear-gradient(135deg, #f97316, #dc2626);
}

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

  .two-column,
  .detail-layout,
  .feature-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .ranking-panel,
  .detail-side {
    position: static;
  }

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

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

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

  .header-inner {
    height: 64px;
  }

  .hero {
    height: 560px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 82px;
  }

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

  .section-heading,
  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar input {
    width: 100%;
  }

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

  .prev-next {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .logo-text em {
    display: none;
  }

  .logo {
    min-width: 0;
  }

  .hero h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: 34px;
  }

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

  .content-section {
    padding: 38px 14px 0;
  }

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

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

  .feature-band {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .detail-hero-content {
    padding: 62px 16px 50px;
  }

  .detail-text-block {
    padding: 20px;
  }

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

  .rank-item img {
    width: 74px;
    height: 52px;
  }
}
