:root {
  --emerald: #059669;
  --teal: #0d9488;
  --cyan: #0891b2;
  --rose: #f43f5e;
  --orange: #f97316;
  --amber: #f59e0b;
  --purple: #9333ea;
  --slate: #0f172a;
  --gray: #f8fafc;
  --text: #172033;
  --muted: #64748b;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  min-height: 100vh;
}

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: 100;
  background: linear-gradient(90deg, var(--emerald), var(--teal), var(--cyan));
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.32);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  color: #fde047;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: rotate(12deg) scale(1.05);
}

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

.nav-link,
.mobile-link {
  font-weight: 700;
  opacity: 0.92;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #fde047;
  opacity: 1;
}

.top-search {
  display: flex;
  align-items: center;
  width: 310px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.top-search input,
.mobile-search input,
.hero-search input,
.filter-input,
.filter-select {
  border: 0;
  outline: 0;
  background: #ffffff;
  color: #0f172a;
}

.top-search input {
  flex: 1;
  min-width: 0;
  padding: 11px 16px;
  background: transparent;
}

.top-search button,
.mobile-search button,
.hero-search button {
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  padding: 11px 16px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 12px;
  padding: 9px 12px;
  cursor: pointer;
}

.quick-cats {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 9px 24px 12px;
  background: rgba(15, 23, 42, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.quick-cats a {
  color: rgba(255, 255, 255, 0.88);
}

.quick-cats a:hover {
  color: #fde047;
}

.mobile-panel {
  padding: 16px 24px 24px;
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.98), rgba(8, 145, 178, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.mobile-search {
  display: flex;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 14px;
  background: #ffffff;
}

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

.mobile-link {
  display: block;
  padding: 12px 0;
}

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

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s 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(0deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.62) 44%, rgba(2, 6, 23, 0.18) 100%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100% - 1280px) / 2 + 24px));
  right: 24px;
  bottom: 80px;
  max-width: 760px;
  color: #ffffff;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 28px rgba(244, 63, 94, 0.28);
}

.hero-content h1 {
  margin: 22px 0 16px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 22px;
}

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

.hero-meta span,
.detail-meta span,
.card-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

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

.primary-btn {
  padding: 13px 28px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  box-shadow: 0 16px 34px rgba(5, 150, 105, 0.32);
}

.ghost-btn {
  padding: 12px 24px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.small-btn {
  padding: 10px 18px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
}

.primary-btn:hover,
.ghost-btn:hover,
.small-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.52);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.intro-block {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 470px);
  gap: 36px;
  align-items: center;
  margin-top: 44px;
  margin-bottom: 28px;
  padding: 34px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.intro-block h2,
.section-head h2,
.page-hero h1,
.category-overview-card h2,
.story-card h2,
.side-card h2 {
  margin: 0;
  letter-spacing: -0.03em;
}

.intro-block h2 {
  margin-top: 14px;
  font-size: clamp(28px, 4vw, 42px);
}

.intro-block p,
.page-hero p,
.category-overview-card p,
.story-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-search {
  display: flex;
  overflow: hidden;
  border-radius: 22px;
  background: #f1f5f9;
  box-shadow: inset 0 0 0 1px #e2e8f0;
}

.hero-search input {
  flex: 1;
  min-width: 0;
  padding: 17px 20px;
  background: transparent;
}

.hero-search button {
  padding: 0 26px;
}

.section-block {
  margin-top: 44px;
  margin-bottom: 56px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}

.section-head a {
  color: var(--emerald);
  font-weight: 900;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.poster,
.card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.poster {
  aspect-ratio: 3 / 4;
}

.poster img,
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.poster::after,
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.05) 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster::after,
.movie-card:hover .card-media::after {
  opacity: 1;
}

.label-hot,
.year-chip,
.rank-badge,
.play-chip {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
}

.label-hot {
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  background: var(--rose);
  font-size: 12px;
}

.year-chip {
  right: 12px;
  bottom: 12px;
  padding: 5px 10px;
  background: rgba(15, 23, 42, 0.76);
  font-size: 12px;
}

.rank-badge {
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 8px 18px rgba(244, 63, 94, 0.28);
}

.play-chip {
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.86);
  background: rgba(255, 255, 255, 0.92);
  color: var(--emerald);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
  padding: 18px;
}

.card-body h3,
.minimal-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.35;
}

.card-body h3 a:hover,
.minimal-card h3 a:hover {
  color: var(--emerald);
}

.card-body p,
.minimal-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.tag-row span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 800;
}

.card-meta span {
  background: #f1f5f9;
  color: var(--muted);
  font-size: 12px;
}

.horizontal-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 146px;
}

.horizontal-card .card-media {
  min-height: 146px;
}

.horizontal-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.minimal-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.minimal-card:hover {
  box-shadow: none;
}

.minimal-card .poster {
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  margin-bottom: 12px;
}

