:root {
  --stone-950: #0c0a09;
  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-700: #44403c;
  --stone-600: #57534e;
  --stone-500: #78716c;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --stone-50: #fafaf9;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --orange-50: #fff7ed;
  --red-500: #ef4444;
  --blue-600: #2563eb;
  --shadow-soft: 0 24px 70px rgba(28, 25, 23, 0.12);
  --shadow-card: 0 14px 35px rgba(28, 25, 23, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-800);
  background: linear-gradient(180deg, var(--stone-50), #ffffff);
  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.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.home-header {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.86), rgba(28, 25, 23, 0));
}

.site-header.scrolled,
.inner-header {
  color: var(--stone-800);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(28, 25, 23, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand {
  font-size: 22px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 0.88;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--amber-500);
  opacity: 1;
  transform: translateY(-1px);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input,
.mobile-menu input,
.big-search input,
.inline-filter input,
.filter-panel input {
  border: 0;
  outline: 0;
  border-radius: 999px;
  color: var(--stone-800);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.site-header.scrolled .nav-search input,
.inner-header .nav-search input {
  background: var(--stone-100);
  box-shadow: inset 0 0 0 1px var(--stone-200);
}

.nav-search input {
  width: 210px;
  padding: 10px 16px;
}

.nav-search button,
.mobile-menu button,
.big-search button,
.filter-panel button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  background: var(--amber-500);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-search button:hover,
.mobile-menu button:hover,
.big-search button:hover,
.filter-panel button:hover {
  background: var(--amber-600);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: inherit;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.mobile-menu.is-open {
  display: grid;
  gap: 10px;
}

.mobile-menu form {
  display: flex;
  gap: 8px;
}

.mobile-menu input {
  width: 100%;
  padding: 10px 14px;
  background: var(--stone-100);
  box-shadow: inset 0 0 0 1px var(--stone-200);
}

.mobile-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--stone-700);
  font-weight: 700;
}

.mobile-menu a:hover {
  color: var(--amber-600);
  background: var(--orange-50);
}

.hero-slider {
  position: relative;
  height: 78vh;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: var(--stone-950);
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 38%, rgba(251, 191, 36, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(12, 10, 9, 0.90), rgba(12, 10, 9, 0.58) 48%, rgba(12, 10, 9, 0.28)),
    linear-gradient(0deg, rgba(12, 10, 9, 0.92), rgba(12, 10, 9, 0.10) 52%);
}

.hero-content {
  position: absolute;
  right: 24px;
  bottom: 82px;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  transform: translateX(-50%);
  max-width: 1180px;
}

.hero-content h1,
.hero-content h2 {
  max-width: 760px;
  margin: 18px 0 14px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero-tags,
.tag-row,
.detail-tags,
.tag-cloud {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span:first-child,
.detail-tags span:first-child {
  background: var(--amber-500);
}

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

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

.primary-btn {
  min-height: 52px;
  padding: 0 28px;
  color: #ffffff;
  background: var(--amber-500);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.36);
}

.primary-btn:hover {
  background: var(--amber-600);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(245, 158, 11, 0.42);
}

.secondary-btn {
  min-height: 52px;
  padding: 0 28px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
}

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

.text-link {
  color: var(--amber-600);
}

.hero-dots {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  display: flex;
  gap: 8px;
}

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

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

.content-section,
.page-shell,
.detail-layout,
.detail-wrap {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

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

.page-shell {
  padding: 114px 0 20px;
}

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

.page-title {
  display: block;
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading span,
.page-title span,
.overview-text span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--amber-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2,
.page-title h1,
.overview-text h2 {
  margin: 0;
  color: var(--stone-800);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.page-title p,
.overview-text p {
  margin: 16px 0 0;
  color: var(--stone-600);
  font-size: 18px;
}

.compact-heading {
  margin-bottom: 22px;
}

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

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--stone-900), var(--stone-700));
}

.movie-card:not(.large-card) .poster-link {
  aspect-ratio: 3 / 4;
}

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

.movie-card:hover .poster-link img {
  transform: scale(1.08);
  filter: brightness(0.88);
}

.play-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%) scale(0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(245, 158, 11, 0.90);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

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

.card-body {
  padding: 18px;
}

.card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--stone-500);
  font-size: 13px;
  font-weight: 700;
}

.card-meta a {
  color: var(--amber-600);
}

.card-body h2 {
  margin: 0 0 8px;
  color: var(--stone-800);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

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

.card-body p {
  min-height: 46px;
  margin: 0 0 14px;
  color: var(--stone-600);
  font-size: 14px;
}

.tag-row span,
.tag-cloud span {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--stone-700);
  background: var(--stone-100);
  font-size: 12px;
  font-weight: 800;
}

.soft-panel {
  padding: 42px;
  margin-top: 72px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--stone-100), var(--orange-50));
}

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

