:root {
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-900: #0c4a6e;
  --bamboo-50: #f0fdf4;
  --bamboo-600: #16a34a;
  --mist-50: #f8fafc;
  --mist-100: #f1f5f9;
  --mist-200: #e2e8f0;
  --mist-300: #cbd5e1;
  --mist-400: #94a3b8;
  --mist-500: #64748b;
  --mist-600: #475569;
  --mist-700: #334155;
  --mist-800: #1e293b;
  --mist-900: #0f172a;
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, .10), 0 2px 4px -1px rgba(0, 0, 0, .06);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .10), 0 8px 10px -6px rgba(0, 0, 0, .10);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--mist-50), #ffffff 560px);
  color: var(--mist-900);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mist-200);
  box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--mist-900);
  white-space: nowrap;
}

.site-logo-icon,
.footer-logo span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary-600);
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 10px 18px rgba(2, 132, 199, .28);
}

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

.site-nav a,
.mobile-panel nav a {
  color: var(--mist-700);
  font-size: 15px;
  font-weight: 650;
  transition: color .2s ease, background .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary-600);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.large-search input,
.filter-panel input,
.filter-panel select {
  border: 1px solid var(--mist-300);
  background: #ffffff;
  border-radius: 12px;
  color: var(--mist-900);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.header-search input {
  width: 220px;
  padding: 10px 12px;
}

.header-search button,
.mobile-search button,
.large-search button,
.filter-panel button {
  border: 0;
  border-radius: 12px;
  background: var(--primary-600);
  color: #ffffff;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, .18);
}

.header-search button:hover,
.mobile-search button:hover,
.large-search button:hover,
.filter-panel button:hover,
.primary-button:hover {
  background: var(--primary-700);
}

.mobile-menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--mist-700);
  font-size: 26px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--mist-200);
  padding: 16px;
  background: #ffffff;
}

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

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

.mobile-search input {
  flex: 1;
  min-width: 0;
  padding: 11px 12px;
}

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

.mobile-panel nav a {
  padding: 11px 12px;
  border-radius: 12px;
}

.mobile-panel nav a:hover,
.mobile-panel nav a.active {
  background: var(--primary-50);
  color: var(--primary-600);
}

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--mist-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .6s ease, transform .8s ease;
  pointer-events: none;
}

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .52), rgba(0, 0, 0, .12));
}

.hero-content {
  position: absolute;
  inset: 0;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  max-width: 1180px;
}

.hero-content h1,
.hero-content h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.04em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 28px;
  color: #e2e8f0;
  font-size: 19px;
}

.hero-kicker,
.detail-category,
.page-hero span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: var(--primary-600);
  color: #ffffff;
  padding: 7px 13px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.primary-button {
  background: var(--primary-600);
  color: #ffffff;
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, .42);
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .7);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, .5);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, .72);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dots button {
  width: 18px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .52);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

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

.home-search-band,
.content-section,
.detail-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.home-search-band {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(226, 232, 240, .88);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
}

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

.home-search-band p {
  margin: 0;
  color: var(--mist-600);
}

.home-search-band form,
.large-search {
  display: flex;
  gap: 10px;
}

.home-search-band input,
.large-search input {
  min-width: 0;
  flex: 1;
  padding: 13px 14px;
}

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

.soft-section {
  background: linear-gradient(90deg, var(--bamboo-50), var(--primary-50));
}

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

.section-head h2 {
  margin: 0;
  color: var(--mist-900);
  font-size: 28px;
  font-weight: 900;
}

.section-head p {
  margin: 6px 0 0;
  color: var(--mist-600);
}

.section-head a {
  color: var(--primary-700);
  font-weight: 800;
}

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

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

.movie-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

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

.movie-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mist-200);
}

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

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

.movie-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .58), transparent 58%);
  opacity: 0;
  transition: opacity .25s ease;
}

.movie-card:hover .movie-thumb::after {
  opacity: 1;
}

.movie-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--primary-600);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.86);
  transition: opacity .25s ease, transform .25s ease;
}

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

.movie-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  border-radius: 8px;
  background: rgba(0, 0, 0, .72);
  color: #ffffff;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
}

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

.movie-card-body h3 {
  margin: 0;
  color: var(--mist-900);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s ease;
}

.movie-card:hover h3 {
  color: var(--primary-600);
}

.movie-card-desc {
  margin: 10px 0 0;
  color: var(--mist-600);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
  color: var(--mist-500);
  font-size: 13px;
}

.movie-meta span {
  border-radius: 999px;
  background: var(--mist-100);
  padding: 4px 8px;
}

.movie-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.movie-tags span,
.detail-tags a {
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-900);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 700;
}

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

.category-box,
.category-overview-card {
  min-height: 138px;
  border: 1px solid var(--mist-200);
  border-radius: 18px;
  background: #ffffff;
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.category-box:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-100);
  box-shadow: var(--shadow-xl);
}

.category-box span,
.category-overview-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-700);
  font-size: 20px;
  font-weight: 900;
}

.category-box strong,
.category-overview-card p {
  color: var(--mist-600);
  font-size: 14px;
  font-weight: 500;
}

.category-overview-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.category-overview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .22));
  z-index: 1;
}

.category-overview-card span,
.category-overview-card p {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.split-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: start;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: auto 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}

.rank-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.rank-number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-600);
  color: #ffffff;
  font-weight: 900;
}

.rank-item img {
  width: 84px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--mist-200);
}

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

