:root {
  --primary: #0ea5e9;
  --primary-dark: #0369a1;
  --primary-soft: #e0f2fe;
  --secondary-50: #f8fafc;
  --secondary-100: #f1f5f9;
  --secondary-200: #e2e8f0;
  --secondary-500: #64748b;
  --secondary-700: #334155;
  --secondary-900: #0f172a;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #667085;
  --card-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --card-shadow-hover: 0 24px 60px rgba(15, 23, 42, 0.16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, var(--secondary-50) 0%, #ffffff 34%, var(--secondary-50) 100%);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--secondary-900);
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.36);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: var(--secondary-100);
}

.nav-link,
.mobile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--secondary-700);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  min-width: 72px;
  height: 38px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background: var(--primary);
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--secondary-100);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--secondary-900);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 12px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--card-shadow);
}

.mobile-link {
  width: 100%;
  padding: 12px 14px;
  justify-content: flex-start;
  font-weight: 700;
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.hero {
  position: relative;
  height: 80vh;
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

.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.04);
  transition: transform 5s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.72) 38%, rgba(2, 6, 23, 0.20) 100%), linear-gradient(0deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.00) 54%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  top: 50%;
  width: min(760px, calc(100% - 48px));
  transform: translateY(-50%);
  color: #ffffff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-content p {
  width: min(680px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.75;
}

.hero-meta,
.detail-meta,
.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-meta {
  margin: 22px 0 14px;
}

.hero-meta span,
.detail-meta span,
.movie-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span {
  border-radius: 999px;
  color: var(--secondary-700);
  background: var(--secondary-100);
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
}

.tag-row span {
  padding: 5px 9px;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.ghost-button,
.text-link,
.quick-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button,
.ghost-button,
.quick-search button {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
}

.primary-button,
.quick-search button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.30);
}

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

.ghost-button.dark {
  color: var(--secondary-900);
  border-color: var(--secondary-200);
  background: #ffffff;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 36px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.30);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 24px;
  transform: translateY(-50%);
}

.hero-next {
  right: 24px;
  transform: translateY(-50%);
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.section {
  padding: 72px 0;
}

.page-main {
  padding-top: 28px;
}

.page-hero {
  padding: 76px 0 24px;
}

.page-hero h1,
.section-head h2,
.intro-strip h2 {
  margin: 0;
  color: var(--secondary-900);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.page-hero p:not(.section-kicker),
.intro-strip p,
.section-head p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.page-hero p:not(.section-kicker) {
  max-width: 780px;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--primary-dark);
  background: var(--primary-soft);
}

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

.section-head.inverted h2,
.section-head.inverted p,
.text-link.light {
  color: #ffffff;
}

.text-link {
  color: var(--primary-dark);
  font-weight: 800;
}

.text-link:hover {
  color: var(--primary);
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.quick-search {
  display: flex;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--secondary-200);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--card-shadow);
}

.quick-search label,
.filter-panel label {
  display: grid;
  gap: 8px;
  width: 100%;
}

.quick-search span,
.filter-panel span {
  color: var(--secondary-700);
  font-size: 13px;
  font-weight: 800;
}

.quick-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--secondary-200);
  border-radius: 14px;
  color: var(--secondary-900);
  background: #ffffff;
  padding: 0 14px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.quick-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.94);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.52);
  box-shadow: var(--card-shadow-hover);
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

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

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

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.55) 0%, rgba(2, 6, 23, 0.00) 56%);
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.play-chip {
  right: 12px;
  bottom: 12px;
  height: 30px;
  padding: 0 12px;
  background: rgba(14, 165, 233, 0.92);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.32);
}

.rank-badge {
  top: 12px;
  left: 12px;
  min-width: 34px;
  height: 34px;
  background: rgba(2, 6, 23, 0.74);
  backdrop-filter: blur(8px);
}

.movie-info {
  padding: 18px;
}

.movie-info h3 {
  margin: 0 0 10px;
  color: var(--secondary-900);
  font-size: 19px;
  line-height: 1.28;
  font-weight: 900;
}

.movie-info h3 a:hover {
  color: var(--primary-dark);
}

.movie-meta {
  margin-bottom: 12px;
}

.movie-meta span {
  color: var(--secondary-700);
  background: var(--secondary-100);
}

