:root {
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --shadow-soft: 0 18px 50px rgba(28, 25, 23, 0.10);
  --shadow-card: 0 10px 30px rgba(28, 25, 23, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-800);
  background: var(--stone-50);
  line-height: 1.6;
}

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

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

button,
input {
  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.95);
  border-bottom: 1px solid var(--stone-200);
  box-shadow: 0 4px 18px rgba(28, 25, 23, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

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

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
  box-shadow: 0 14px 24px rgba(217, 119, 6, 0.28);
}

.brand-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 20px;
  color: var(--stone-800);
}

.brand-text small {
  margin-top: 3px;
  font-size: 12px;
  color: var(--stone-500);
}

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

.nav-link {
  position: relative;
  color: var(--stone-700);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: var(--amber-600);
  transition: right 0.2s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  right: 0;
}

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

.header-search input,
.mobile-search input,
.inline-search input,
.filter-bar input {
  border: 1px solid var(--stone-300);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--stone-800);
  background: white;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

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

.header-search input:focus,
.mobile-search input:focus,
.inline-search input:focus,
.filter-bar input:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.header-search button,
.mobile-search button,
.inline-search button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  color: white;
  font-weight: 800;
  cursor: pointer;
  background: var(--amber-600);
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.inline-search button:hover {
  background: var(--amber-700);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--stone-100);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--stone-700);
}

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

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

.mobile-search input {
  flex: 1;
  width: 100%;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mobile-nav .nav-link {
  padding: 10px 12px;
  border-radius: 12px;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  background: var(--stone-100);
}

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

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

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.14));
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  color: white;
  max-width: 1180px;
}

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

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 13px;
  border-radius: 999px;
  color: white;
  background: var(--amber-500);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.26);
  font-size: 14px;
  font-weight: 800;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.tag-row span {
  color: var(--stone-600);
  background: var(--stone-100);
}

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

.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  min-height: 46px;
  padding: 0 22px;
  color: white;
  background: var(--amber-600);
  box-shadow: 0 16px 32px rgba(217, 119, 6, 0.28);
}

.primary-btn:hover {
  background: var(--amber-700);
  transform: translateY(-2px);
}

.ghost-btn {
  min-height: 46px;
  padding: 0 22px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(0, 0, 0, 0.34);
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: white;
  background:
    radial-gradient(circle at 18% 0%, rgba(245, 158, 11, 0.32), transparent 30%),
    linear-gradient(135deg, var(--stone-900), #2c221b 68%, #3d250c);
}

.page-hero.small {
  padding: 66px 0;
}

.page-hero h1,
.detail-intro h1 {
  max-width: 800px;
  margin: 14px 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.page-hero p,
.detail-intro .lead-text {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.inline-search {
  margin-top: 26px;
  max-width: 620px;
}

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

.content-section {
  padding: 70px 0;
  background: white;
}

.content-section.alt {
  background: var(--stone-50);
}

.content-section.warm {
  background: linear-gradient(180deg, var(--amber-50), white);
}

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

.section-heading h2 {
  margin: 0;
  color: var(--stone-800);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

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

.section-link {
  color: var(--amber-700);
  min-width: max-content;
}

.section-link:hover {
  color: var(--amber-600);
  transform: translateX(2px);
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.48);
  box-shadow: 0 22px 48px rgba(28, 25, 23, 0.14);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--stone-200);
  aspect-ratio: 2 / 3;
}

.movie-card.large .poster-link {
  aspect-ratio: 16 / 10;
}

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

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

.poster-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: white;
  background: rgba(217, 119, 6, 0.92);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.card-body {
  padding: 15px;
}

.card-body h3 {
  margin: 0 0 8px;
  color: var(--stone-800);
  font-size: 17px;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: var(--amber-600);
}

.card-body p {
  display: -webkit-box;
  min-height: 46px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--stone-600);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--stone-500);
  font-size: 13px;
  font-weight: 700;
}

.card-body .tag-row {
  margin-top: 12px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 44px 54px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 11px;
  border: 1px solid var(--stone-200);
  border-radius: 16px;
  background: white;
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  border-color: var(--amber-400);
}

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

.rank-item img {
  width: 54px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--stone-200);
}

