:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(2, 132, 199, 0.16);
  --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: linear-gradient(180deg, var(--sky-50), var(--white) 38%, var(--gray-50));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

main {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(186, 230, 253, 0.8);
  background: linear-gradient(90deg, rgba(240, 249, 255, 0.94), rgba(239, 246, 255, 0.94));
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.08);
  backdrop-filter: blur(14px);
}

.site-nav {
  width: min(1280px, 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: 12px;
  min-width: 210px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--sky-500), #2563eb);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.32);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  color: var(--gray-900);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--gray-500);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gray-700);
  font-weight: 650;
  white-space: nowrap;
}

.nav-links a {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sky-700);
  border-color: var(--sky-500);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(224, 242, 254, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--gray-700);
}

.mobile-panel {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
}

.mobile-panel a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--gray-700);
  font-weight: 650;
}

.mobile-panel a:hover {
  color: var(--sky-700);
  background: var(--sky-100);
}

.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  margin-bottom: 44px;
}

.hero-stage {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.24);
  background: var(--gray-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
  transform: scale(1.02);
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide img,
.page-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(14, 165, 233, 0.34), transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.05));
}

.hero-content {
  position: absolute;
  left: clamp(24px, 5vw, 58px);
  right: clamp(24px, 5vw, 58px);
  bottom: clamp(28px, 7vw, 58px);
  color: var(--white);
  max-width: 720px;
}

.hero-badge,
.detail-kicker,
.page-hero span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  background: var(--sky-500);
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.35);
}

.hero-content h1 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-content p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.8;
}

.hero-tags,
.detail-meta,
.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.hero-tags span,
.detail-meta span,
.movie-meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gray-700);
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 650;
}

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

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

.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--sky-500), #2563eb);
  box-shadow: 0 16px 32px rgba(14, 165, 233, 0.35);
}

.ghost-btn {
  color: var(--sky-700);
  background: rgba(255, 255, 255, 0.9);
}

.ghost-btn.dark {
  color: var(--gray-800);
  background: var(--sky-100);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.hero-dots {
  position: absolute;
  left: clamp(24px, 5vw, 58px);
  bottom: 20px;
  display: flex;
  gap: 9px;
}

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

.hero-dot.active {
  background: var(--white);
}

.hero-side {
  display: grid;
  grid-template-rows: 1.35fr 1fr;
  gap: 18px;
}

.hero-side-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 26px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.26), transparent 28%),
    linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: var(--shadow);
}

.hero-side-card.big {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #0284c7, #1d4ed8 56%, #0f172a);
}

.hero-side-card span,
.hero-side-card em {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.hero-side-card strong {
  display: block;
  margin: 14px 0 10px;
  font-size: 28px;
  line-height: 1.15;
}

.content-section,
.search-section,
.channel-overview,
.detail-layout {
  margin-top: 44px;
}

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

.section-heading > span {
  flex: 0 0 5px;
  width: 5px;
  height: 36px;
  border-radius: 999px;
  background: var(--sky-600);
}

.section-heading div {
  flex: 1;
}

.section-heading p {
  margin: 0 0 2px;
  color: var(--sky-600);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

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

.section-heading.compact h2 {
  font-size: 24px;
}

.search-section {
  padding: 28px;
  border: 1px solid rgba(186, 230, 253, 0.8);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr 180px 150px auto;
  gap: 12px;
}

.search-panel input,
.search-panel select {
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--sky-200);
  border-radius: 14px;
  color: var(--gray-800);
  outline: none;
  background: var(--white);
}

.search-panel input:focus,
.search-panel select:focus {
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.13);
}

.search-panel button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  font-weight: 800;
  background: var(--sky-600);
}

.search-results {
  display: none;
  margin-top: 20px;
}

.search-results.active {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.search-result-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.search-result-card img {
  width: 72px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--sky-100);
}

.search-result-card strong {
  display: block;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.search-result-card span {
  display: block;
  color: var(--gray-500);
  font-size: 13px;
  line-height: 1.5;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky-100), var(--blue-100));
}

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

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

.poster-year,
.poster-type {
  position: absolute;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.poster-year {
  left: 12px;
  color: var(--white);
  background: rgba(2, 132, 199, 0.9);
}

.poster-type {
  right: 12px;
  color: var(--sky-700);
  background: rgba(255, 255, 255, 0.9);
}

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

.movie-card h3,
.movie-card h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.35;
}

.movie-card p {
  display: -webkit-box;
  min-height: 48px;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.movie-meta span {
  color: var(--sky-700);
  background: var(--sky-50);
}

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

.tag-row span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--gray-500);
  background: var(--gray-100);
  font-size: 12px;
  font-weight: 650;
}