.category-tile,
.category-overview-card,
.filter-panel,
.search-box-panel,
.article-card,
.side-card,
.player-card {
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.category-tile {
  padding: 22px;
}

.category-tile > a {
  display: grid;
  gap: 10px;
}

.category-tile span {
  color: var(--stone-800);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.category-tile strong {
  min-height: 56px;
  color: var(--stone-600);
  font-size: 14px;
  font-weight: 600;
}

.category-tile div {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.category-tile div a {
  color: var(--amber-600);
  font-size: 13px;
  font-weight: 800;
}

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

.rank-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 28px;
  border-radius: var(--radius-xl);
  color: #ffffff;
  background: linear-gradient(180deg, var(--stone-900), var(--stone-950));
  box-shadow: var(--shadow-soft);
}

.rank-panel .section-heading h2,
.rank-panel .section-heading a {
  color: #ffffff;
}

.rank-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.rank-list li:last-child {
  border-bottom: 0;
}

.rank-list span {
  grid-row: span 2;
  color: var(--amber-400);
  font-size: 20px;
  font-weight: 900;
}

.rank-list a {
  overflow: hidden;
  font-weight: 850;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-list a:hover {
  color: var(--amber-400);
}

.rank-list em {
  color: var(--stone-300);
  font-size: 12px;
  font-style: normal;
}

.inline-filter input,
.filter-panel input,
.big-search input {
  box-shadow: inset 0 0 0 1px var(--stone-200);
  background: #ffffff;
}

.inline-filter input {
  width: min(360px, 100%);
  padding: 12px 18px;
}

.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--stone-500);
  font-size: 14px;
  font-weight: 700;
}

.crumbs a {
  color: var(--amber-600);
}

.crumbs > * + *::before {
  content: "/";
  margin-right: 10px;
  color: var(--stone-300);
}

.crumbs.dark {
  color: rgba(255, 255, 255, 0.72);
}

.crumbs.dark a {
  color: var(--amber-400);
}

.category-overview-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 28px;
  padding: 28px;
}

.overview-text {
  align-self: center;
}

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

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

.filter-panel,
.search-box-panel {
  margin-bottom: 30px;
  padding: 20px;
}

.filter-panel form,
.big-search {
  display: flex;
  gap: 12px;
}

.filter-panel input,
.big-search input {
  width: 100%;
  padding: 14px 18px;
}

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

.rank-card {
  position: relative;
  display: grid;
  grid-template-columns: 170px 68px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.rank-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--stone-900), var(--stone-700));
}

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

.rank-number {
  color: var(--amber-500);
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.rank-content h2 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.rank-content h2 a:hover {
  color: var(--amber-600);
}

.rank-content p {
  margin: 0 0 12px;
  color: var(--stone-600);
}

.detail-hero {
  position: relative;
  min-height: 620px;
  padding-top: 106px;
  overflow: hidden;
  color: #ffffff;
  background: var(--stone-950);
}

.detail-bg,
.detail-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-bg {
  object-fit: cover;
  filter: blur(2px) saturate(1.05);
  transform: scale(1.04);
}

.detail-shade {
  background:
    radial-gradient(circle at 80% 34%, rgba(245, 158, 11, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(12, 10, 9, 0.94), rgba(12, 10, 9, 0.72) 54%, rgba(12, 10, 9, 0.42)),
    linear-gradient(0deg, rgba(12, 10, 9, 0.90), rgba(12, 10, 9, 0.18));
}

.detail-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  min-height: 500px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--stone-900), var(--stone-700));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.40);
}

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

.detail-info h1 {
  margin: 18px 0 14px;
  max-width: 820px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.detail-info p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding-top: 54px;
}

.main-column,
.side-column {
  display: grid;
  gap: 24px;
  align-content: start;
}

.player-card,
.article-card,
.side-card {
  padding: 26px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.movie-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  color: #ffffff;
  background:
    linear-gradient(0deg, rgba(12, 10, 9, 0.76), rgba(12, 10, 9, 0.28)),
    radial-gradient(circle, rgba(245, 158, 11, 0.20), transparent 34%);
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-shell.is-playing .player-cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--amber-500);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.45);
  font-size: 28px;
}

.player-cover strong {
  font-size: 24px;
}

.player-cover small {
  color: rgba(255, 255, 255, 0.76);
}

.article-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.article-card p {
  margin: 0;
  color: var(--stone-600);
  font-size: 17px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--stone-200);
}

.info-list span {
  color: var(--stone-500);
}

.info-list strong {
  color: var(--stone-800);
  text-align: right;
}

.related-section {
  padding-bottom: 30px;
}

.search-results .section-heading {
  margin-top: 36px;
}

.search-empty {
  padding: 44px;
  border-radius: var(--radius-lg);
  color: var(--stone-600);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.site-footer {
  margin-top: 74px;
  padding: 48px 0 26px;
  color: var(--stone-300);
  background: linear-gradient(180deg, var(--stone-900), var(--stone-950));
}

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

.footer-brand {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 22px;
}

.site-footer p {
  max-width: 430px;
  margin: 0;
  color: var(--stone-300);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--stone-300);
  font-weight: 700;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--stone-500);
  font-size: 14px;
}

.is-hidden {
  display: none !important;
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  .split-section,
  .detail-layout,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }

  .detail-wrap {
    grid-template-columns: 240px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    height: 66px;
  }

  .brand {
    font-size: 18px;
  }

  .hero-slider {
    min-height: 600px;
    height: 86vh;
  }

  .hero-content {
    bottom: 86px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 42px;
  }

  .section-heading,
  .filter-panel form,
  .big-search {
    align-items: stretch;
    flex-direction: column;
  }

  .content-section {
    padding-top: 54px;
  }

  .soft-panel {
    padding: 24px;
  }

  .two-grid,
  .three-grid,
  .four-grid,
  .mini-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .rank-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .rank-number {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 8px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--amber-500);
    font-size: 16px;
  }

  .rank-content h2 {
    font-size: 20px;
  }

  .detail-hero {
    padding-top: 84px;
  }

  .detail-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 0 48px;
  }

  .detail-poster {
    width: min(260px, 82vw);
  }

  .detail-info h1 {
    font-size: 42px;
  }

  .detail-info p {
    font-size: 17px;
  }

  .player-card,
  .article-card,
  .side-card {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
