:root {
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --orange: #f97316;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 16px 45px rgba(15, 23, 42, 0.14);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 28%, #f8fafc 100%);
  color: var(--slate-900);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--amber) 0%, var(--orange) 52%, var(--amber-dark) 100%);
  box-shadow: 0 12px 35px rgba(217, 119, 6, 0.26);
}

.site-header-inner {
  width: min(1280px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.site-logo {
  font-size: 24px;
  white-space: nowrap;
}

.site-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff7ed;
  transform: translateY(-1px);
}

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

.header-search input,
.mobile-search input,
.quick-search-inner input {
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 16px;
  color: var(--slate-900);
  min-width: 230px;
}

.header-search button,
.mobile-search button,
.quick-search-inner button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--slate-900);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-button span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
}

.mobile-nav {
  display: none;
  padding: 16px;
  background: linear-gradient(180deg, var(--amber-dark), var(--orange));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.mobile-nav nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.mobile-nav .nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.home-main {
  padding-top: 0;
}

.page-main,
.detail-main {
  padding-top: 68px;
}

.hero-section {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber), var(--orange) 48%, var(--amber-dark));
  color: var(--white);
}

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

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

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.08);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.84), rgba(217, 119, 6, 0.72) 52%, rgba(2, 6, 23, 0.62));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  min-height: 78vh;
  padding: 110px 0 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 360px;
  align-items: center;
  gap: 54px;
}

.hero-copy h1,
.page-hero h1,
.detail-intro h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 12px 36px rgba(15, 23, 42, 0.35);
}

.hero-copy h2 {
  margin: 18px 0 10px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
}

.hero-copy p,
.page-hero p,
.detail-intro p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #fef3c7;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.tag-list span {
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags span {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

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

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

.primary-button {
  background: var(--white);
  color: var(--amber-dark);
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.24);
}

.ghost-button {
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

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

.hero-poster-card {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  min-height: 500px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.36);
  transform: rotate(2deg);
}

.hero-poster-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.hero-poster-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.72);
  color: var(--white);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

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

.quick-search-block {
  margin-top: -44px;
  position: relative;
  z-index: 10;
}

.quick-search-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  backdrop-filter: blur(18px);
}

.quick-search-inner h2 {
  margin: 0;
  font-size: 24px;
}

.quick-search-inner input {
  min-width: min(420px, 45vw);
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px var(--slate-200);
}

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

.soft-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1280px) / 2));
  padding-left: max(16px, calc((100% - 1280px) / 2));
  background: linear-gradient(90deg, rgba(255, 247, 237, 0.95), rgba(254, 243, 199, 0.62));
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
}

.section-heading p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--slate-600);
  line-height: 1.8;
}

.section-heading > a {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--amber-dark);
  font-weight: 900;
  background: #fff7ed;
  box-shadow: inset 0 0 0 1px #fed7aa;
}

.section-kicker {
  color: var(--amber-dark);
  margin-bottom: 6px;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

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

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

.year-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  color: var(--white);
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
}

.year-badge {
  top: 12px;
  left: 12px;
}

.rank-badge {
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

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

.movie-meta-line {
  display: flex;
  gap: 8px;
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.movie-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--amber-dark);
}

.movie-card p {
  margin: 10px 0 14px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-list span {
  color: var(--amber-dark);
  background: #fff7ed;
}

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

.category-card {
  min-height: 190px;
  border-radius: 24px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), var(--amber-dark));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}

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

.category-card span {
  font-size: 24px;
  font-weight: 900;
}

.category-card strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
}

.category-card em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.7;
  font-style: normal;
}

.rank-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rank-item {
  display: grid;
  grid-template-columns: 42px 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 84px;
  border-radius: 18px;
  padding: 12px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.rank-number {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.rank-item img {
  width: 58px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-title {
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-meta {
  display: block;
  color: var(--slate-500);
  font-size: 12px;
  margin-top: 5px;
}

.page-hero {
  position: relative;
  min-height: 360px;
  padding: 78px max(16px, calc((100% - 1280px) / 2)) 58px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--slate-900), var(--amber-dark) 52%, var(--orange));
}

.small-hero h1 {
  font-size: clamp(36px, 5vw, 62px);
}

.small-hero p {
  max-width: 820px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.8fr) repeat(3, minmax(150px, 0.7fr));
  gap: 14px;
  margin-bottom: 24px;
  border-radius: 24px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--slate-600);
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 12px 14px;
  outline: 0;
  background: #f8fafc;
  color: var(--slate-900);
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16);
}

