:root {
  --amber-50: #fff7ed;
  --amber-100: #ffedd5;
  --amber-200: #fed7aa;
  --amber-300: #fdba74;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --ink: #1f2937;
  --muted: #6b7280;
  --paper: #ffffff;
  --soft: #f8fafc;
  --shadow: 0 20px 45px rgba(120, 53, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 42%, #fff7ed 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, var(--amber-600), #eab308);
  box-shadow: 0 10px 30px rgba(120, 53, 15, 0.22);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--amber-600);
  background: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(120, 53, 15, 0.2);
  transition: transform 0.25s ease;
}

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

.brand-text strong,
.footer-logo {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-text em {
  display: block;
  margin-top: 3px;
  color: #ffedd5;
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-search,
.mobile-panel form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-panel input,
.page-search-form input,
.search-entrance input,
.filter-panel input,
.filter-panel select {
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 11px 16px;
  min-width: 220px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.header-search input::placeholder,
.mobile-panel input::placeholder {
  color: #ffedd5;
}

.header-search button,
.mobile-panel button,
.page-search-form button,
.search-entrance button,
.filter-reset {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--amber-700);
  background: #fff;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-search button:hover,
.mobile-panel button:hover,
.page-search-form button:hover,
.search-entrance button:hover,
.filter-reset:hover {
  transform: translateY(-1px);
  background: var(--amber-50);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 24px;
}

.mobile-panel {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.mobile-panel.open {
  display: grid;
  gap: 12px;
}

.mobile-panel a {
  padding: 10px 0;
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-200), #fef3c7 45%, #fed7aa 100%);
}

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

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

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

.hero-gradient {
  background:
    radial-gradient(circle at 74% 50%, rgba(245, 158, 11, 0.22), transparent 28%),
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.6), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  color: var(--amber-800);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(180, 83, 9, 0.16);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.hero-copy h1 {
  margin: 0;
  color: var(--amber-900);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.hero-copy p {
  max-width: 700px;
  margin: 0;
  color: var(--amber-800);
  font-size: 20px;
  line-height: 1.85;
}

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

.hero-tags span,
.detail-meta span,
.card-meta span,
.tag-cloud span {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--amber-900);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions,
.scroll-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.primary-button,
.ghost-button,
.category-enter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #fff;
  background: var(--amber-600);
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.32);
}

.ghost-button {
  color: var(--amber-700);
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(217, 119, 6, 0.32), 0 14px 30px rgba(120, 53, 15, 0.1);
}

.primary-button:hover,
.ghost-button:hover,
.category-enter:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 32px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform 0.35s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) scale(1.02);
}

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

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--amber-900);
  background: rgba(255, 255, 255, 0.82);
  font-size: 36px;
  line-height: 1;
  box-shadow: var(--shadow);
  transform: translateY(-50%);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

.hero-dot.active {
  width: 34px;
  background: var(--amber-600);
}

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

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

.section-heading h2,
.panel-head h2,
.search-entrance h2,
.player-heading h2,
.detail-text h2 {
  margin: 0 0 8px;
  color: var(--amber-900);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.section-heading p,
.panel-head p,
.search-entrance p,
.player-heading p {
  margin: 0;
  color: var(--amber-700);
  font-size: 17px;
}

.section-heading a {
  color: #fff;
  background: var(--amber-600);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 900;
  white-space: nowrap;
}

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

.movie-card {
  display: grid;
  overflow: hidden;
  border-radius: 24px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 30px rgba(120, 53, 15, 0.11);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(120, 53, 15, 0.2);
}

.card-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--amber-100), var(--amber-300));
}

.movie-card.compact .card-cover {
  aspect-ratio: 16 / 11;
}

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

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

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #fff;
  background: rgba(217, 119, 6, 0.92);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
}

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

