:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.16);
  --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--slate-50);
  color: var(--slate-800);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.is-missing {
  opacity: 0;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  backdrop-filter: blur(18px);
}

.header-shell {
  max-width: var(--container);
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald-600), var(--teal-600));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(5, 150, 105, 0.28);
  font-size: 15px;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 15px;
  color: var(--slate-700);
}

.nav-link {
  position: relative;
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link.is-active,
.mobile-link:hover {
  color: var(--emerald-600);
}

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

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

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--slate-100);
  color: var(--slate-800);
  padding: 10px;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--slate-800);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 18px;
}

.mobile-nav.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--slate-100);
  color: var(--slate-700);
  font-weight: 650;
}

main {
  padding-top: 64px;
}

.hero-slider {
  position: relative;
  min-height: 500px;
  height: 70vh;
  overflow: hidden;
  background: var(--slate-900);
}

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

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

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.03);
  transition: transform 6s ease;
}

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

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.18), transparent 34%),
    linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.48) 46%, rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px 78px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: var(--white);
}

.hero-badge-row,
.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-badge-row {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--emerald-600);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

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

.hero-content p {
  max-width: 720px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-meta {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.hero-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta span::before,
.detail-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-500);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  background: var(--emerald-600);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(5, 150, 105, 0.32);
}

.primary-button:hover {
  background: var(--emerald-700);
  transform: translateY(-2px) scale(1.02);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.hero-search {
  width: min(100%, 560px);
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  padding: 0 14px;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-search button {
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--emerald-700);
  font-weight: 800;
  padding: 10px 20px;
  cursor: pointer;
}

.hero-arrow-group {
  position: absolute;
  right: 32px;
  bottom: 34px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 44px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

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

.section-soft {
  background: linear-gradient(135deg, var(--emerald-50), #f0fdfa);
}

.section-shell,
.detail-shell {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading a {
  color: var(--emerald-600);
  font-weight: 800;
}

.featured-grid,
.movie-grid,
.category-grid,
.rank-grid {
  display: grid;
  gap: 24px;
}

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

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

.movie-grid-compact {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

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

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

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

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

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

.movie-card,
.category-card,
.rank-item,
.detail-text-card {
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.movie-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-frame,
.category-cover,
.rank-cover,
.compact-thumb,
.detail-poster,
.video-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-800), var(--emerald-700));
}

.poster-frame {
  display: block;
  aspect-ratio: 2 / 3;
}

.movie-card-featured .poster-frame {
  aspect-ratio: 16 / 10;
}

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent);
}

.card-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.92);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

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

.card-meta,
.rank-meta {
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 750;
}

.movie-card h2,
.rank-info h2,
.category-body h2 {
  margin: 6px 0 8px;
  color: var(--slate-900);
  font-size: 19px;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.movie-grid-compact .movie-card h2,
.movie-grid-search .movie-card h2 {
  font-size: 16px;
}

.movie-card h2 a:hover,
.rank-info h2 a:hover,
.category-body h2 a:hover,
.compact-info strong:hover {
  color: var(--emerald-600);
}

.movie-card p,
.category-body p,
.rank-info p,
.detail-text-card p {
  margin: 0;
  color: var(--slate-600);
}

.movie-card p {
  display: -webkit-box;
  min-height: 3.2em;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--emerald-50);
  color: var(--emerald-700);
  font-size: 12px;
  font-weight: 750;
}

.tag-row-light span {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.category-card {
  display: grid;
  grid-template-columns: 40% 1fr;
}

.category-cover {
  min-height: 210px;
}

.category-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.12));
}

.category-cover span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.category-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.category-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 750;
}

.category-links a:hover {
  background: var(--emerald-600);
  color: var(--white);
}

.rank-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 14px;
}

.rank-cover {
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
}

.rank-number {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald-600), var(--teal-600));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.28);
}

.rank-info {
  align-self: center;
}

.page-hero {
  background: linear-gradient(135deg, var(--emerald-600), var(--teal-600));
  color: var(--white);
  padding: 72px 0 62px;
}