.empty-result {
  display: none;
  margin: 28px 0;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  color: var(--slate-600);
  background: #fff7ed;
}

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

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

.category-overview-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  border-radius: 24px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.category-cover {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
}

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

.category-overview-card h2 {
  margin: 0;
  font-size: 28px;
}

.category-overview-card p {
  color: var(--slate-600);
  line-height: 1.75;
}

.sample-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.sample-links a {
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--amber-dark);
  background: #fff7ed;
  font-weight: 800;
  font-size: 13px;
}

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

.slim-list {
  grid-template-columns: 1fr;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

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

.detail-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
  filter: blur(1px) saturate(1.1);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(146, 64, 14, 0.72));
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 54px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
}

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

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

.detail-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
}

.detail-section {
  padding-top: 42px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 360px;
  gap: 28px;
  align-items: start;
}

.player-panel,
.article-panel,
.info-card,
.side-rank-card {
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.player-panel {
  overflow: hidden;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.68));
  cursor: pointer;
}

.play-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 50px rgba(249, 115, 22, 0.42);
  font-size: 28px;
}

.article-panel {
  margin-top: 24px;
  padding: 28px;
}

.article-panel h2,
.info-card h2,
.side-rank-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.article-panel p {
  margin: 0 0 22px;
  color: var(--slate-600);
  line-height: 1.95;
  font-size: 17px;
}

.detail-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 20px;
}

.info-card,
.side-rank-card {
  padding: 24px;
}

.info-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-card dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--slate-200);
}

.info-card dt {
  color: var(--slate-500);
  font-weight: 800;
}

.info-card dd {
  margin: 0;
  color: var(--slate-900);
  font-weight: 800;
}

.side-links {
  display: grid;
  gap: 10px;
}

.side-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff7ed;
  color: var(--slate-900);
  font-weight: 900;
}

.side-links span {
  color: var(--amber-dark);
  font-size: 13px;
}

.site-footer {
  margin-top: 60px;
  color: var(--white);
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

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

.footer-brand p {
  max-width: 520px;
  color: #cbd5e1;
  line-height: 1.8;
}

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

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

.footer-links a {
  color: #cbd5e1;
}

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

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

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

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

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

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

  .mobile-menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-poster-card {
    min-height: 360px;
    transform: none;
  }

  .hero-poster-card img {
    min-height: 360px;
  }

  .quick-search-inner,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-search-inner form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .quick-search-inner input {
    min-width: 0;
    width: 100%;
  }

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

  .rank-card-list,
  .category-overview-grid,
  .two-columns,
  .footer-inner,
  .detail-layout,
  .detail-intro {
    grid-template-columns: 1fr;
  }

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

  .detail-side {
    position: static;
  }

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

@media (max-width: 560px) {
  .site-header-inner {
    width: calc(100% - 24px);
  }

  .site-logo {
    font-size: 20px;
  }

  .hero-content {
    width: calc(100% - 24px);
    padding-top: 98px;
  }

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

  .hero-copy h2 {
    font-size: 30px;
  }

  .hero-dots {
    right: 20px;
    bottom: 20px;
  }

  .content-section {
    width: calc(100% - 24px);
    padding: 44px 0;
  }

  .soft-section {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .featured-grid,
  .movie-grid,
  .category-movie-grid,
  .compact-grid,
  .category-grid,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .category-overview-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

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

  .page-hero {
    padding-right: 12px;
    padding-left: 12px;
  }

  .detail-hero-content {
    width: calc(100% - 24px);
  }

  .article-panel,
  .info-card,
  .side-rank-card {
    padding: 20px;
  }
}