.movie-info p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.compact-card .movie-info h3 {
  font-size: 17px;
}

.hot-band {
  padding: 72px 0;
  background: linear-gradient(135deg, #0284c7, #0369a1 54%, #0f172a);
}

.scroll-row {
  display: grid;
  grid-auto-columns: minmax(260px, 300px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scrollbar-width: none;
}

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

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

.category-card {
  overflow: hidden;
  border: 1px solid var(--secondary-200);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.category-art {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 138px;
  background: var(--secondary-900);
}

.category-art img {
  width: 100%;
  height: 100%;
  min-height: 138px;
  object-fit: cover;
}

.category-copy {
  padding: 20px;
}

.category-copy h2 {
  margin: 0 0 8px;
  color: var(--secondary-900);
  font-size: 22px;
  font-weight: 900;
}

.category-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.soft-section {
  background: linear-gradient(180deg, var(--secondary-100), #ffffff);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, auto);
  gap: 18px;
  align-items: end;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--secondary-200);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.filter-selects {
  display: flex;
  gap: 12px;
  align-items: end;
}

.filter-selects label {
  min-width: 142px;
}

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

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

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 132px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--secondary-200);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.rank-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-weight: 900;
}

.rank-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 16px;
  background: var(--secondary-900);
}

.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.rank-copy p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.65;
}

.rank-side {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--secondary-200);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.rank-side h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
}

.rank-side a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 13px;
  border-radius: 14px;
  color: var(--secondary-700);
  background: var(--secondary-50);
  font-weight: 800;
}

.rank-side a:hover {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.detail-main {
  background: #ffffff;
}

.detail-hero-section {
  padding: 42px 0 64px;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.34), transparent 36%), linear-gradient(135deg, #020617, #0f172a 45%, #111827);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 30px;
  align-items: center;
}

.watch-panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: #000000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.20), rgba(2, 6, 23, 0.42));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-overlay span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.42);
  font-size: 38px;
}

.watch-panel.is-playing .play-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
}

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

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

.detail-one-line {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.large-tags {
  margin-top: 18px;
}

.large-tags span {
  color: rgba(255, 255, 255, 0.90);
  background: rgba(255, 255, 255, 0.12);
}

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

.prose-card {
  padding: 28px;
  border: 1px solid var(--secondary-200);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.prose-card h2 {
  margin: 0 0 14px;
  color: var(--secondary-900);
  font-size: 26px;
  font-weight: 900;
}

.prose-card p {
  margin: 0;
  color: var(--secondary-700);
  font-size: 16px;
  line-height: 1.95;
}

.site-footer {
  padding-top: 54px;
  color: rgba(255, 255, 255, 0.82);
  background: #020617;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.3fr);
  gap: 32px;
}

.brand-footer {
  color: #ffffff;
}

.footer-brand p {
  max-width: 520px;
  margin: 16px 0 0;
  line-height: 1.8;
}

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

.footer-links a {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover {
  color: #ffffff;
  background: rgba(14, 165, 233, 0.32);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 38px auto 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .library-grid,
  .latest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rank-layout,
  .detail-layout,
  .intro-strip {
    grid-template-columns: 1fr;
  }

  .rank-side {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: grid;
    gap: 4px;
  }

  .hero {
    height: 72vh;
    min-height: 520px;
  }

  .hero-content {
    top: 54%;
  }

  .hero-arrow {
    display: none;
  }

  .section-head,
  .filter-panel,
  .quick-search {
    display: grid;
    grid-template-columns: 1fr;
  }

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

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

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

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

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

@media (max-width: 560px) {
  .container,
  .header-inner,
  .mobile-nav,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .brand-text {
    font-size: 18px;
  }

  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-content {
    left: 20px;
    width: calc(100% - 40px);
  }

  .hero-content h1 {
    font-size: 40px;
  }

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

  .hero-tags {
    display: none;
  }

  .section,
  .hot-band {
    padding: 48px 0;
  }

  .page-hero {
    padding-top: 48px;
  }

  .movie-grid,
  .library-grid,
  .latest-grid,
  .category-grid,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 42px 84px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .rank-copy p {
    display: none;
  }

  .watch-panel {
    border-radius: 20px;
  }

  .play-overlay span {
    width: 76px;
    height: 76px;
    font-size: 30px;
  }
}
