:root {
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --cyan-600: #0891b2;
  --amber-500: #f59e0b;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --gray-950: #030712;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow-card: 0 10px 28px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, #0f766e 0%, #0891b2 100%);
  box-shadow: 0 12px 28px rgba(8, 145, 178, 0.24);
}

.nav-shell {
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #78350f;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.35);
}

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

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

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.nav-link {
  position: relative;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.22s ease;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: #fbbf24;
}

.nav-search,
.mobile-search,
.home-search-panel form {
  display: flex;
  align-items: center;
}

.nav-search input,
.mobile-search input,
.home-search-panel input {
  min-width: 220px;
  border: 0;
  outline: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  padding: 10px 14px;
  border-radius: 999px 0 0 999px;
  backdrop-filter: blur(12px);
}

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

.nav-search button,
.mobile-search button,
.home-search-panel button {
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 0 999px 999px 0;
  background: var(--amber-500);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-search button:hover,
.mobile-search button:hover,
.home-search-panel button:hover {
  background: #d97706;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  border: 0;
  width: 42px;
  height: 42px;
  color: var(--white);
  cursor: pointer;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
}

.mobile-menu {
  display: none;
  padding: 0 24px 20px;
  background: rgba(15, 118, 110, 0.98);
}

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

.mobile-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.mobile-link.active {
  color: #fde68a;
}

.hero-slider {
  position: relative;
  height: min(720px, 72vh);
  min-height: 520px;
  overflow: hidden;
  background: var(--slate-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  transition: opacity 0.8s ease, transform 1.1s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-inner {
  width: min(1280px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  padding-bottom: 90px;
}

.hero-copy {
  width: min(720px, 100%);
  color: var(--white);
}

.hero-badges,
.detail-tags-top,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-badges span,
.detail-tags-top span,
.pill-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(13, 148, 136, 0.94);
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 700;
}

.hero-badges span:first-child {
  background: var(--amber-500);
}

.hero-badges span:last-child {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  margin: 18px 0 12px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.hero-meta {
  margin: 0 0 12px;
  color: #d1d5db;
  font-size: 18px;
}

.hero-desc {
  max-width: 640px;
  margin: 0 0 28px;
  color: #e5e7eb;
  font-size: 17px;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-600), var(--cyan-600));
  box-shadow: 0 14px 28px rgba(13, 148, 136, 0.28);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(13, 148, 136, 0.34);
}

.btn.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn.full {
  width: 100%;
}

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

.hero-dot {
  width: 38px;
  height: 5px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dot.active {
  background: #fbbf24;
}

.home-search-panel {
  width: min(980px, calc(100% - 48px));
  margin: -32px auto 0;
  position: relative;
  z-index: 5;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.95), rgba(8, 145, 178, 0.95));
  box-shadow: var(--shadow-soft);
}

.home-search-panel input {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
}

.home-search-panel button {
  padding: 15px 28px;
}

.content-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 62px 0 0;
}

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

.section-heading h2,
.ranking-panel h2,
.ranking-column h2,
.side-ranking h2,
.poster-panel h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section-more {
  color: var(--teal-700);
  font-weight: 800;
}

.highlight-grid,
.category-grid,
.category-overview-grid,
.movie-grid,
.ranking-grid {
  display: grid;
  gap: 24px;
}

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

.highlight-card a,
.category-overview-card a {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  background: var(--slate-900);
}

.highlight-card img,
.category-overview-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.highlight-card:hover img,
.category-overview-card:hover img {
  transform: scale(1.08);
}

.shade,
.highlight-content,
.category-overview-body {
  position: absolute;
  inset: auto 0 0;
}

.shade {
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.84));
}

.highlight-content,
.category-overview-body {
  display: grid;
  gap: 10px;
  padding: 24px;
  color: var(--white);
}

.highlight-content strong,
.category-overview-body strong {
  font-size: 22px;
  line-height: 1.25;
}