.page-hero-shell {
  width: min(100% - 48px, 960px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--emerald-100);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.filter-toolbar {
  margin-bottom: 28px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-card);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--slate-700);
  font-weight: 800;
}

.search-box input {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  outline: 0;
  padding: 14px 16px;
  color: var(--slate-800);
  background: var(--slate-50);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-button {
  border: 0;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  padding: 8px 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--emerald-600);
  color: var(--white);
  transform: translateY(-1px);
}

[data-filter-item].is-hidden {
  display: none;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--slate-900);
  color: var(--white);
}

.detail-hero-bg,
.detail-hero-mask {
  position: absolute;
  inset: 0;
}

.detail-hero-bg {
  opacity: 0.42;
  filter: blur(10px);
  transform: scale(1.05);
}

.detail-hero-mask {
  background:
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.22), transparent 32%),
    linear-gradient(to top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.64));
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 54px 0 64px;
}

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

.breadcrumb a:hover {
  color: var(--white);
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: center;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.detail-info h1 {
  margin: 0 0 18px;
  max-width: 850px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.detail-meta {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.detail-info .primary-button {
  margin-top: 24px;
}

.player-section {
  padding: 72px 0 24px;
  background: var(--slate-900);
  color: var(--white);
}

.player-section h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

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

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.20));
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.video-overlay[hidden] {
  display: none;
}

.play-symbol {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  background: var(--emerald-600);
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 24px 50px rgba(5, 150, 105, 0.35);
}

.detail-content-section {
  background: var(--slate-900);
  padding-top: 54px;
}

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

.detail-text-card {
  padding: 28px;
}

.detail-text-card h2 {
  margin: 0 0 14px;
  color: var(--slate-900);
  font-size: 26px;
  letter-spacing: -0.03em;
}

.compact-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--slate-200);
}

.compact-thumb {
  width: 72px;
  aspect-ratio: 2 / 3;
  flex: none;
  border-radius: 12px;
}

.compact-info {
  align-self: center;
}

.compact-info strong {
  display: block;
  color: var(--slate-900);
  line-height: 1.35;
}

.compact-info em {
  display: block;
  margin-top: 4px;
  color: var(--slate-500);
  font-style: normal;
  font-size: 13px;
}

.site-footer {
  background: var(--slate-900);
  color: var(--white);
}

.footer-shell {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
}

.footer-brand p {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--slate-400);
}

.footer-logo {
  color: var(--white);
  font-size: 22px;
}

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

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

.footer-link-list {
  display: grid;
  gap: 8px;
}

.footer-link-list a {
  color: var(--slate-400);
}

.footer-link-list a:hover {
  color: var(--emerald-400);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 20px 24px;
  text-align: center;
  color: var(--slate-500);
  font-size: 14px;
}

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

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

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

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

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

  .mobile-menu-button {
    display: block;
  }

  .featured-grid,
  .movie-grid,
  .movie-grid-search,
  .movie-grid-compact,
  .category-grid,
  .category-grid-large,
  .rank-grid-home,
  .rank-grid,
  .detail-text-grid,
  .footer-shell,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-arrow-group {
    right: 24px;
    bottom: 22px;
  }

  .hero-dots {
    left: 24px;
    bottom: 34px;
    transform: none;
  }

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

  .detail-poster {
    width: min(100%, 280px);
  }

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

@media (max-width: 560px) {
  .header-shell,
  .hero-content,
  .section-shell,
  .detail-shell,
  .page-hero-shell,
  .footer-shell {
    width: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-shell,
  .detail-shell,
  .page-hero-shell,
  .footer-shell {
    margin: 0;
  }

  .hero-slider {
    min-height: 620px;
    height: auto;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 95px;
  }

  .hero-search {
    border-radius: 22px;
    flex-direction: column;
  }

  .hero-search input {
    min-height: 42px;
  }

  .hero-arrow-group {
    display: none;
  }

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

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

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

  .category-cover {
    min-height: 180px;
  }

  .rank-item {
    grid-template-columns: 84px 1fr;
    gap: 12px;
  }

  .rank-info p,
  .movie-card p {
    display: none;
  }

  .detail-hero-content {
    padding-top: 34px;
  }

  .player-section {
    padding-top: 44px;
  }
}