.rank-copy strong {
  display: block;
  color: var(--mist-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-copy em {
  display: block;
  color: var(--mist-500);
  font-style: normal;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-score {
  color: #b45309;
  font-weight: 900;
}

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

.movie-card-compact a {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
}

.movie-card-compact .movie-thumb {
  aspect-ratio: auto;
  height: 100%;
  min-height: 108px;
}

.movie-card-compact .movie-card-desc,
.movie-card-compact .movie-tags {
  display: none;
}

.page-hero {
  background: radial-gradient(circle at 18% 10%, rgba(14, 165, 233, .35), transparent 28%), linear-gradient(135deg, #0f172a, #0c4a6e 56%, #082f49);
  color: #ffffff;
}

.compact-hero {
  min-height: 260px;
  display: flex;
  align-items: center;
  padding: 56px 0;
}

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

.compact-hero h1 {
  max-width: 840px;
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 900;
}

.compact-hero p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 17px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 180px 220px;
  gap: 12px;
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid var(--mist-200);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.filter-panel input,
.filter-panel select {
  min-width: 0;
  padding: 12px 14px;
}

.search-hero .large-search {
  margin-top: 24px;
  max-width: 720px;
}

.detail-wrap {
  padding: 34px 0 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--mist-500);
  font-size: 14px;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--primary-700);
  font-weight: 800;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 28px;
  align-items: stretch;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000000;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .28));
  color: #ffffff;
  cursor: pointer;
  transition: opacity .25s ease, visibility .25s ease;
}

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

.player-overlay span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--primary-600);
  font-size: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
}

.player-overlay strong {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
}

.player-overlay em {
  font-style: normal;
  color: #e2e8f0;
  font-weight: 800;
}

.detail-panel {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid var(--mist-200);
  border-radius: 22px;
  background: #ffffff;
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.detail-panel img {
  width: 150px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--mist-200);
}

.detail-panel h1 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}

.detail-panel p {
  margin: 0 0 16px;
  color: var(--mist-600);
}

.detail-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.detail-panel dl div {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
}

.detail-panel dt {
  color: var(--mist-500);
}

.detail-panel dd {
  margin: 0;
  color: var(--mist-800);
  font-weight: 800;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  margin-top: 34px;
}

.detail-article,
.detail-sidebar {
  border: 1px solid var(--mist-200);
  border-radius: 22px;
  background: #ffffff;
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.detail-article h2,
.detail-sidebar h2 {
  margin: 0 0 16px;
  color: var(--mist-900);
  font-size: 24px;
  font-weight: 900;
}

.detail-article h2:not(:first-child) {
  margin-top: 26px;
}

.detail-article p {
  margin: 0;
  color: var(--mist-700);
  font-size: 16px;
  line-height: 1.85;
}

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

.related-list .rank-item {
  grid-template-columns: 74px minmax(0, 1fr) auto;
}

.related-list .rank-number {
  display: none;
}

.related-section {
  width: 100%;
}

.site-footer {
  margin-top: 58px;
  background: var(--mist-900);
  color: var(--mist-300);
}

.site-footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 40px;
  padding: 48px 0;
}

.footer-logo {
  color: #ffffff;
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 480px;
  margin: 0;
  color: var(--mist-400);
}

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

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

.site-footer a {
  color: var(--mist-400);
  transition: color .2s ease;
}

.site-footer a:hover {
  color: var(--primary-100);
}

.site-footer-bottom {
  border-top: 1px solid var(--mist-800);
  text-align: center;
  color: var(--mist-500);
  padding: 20px 16px;
  font-size: 14px;
}

.empty-results {
  grid-column: 1 / -1;
  border: 1px solid var(--mist-200);
  border-radius: 18px;
  background: #ffffff;
  padding: 28px;
  color: var(--mist-600);
  text-align: center;
  box-shadow: var(--shadow-card);
}

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

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

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

  .detail-hero,
  .detail-content-grid,
  .split-section {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-menu-button {
    display: block;
    margin-left: auto;
  }

  .hero-carousel {
    height: 540px;
  }

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

  .home-search-band {
    grid-template-columns: 1fr;
  }

  .home-search-band form,
  .large-search {
    flex-direction: column;
  }

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

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

  .detail-panel {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .detail-panel img {
    width: 110px;
    height: 164px;
  }

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

@media (max-width: 560px) {
  .site-header-inner {
    width: calc(100% - 24px);
  }

  .site-logo {
    font-size: 19px;
  }

  .hero-carousel {
    height: 500px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-right: 36px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-arrow {
    width: 34px;
    height: 34px;
    font-size: 26px;
  }

  .hero-prev {
    left: 8px;
  }

  .hero-next {
    right: 8px;
  }

  .home-search-band,
  .content-section,
  .detail-wrap {
    width: calc(100% - 24px);
  }

  .home-search-band {
    padding: 20px;
    margin-top: -34px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid,
  .movie-grid-three,
  .category-grid,
  .category-overview-grid,
  .rank-list-wide {
    grid-template-columns: 1fr;
  }

  .movie-card-compact a {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .rank-item {
    grid-template-columns: auto 74px minmax(0, 1fr);
  }

  .rank-score {
    display: none;
  }

  .compact-hero {
    padding: 42px 0;
  }

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

  .detail-panel img {
    width: 100%;
    height: 280px;
  }

  .detail-article,
  .detail-sidebar {
    padding: 20px;
  }
}