.soft-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(90deg, rgba(224, 242, 254, 0.9), rgba(219, 234, 254, 0.9));
  box-shadow: var(--shadow-soft);
}

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

.category-card {
  position: relative;
  display: flex;
  min-height: 168px;
  overflow: hidden;
  border-radius: 20px;
  padding: 18px;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--gray-900);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.category-card:hover img {
  transform: scale(1.06);
  opacity: 0.74;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 64%);
}

.category-card span,
.category-card strong {
  position: relative;
  z-index: 1;
}

.category-card span {
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 850;
}

.category-card strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.split-aside,
.side-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 42px 58px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  background: var(--sky-50);
  transform: translateX(4px);
}

.rank-num {
  color: var(--sky-600);
  font-weight: 900;
}

.rank-row img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--sky-100);
}

.rank-info strong,
.rank-info em {
  display: block;
}

.rank-info strong {
  color: var(--gray-900);
  font-size: 15px;
  line-height: 1.35;
}

.rank-info em {
  margin-top: 3px;
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}

.rank-go {
  color: var(--sky-700);
  font-size: 12px;
  font-weight: 800;
}

.page-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(26px, 6vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(135deg, #0284c7, #1d4ed8 54%, #0f172a);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
}

.page-hero.small-hero {
  min-height: 260px;
}

.page-hero.category-hero > img {
  position: absolute;
  inset: 0;
  opacity: 0.36;
}

.page-hero.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.32));
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}

.page-hero p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.85;
}

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

.channel-overview-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
}

.channel-cover {
  overflow: hidden;
  border-radius: 18px;
  background: var(--sky-100);
}

.channel-cover img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.channel-overview-card h2 {
  margin: 0 0 10px;
  color: var(--gray-900);
  font-size: 24px;
}

.channel-overview-card p {
  margin: 0;
  color: var(--gray-500);
  line-height: 1.75;
}

.channel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.channel-links a,
.text-link {
  color: var(--sky-700);
  background: var(--sky-50);
}

.channel-links a {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gray-500);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--sky-700);
  font-weight: 750;
}

.player-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--gray-900);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.24);
}

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

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12), rgba(2, 6, 23, 0.54) 64%);
  cursor: pointer;
}

.player-start span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.94);
  box-shadow: 0 18px 38px rgba(14, 165, 233, 0.44);
  font-size: 28px;
}

.player-start strong {
  font-size: 18px;
}

.player-start.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.detail-article {
  margin-top: 28px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
}

.detail-title-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.detail-article h1 {
  margin: 16px 0 0;
  color: var(--gray-900);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
}

.detail-article h2 {
  margin: 26px 0 10px;
  color: var(--gray-900);
  font-size: 24px;
}

.detail-article p {
  margin: 0;
  color: var(--gray-700);
  line-height: 2;
  font-size: 16px;
}

.detail-tags span {
  color: var(--sky-700);
  background: var(--sky-50);
}

.detail-side {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 18px;
}

.side-poster {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  background: var(--sky-100);
}

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

.side-card h2 {
  margin: 0 0 14px;
  color: var(--gray-900);
  font-size: 22px;
}

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

.side-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 14px;
  color: var(--gray-800);
  background: var(--gray-50);
  font-weight: 750;
}

.side-link-list span {
  color: var(--gray-500);
  font-weight: 650;
}

.sticky-aside {
  position: sticky;
  top: 94px;
}

.site-footer {
  margin-top: 40px;
  background: linear-gradient(135deg, #0f172a, #075985);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.site-footer p {
  margin: 8px 0 0;
  max-width: 660px;
  line-height: 1.8;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.footer-tags span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 12px;
    font-size: 14px;
  }

  .hero-wrap,
  .split-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .split-aside,
  .detail-side,
  .sticky-aside {
    position: static;
  }
}

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

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

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

  .movie-grid,
  .search-results.active {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .channel-overview {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  main,
  .site-nav,
  .mobile-panel,
  .footer-inner {
    width: min(100% - 24px, 1280px);
  }

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

  .brand-subtitle {
    display: none;
  }

  .hero-stage {
    height: 460px;
  }

  .hero-side,
  .category-grid,
  .movie-grid,
  .search-results.active,
  .search-panel,
  .channel-overview-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

  .rank-row {
    grid-template-columns: 36px 52px 1fr;
  }

  .rank-go {
    display: none;
  }

  .detail-title-row {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-stage {
    height: 420px;
    border-radius: 20px;
  }

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

  .search-section,
  .soft-panel,
  .detail-article {
    padding: 20px;
  }

  .movie-grid {
    gap: 16px;
  }
}