.rank-title {
  display: block;
  overflow: hidden;
  color: var(--stone-800);
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-meta {
  grid-column: 3;
  color: var(--stone-500);
  font-size: 12px;
}

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

.category-card {
  overflow: hidden;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 150px;
  overflow: hidden;
  background: var(--stone-200);
}

.category-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-body {
  padding: 20px;
}

.category-body h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.category-body p {
  margin: 0 0 14px;
  color: var(--stone-600);
}

.category-body span {
  color: var(--amber-700);
  font-weight: 900;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  background: var(--stone-50);
}

.filter-bar input {
  flex: 1;
  min-width: 240px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-buttons button {
  border: 1px solid var(--stone-300);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--stone-700);
  background: white;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.filter-buttons button:hover,
.filter-buttons button.is-active {
  color: white;
  border-color: var(--amber-600);
  background: var(--amber-600);
}

.empty-state {
  display: none;
  margin: 34px 0 0;
  padding: 28px;
  border: 1px dashed var(--stone-300);
  border-radius: var(--radius-md);
  color: var(--stone-500);
  text-align: center;
  background: var(--stone-50);
}

.empty-state.is-visible {
  display: block;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 56px 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--stone-200);
  border-radius: 18px;
  background: white;
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-row:hover {
  transform: translateY(-3px);
  border-color: var(--amber-400);
}

.ranking-index {
  color: var(--amber-600);
  font-size: 25px;
  font-weight: 900;
  text-align: center;
}

.ranking-row img {
  width: 92px;
  height: 128px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--stone-200);
}

.ranking-info {
  display: grid;
  gap: 6px;
}

.ranking-info strong {
  font-size: 20px;
}

.ranking-info em,
.ranking-info small {
  color: var(--stone-500);
  font-style: normal;
}

.detail-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: white;
}

.detail-poster {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.35);
  background: var(--stone-200);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-meta {
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.78);
}

.detail-tags span {
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

.detail-intro .primary-btn {
  margin-top: 24px;
}

.player-section {
  padding: 54px 0;
  background: var(--stone-900);
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: black;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.movie-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
}

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

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

.play-overlay span {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--amber-600);
  box-shadow: 0 18px 42px rgba(217, 119, 6, 0.36);
  position: relative;
}

.play-overlay span::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 24px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 24px solid white;
}

.player-message {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: none;
  padding: 12px 16px;
  border-radius: 12px;
  color: white;
  background: rgba(0, 0, 0, 0.62);
}

.player-message.is-visible {
  display: block;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.detail-panel {
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  padding: 24px;
  background: white;
  box-shadow: var(--shadow-card);
}

.detail-panel h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

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

.facts-panel {
  grid-row: span 2;
}

.facts-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.facts-panel dt {
  color: var(--stone-500);
  font-size: 13px;
  font-weight: 800;
}

.facts-panel dd {
  margin: -8px 0 6px;
  color: var(--stone-800);
  font-weight: 800;
}

.site-footer {
  color: var(--stone-300);
  background: var(--stone-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 34px;
  padding: 52px 0;
}

.footer-brand {
  color: white;
  font-size: 20px;
  font-weight: 900;
}

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

.site-footer h2 {
  margin: 0 0 16px;
  color: white;
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--stone-400);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--amber-400);
  transform: translateX(3px);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--stone-500);
  text-align: center;
}

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

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

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

  .menu-toggle {
    display: block;
  }

  .hero-slider {
    height: 520px;
  }

  .hero-content {
    bottom: 62px;
  }

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

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

  .detail-poster {
    max-width: 280px;
  }

  .facts-panel {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

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

  .hero-slider {
    height: 480px;
  }

  .hero-content h1,
  .page-hero h1,
  .detail-intro h1 {
    font-size: 34px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-tags span:nth-child(n + 4) {
    display: none;
  }

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

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

  .movie-grid.two-cols,
  .movie-grid.three-cols,
  .movie-grid.four-cols,
  .movie-grid.six-cols,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .movie-card.large .poster-link {
    aspect-ratio: 2 / 3;
  }

  .card-body {
    padding: 12px;
  }

  .card-body h3 {
    font-size: 15px;
  }

  .card-body p,
  .card-body .tag-row {
    display: none;
  }

  .category-thumbs {
    height: 110px;
  }

  .filter-bar {
    padding: 14px;
  }

  .filter-bar input,
  .inline-search input {
    min-width: 100%;
  }

  .inline-search,
  .mobile-search {
    flex-direction: column;
    align-items: stretch;
  }

  .ranking-row {
    grid-template-columns: 46px 72px minmax(0, 1fr);
    gap: 12px;
  }

  .ranking-row img {
    width: 72px;
    height: 100px;
  }

  .ranking-info .tag-row,
  .ranking-info small {
    display: none;
  }

  .detail-hero,
  .page-hero {
    padding: 48px 0;
  }

  .detail-poster {
    display: none;
  }

  .play-overlay span {
    width: 68px;
    height: 68px;
  }

  .play-overlay span::before {
    left: 28px;
    top: 20px;
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 21px;
  }
}

@media (max-width: 480px) {
  .movie-grid.two-cols,
  .movie-grid.three-cols,
  .movie-grid.four-cols,
  .movie-grid.six-cols,
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    gap: 8px;
  }

  .primary-btn,
  .ghost-btn {
    min-height: 42px;
    padding: 0 16px;
  }
}