.minimal-card h3 {
  font-size: 15px;
  margin: 0 0 4px;
}

.minimal-card p {
  font-size: 12px;
  margin: 0;
}

.latest-panel {
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
  box-shadow: var(--shadow);
}

.stack-list {
  display: grid;
  gap: 18px;
}

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

.category-tile,
.category-overview-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.category-tile {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(5, 150, 105, 0.16), transparent 36%), radial-gradient(circle at 80% 10%, rgba(8, 145, 178, 0.16), transparent 34%);
}

.category-tile strong,
.category-tile span {
  position: relative;
}

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

.category-tile span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.ranking-panel {
  padding: 34px;
  border-radius: 32px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), #c026d3, var(--rose));
  box-shadow: 0 20px 60px rgba(147, 51, 234, 0.26);
}

.ranking-panel .movie-card {
  color: var(--text);
}

.light-head h2,
.light-head a {
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
}

.ranking-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-hero {
  color: #ffffff;
  background: linear-gradient(90deg, var(--emerald), var(--teal), var(--cyan));
  padding: 64px 0;
}

.page-hero h1 {
  margin-top: 16px;
  font-size: clamp(38px, 6vw, 64px);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.crumbs a:hover {
  color: #fde047;
}

.category-overview {
  display: grid;
  gap: 28px;
}

.category-overview-card {
  padding: 28px;
}

.category-overview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.category-overview-card h2 {
  font-size: 30px;
}

.compact-grid .minimal-card:nth-child(n + 5) {
  display: none;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 190px 190px auto;
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.filter-input,
.filter-select {
  width: 100%;
  border-radius: 15px;
  padding: 13px 15px;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px #e2e8f0;
}

.filter-count {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.empty-state {
  padding: 48px;
  border-radius: 24px;
  background: #ffffff;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.detail-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) saturate(1.1);
  transform: scale(1.04);
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.2));
}

.detail-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: end;
  padding: 80px 0 56px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

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

.detail-summary h1 {
  margin: 20px 0 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.detail-one-line {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.7;
}

.detail-tags {
  margin: 20px 0 26px;
}

.player-section {
  margin-top: 42px;
}

.player-stage {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.26);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.1));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--emerald);
  background: rgba(255, 255, 255, 0.94);
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.player-stage.is-playing .player-overlay,
.player-overlay[hidden] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.story-card,
.side-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.story-card {
  padding: 34px;
}

.story-card h2 {
  font-size: 28px;
  margin: 0 0 16px;
}

.story-card h2:not(:first-child) {
  margin-top: 30px;
}

.story-card p {
  font-size: 17px;
  color: #334155;
}

.side-card {
  padding: 28px;
  align-self: start;
}

.side-card h2 {
  font-size: 24px;
  margin-bottom: 18px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px 14px;
  margin: 0;
}

.side-card dt {
  color: var(--muted);
  font-weight: 800;
}

.side-card dd {
  margin: 0;
  font-weight: 700;
}

.side-card dd a {
  color: var(--emerald);
}

.detail-nav {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.detail-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8fafc;
  color: #0f766e;
  font-weight: 800;
}

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

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

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

.footer-main h2,
.footer-links h3 {
  margin: 0 0 16px;
  color: #ffffff;
}

.footer-main p {
  line-height: 1.8;
  margin: 0;
}

.footer-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

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

.footer-bottom {
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}

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

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

@media (max-width: 940px) {
  .desktop-nav,
  .top-search,
  .quick-cats {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

  .hero-slider {
    height: 560px;
  }

  .hero-content {
    bottom: 72px;
  }

  .intro-block,
  .detail-content,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .cards-4,
  .cards-6,
  .category-grid,
  .ranking-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .filter-count {
    justify-content: flex-start;
  }

  .detail-hero-inner {
    grid-template-columns: 180px 1fr;
  }
}

@media (max-width: 640px) {
  .content-wrap {
    width: min(100% - 28px, 1280px);
  }

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

  .hero-slider {
    height: 520px;
  }

  .hero-content {
    left: 18px;
    right: 18px;
    bottom: 70px;
  }

  .hero-arrow {
    display: none;
  }

  .intro-block,
  .latest-panel,
  .ranking-panel,
  .category-overview-card,
  .story-card,
  .side-card {
    padding: 22px;
    border-radius: 20px;
  }

  .cards-3,
  .cards-4,
  .cards-6,
  .category-grid,
  .ranking-list {
    grid-template-columns: 1fr;
  }

  .horizontal-card {
    grid-template-columns: 120px 1fr;
  }

  .horizontal-card .card-media {
    min-height: 150px;
  }

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

  .detail-hero {
    min-height: auto;
  }

  .detail-hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 0 38px;
  }

  .detail-poster {
    width: min(220px, 70vw);
  }

  .player-stage {
    border-radius: 18px;
  }

  .player-overlay span {
    width: 72px;
    height: 72px;
    font-size: 26px;
  }
}