.card-body strong {
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.card-body em {
  display: -webkit-box;
  overflow: hidden;
  min-height: 48px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta span {
  color: var(--amber-800);
  background: var(--amber-50);
  font-size: 12px;
}

.warm-panel {
  border-radius: 36px;
  padding: 32px;
  background: linear-gradient(90deg, var(--amber-100), #fef3c7);
  box-shadow: inset 0 0 0 1px rgba(217, 119, 6, 0.08);
}

.horizontal-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.horizontal-row::-webkit-scrollbar {
  display: none;
}

.horizontal-row .movie-card {
  flex: 0 0 310px;
}

.scroll-actions button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--amber-900);
  background: #fff;
  font-size: 28px;
  box-shadow: var(--shadow);
}

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

.category-feature,
.category-overview-card {
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: var(--shadow);
}

.category-feature:nth-child(2n),
.category-overview-card:nth-child(2n) {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.category-feature:nth-child(3n),
.category-overview-card:nth-child(3n) {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.category-feature:nth-child(4n),
.category-overview-card:nth-child(4n) {
  background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.category-feature-head,
.category-overview-head {
  display: grid;
  gap: 8px;
  padding: 28px 28px 10px;
  color: #fff;
}

.category-feature-head span,
.category-overview-head span {
  font-size: 30px;
  font-weight: 950;
}

.category-feature-head em,
.category-overview-head em {
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mini-card:hover {
  transform: translateY(-2px);
  background: #fff;
}

.mini-card img {
  width: 74px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-card strong,
.mini-card em {
  display: block;
}

.mini-card strong {
  overflow: hidden;
  color: #111827;
  font-weight: 900;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini-card em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.category-enter {
  margin: 0 24px 26px;
  color: var(--amber-700);
  background: #fff;
}

.rank-list,
.ranking-list {
  display: grid;
  gap: 14px;
}

.rank-row,
.ranking-card {
  display: grid;
  align-items: center;
  gap: 16px;
  border-radius: 22px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 26px rgba(120, 53, 15, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row {
  grid-template-columns: 46px 72px minmax(0, 1fr) 52px;
  padding: 10px 16px;
}

.ranking-card {
  grid-template-columns: 56px 104px minmax(0, 1fr) 70px;
  padding: 14px 18px;
}

.rank-row:hover,
.ranking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(120, 53, 15, 0.16);
}

.rank-number,
.ranking-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #fff;
  background: var(--amber-600);
  font-weight: 950;
}

.rank-row img,
.ranking-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
}

.rank-copy,
.ranking-body {
  display: grid;
  gap: 4px;
}

.rank-copy strong,
.ranking-body strong {
  color: #111827;
  font-size: 18px;
  font-weight: 900;
}

.rank-copy em,
.ranking-body em,
.ranking-body span {
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-score,
.ranking-score {
  color: var(--amber-700);
  font-size: 20px;
  font-weight: 950;
}

.search-entrance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 32px;
  border-radius: 32px;
  padding: 36px;
  color: #fff;
  background: linear-gradient(90deg, var(--amber-600), #ea580c);
  box-shadow: var(--shadow);
}

.search-entrance h2,
.search-entrance p {
  color: #fff;
}

.search-entrance form,
.page-search-form {
  display: flex;
  gap: 10px;
}

.search-entrance input,
.page-search-form input {
  flex: 1;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.search-entrance input::placeholder,
.page-search-form input::placeholder {
  color: #9ca3af;
}

.subpage-hero {
  width: min(1240px, calc(100% - 32px));
  margin: 42px auto 36px;
  border-radius: 36px;
  padding: 58px;
  background: linear-gradient(135deg, var(--amber-200), #fff7ed 60%, #fed7aa);
  box-shadow: var(--shadow);
}

.subpage-hero h1 {
  margin: 18px 0 12px;
  color: var(--amber-900);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.08;
  font-weight: 950;
}

.subpage-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--amber-800);
  font-size: 18px;
}

.search-hero {
  display: grid;
  gap: 18px;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  border-radius: 26px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(120, 53, 15, 0.1);
}

.filter-panel input,
.filter-panel select {
  min-width: 180px;
  flex: 1;
  color: var(--ink);
  background: var(--amber-50);
  box-shadow: inset 0 0 0 1px rgba(217, 119, 6, 0.14);
}

.filter-reset {
  color: #fff;
  background: var(--amber-600);
}

.filter-empty {
  display: none;
  margin: 30px 0;
  border-radius: 24px;
  padding: 40px;
  color: var(--muted);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

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

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

.detail-page {
  width: min(1240px, calc(100% - 32px));
  margin: 36px auto 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--amber-800);
  font-weight: 800;
}

.breadcrumb strong {
  color: var(--muted);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  border-radius: 36px;
  padding: 34px;
  background: linear-gradient(135deg, var(--amber-100), #fff 60%, #ffedd5);
  box-shadow: var(--shadow);
}

.detail-poster {
  border-radius: 30px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(120, 53, 15, 0.16);
}

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

.detail-copy {
  display: grid;
  gap: 18px;
}

.detail-copy h1 {
  margin: 0;
  color: var(--amber-900);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.detail-copy p {
  margin: 0;
  color: var(--amber-800);
  font-size: 19px;
}

.player-card,
.detail-text {
  margin-top: 34px;
  border-radius: 32px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.player-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #0f172a;
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.78));
  text-align: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  color: var(--amber-700);
  background: #fff;
  font-size: 34px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

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

.detail-text {
  display: grid;
  gap: 14px;
}

.detail-text h2 {
  margin-top: 8px;
  font-size: 30px;
}

.detail-text p {
  margin: 0 0 12px;
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

.related-section {
  width: 100%;
  margin: 34px 0 0;
}

.site-footer {
  color: #fffbeb;
  background: linear-gradient(180deg, var(--amber-800), var(--amber-900));
}

.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  padding: 50px 0;
}

.footer-inner h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-inner p,
.footer-inner li {
  color: #fed7aa;
  font-size: 14px;
}

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

.footer-inner a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 237, 213, 0.18);
  padding: 22px 0;
  color: #fed7aa;
  font-size: 14px;
  text-align: center;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--amber-600);
  box-shadow: var(--shadow);
  font-size: 22px;
}

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

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content,
  .detail-hero,
  .search-entrance,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    height: auto;
    min-height: 720px;
  }

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

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

  .hero-copy {
    text-align: center;
    justify-items: center;
  }

  .hero-tags,
  .hero-actions {
    justify-content: center;
  }

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

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

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

  .hero-copy h1,
  .subpage-hero h1,
  .detail-copy h1 {
    font-size: 38px;
  }

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

  .hero-arrow {
    display: none;
  }

  .section-heading,
  .panel-head,
  .player-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .horizontal-row .movie-card {
    flex-basis: 280px;
  }

  .warm-panel,
  .subpage-hero,
  .detail-hero,
  .player-card,
  .detail-text,
  .search-entrance {
    border-radius: 24px;
    padding: 22px;
  }

  .rank-row {
    grid-template-columns: 42px 58px minmax(0, 1fr);
  }

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

  .rank-score,
  .ranking-score {
    display: none;
  }

  .page-search-form,
  .search-entrance form,
  .filter-panel {
    flex-direction: column;
  }

  .filter-panel input,
  .filter-panel select,
  .filter-reset {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text em {
    display: none;
  }

  .hero-content {
    width: min(100% - 24px, 1240px);
    gap: 28px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .content-section,
  .subpage-hero,
  .detail-page {
    width: min(100% - 24px, 1240px);
  }

  .movie-grid {
    gap: 18px;
  }
}