.highlight-content small,
.category-overview-body small {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

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

.category-tile,
.category-overview-card a {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.category-tile {
  display: grid;
  gap: 10px;
  min-height: 168px;
  padding: 26px;
  color: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.category-tile span {
  font-size: 36px;
}

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

.category-tile small {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.tone-teal {
  background: linear-gradient(135deg, #0f766e, #06b6d4);
}

.tone-cyan {
  background: linear-gradient(135deg, #0891b2, #22d3ee);
}

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

.tone-rose {
  background: linear-gradient(135deg, #e11d48, #fb7185);
}

.tone-amber {
  background: linear-gradient(135deg, #d97706, #fbbf24);
}

.tone-lime {
  background: linear-gradient(135deg, #65a30d, #bef264);
}

.tone-orange {
  background: linear-gradient(135deg, #ea580c, #fb923c);
}

.tone-violet {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.tone-sky {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.tone-emerald {
  background: linear-gradient(135deg, #059669, #34d399);
}

.tone-blue {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--slate-900);
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

.badge,
.poster-meta {
  position: absolute;
  z-index: 2;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.badge {
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.badge-region {
  left: 12px;
  background: var(--teal-600);
}

.badge-type {
  right: 12px;
  background: var(--amber-500);
}

.poster-meta {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.poster-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.5));
  transition: opacity 0.22s ease;
}

.poster-glow span {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal-600);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.movie-card:hover .poster-glow {
  opacity: 1;
}

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

.movie-card-body h3 {
  margin: 0 0 10px;
  min-height: 48px;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.35;
}

.movie-card-body h3 a:hover {
  color: var(--teal-700);
}

.movie-card-body p {
  margin: 0;
  min-height: 48px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
}

.movie-card.compact .movie-card-body h3 {
  font-size: 16px;
  min-height: 44px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.ranking-panel,
.ranking-column,
.side-ranking,
.poster-panel,
.detail-card,
.player-card,
.filter-panel {
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.ranking-panel,
.ranking-column,
.side-ranking {
  padding: 24px;
}

.ranking-panel {
  position: sticky;
  top: 96px;
}

.ranking-panel ol,
.ranking-column ol,
.side-ranking ol {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ranking-item a {
  display: grid;
  grid-template-columns: 42px 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.rank-num {
  color: var(--amber-500);
  font-size: 20px;
  font-weight: 900;
}

.ranking-item img {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.rank-info small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--gray-600);
}

.band {
  width: min(1280px, calc(100% - 48px));
  padding: 36px;
  margin-top: 62px;
  border-radius: 32px;
}

.band .section-heading h2,
.band .section-heading p {
  color: var(--white);
}

.band .section-more {
  color: #fef3c7;
}

.page-hero {
  color: var(--white);
  background: linear-gradient(135deg, #0f766e, #0891b2);
}

.compact-hero,
.category-hero {
  padding: 58px 0;
}

.page-hero > div {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.page-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

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

.detail-breadcrumb-wrap {
  background: var(--white);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.detail-breadcrumb-wrap .breadcrumb {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0;
  color: var(--gray-600);
}

.detail-breadcrumb-wrap .breadcrumb a:hover {
  color: var(--teal-700);
}

.detail-layout {
  width: min(1280px, calc(100% - 48px));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card {
  overflow: hidden;
  padding: 0;
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  color: var(--white);
  background: radial-gradient(circle, rgba(15, 118, 110, 0.18), rgba(0, 0, 0, 0.42));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-overlay span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 36px;
  background: linear-gradient(135deg, var(--teal-600), var(--cyan-600));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
}

.player-shell.playing .play-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-card {
  padding: 30px;
}

.detail-tags-top span {
  color: #0f766e;
  background: #ccfbf1;
}

.detail-tags-top span:nth-child(2) {
  color: #92400e;
  background: #fef3c7;
}

.detail-tags-top span:nth-child(3) {
  color: #1d4ed8;
  background: #dbeafe;
}

.detail-card h1 {
  margin: 18px 0 12px;
  color: var(--gray-900);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.14;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  color: var(--gray-600);
}

.detail-card section {
  margin-top: 26px;
}

.detail-card h2 {
  margin: 0 0 12px;
  color: var(--gray-900);
  font-size: 22px;
}

.detail-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.9;
  white-space: pre-line;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.tag-cloud span {
  color: var(--gray-700);
  border-radius: 999px;
  background: #f3f4f6;
  padding: 8px 12px;
  font-size: 14px;
}

.detail-side {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 96px;
}

.poster-panel {
  overflow: hidden;
  padding: 20px;
}

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

.poster-panel h2 {
  margin-top: 18px;
  font-size: 22px;
}

.poster-panel p {
  color: var(--gray-600);
  line-height: 1.75;
}

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

.category-overview-card a {
  min-height: 280px;
}

.category-overview-card img {
  min-height: 280px;
}

.category-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 30px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.filter-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
  padding: 20px;
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
}

.filter-row input,
.filter-row select {
  width: 100%;
  border: 1px solid #d1d5db;
  outline: 0;
  border-radius: 14px;
  background: var(--white);
  padding: 13px 14px;
}

.filter-row input:focus,
.filter-row select:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

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

.filter-chip {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--gray-700);
  background: #f3f4f6;
  padding: 10px 16px;
  font-weight: 800;
}

.filter-chip.active {
  color: var(--white);
  background: var(--teal-600);
}

.empty-state {
  margin: 28px 0 0;
  padding: 40px;
  text-align: center;
  color: var(--gray-600);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

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

.site-footer {
  margin-top: 72px;
  color: #cbd5e1;
  background: linear-gradient(180deg, #1e293b, #020617);
}

.footer-grid {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding: 46px 0;
}

.footer-brand {
  color: var(--white);
  font-weight: 900;
}

.site-footer p {
  max-width: 420px;
  color: #94a3b8;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

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

.site-footer a:hover {
  color: #67e8f9;
}

.footer-bottom {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0;
  color: #64748b;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  text-align: center;
}

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

  .nav-search {
    margin-left: auto;
  }

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

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

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

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

@media (max-width: 760px) {
  .nav-shell {
    height: auto;
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

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

  .brand-text small {
    font-size: 11px;
  }

  .nav-search {
    display: none;
  }

  .mobile-search input {
    flex: 1;
    min-width: 0;
  }

  .hero-slider {
    min-height: 560px;
    height: 68vh;
  }

  .hero-inner,
  .content-section,
  .page-hero > div,
  .detail-layout,
  .detail-breadcrumb-wrap .breadcrumb,
  .footer-grid,
  .footer-bottom,
  .home-search-panel,
  .band {
    width: calc(100% - 32px);
  }

  .hero-inner {
    padding-bottom: 74px;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .section-heading {
    display: grid;
    gap: 12px;
  }

  .highlight-grid,
  .movie-grid.four,
  .category-grid,
  .category-overview-grid,
  .ranking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .band,
  .detail-card,
  .ranking-panel,
  .ranking-column,
  .side-ranking,
  .poster-panel,
  .filter-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .home-search-panel form {
    align-items: stretch;
  }

  .home-search-panel input {
    width: 100%;
  }

  .ranking-item a {
    grid-template-columns: 36px 66px minmax(0, 1fr);
  }
}
