:root {
  --green-700: #047857;
  --green-600: #059669;
  --emerald-800: #065f46;
  --emerald-500: #10b981;
  --yellow-400: #facc15;
  --slate-950: #020617;
  --slate-800: #1e293b;
  --slate-600: #475569;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 28px 70px rgba(15, 23, 42, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eefdf7 100%);
  color: var(--slate-800);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, #059669, #047857 55%, #065f46);
  box-shadow: 0 14px 36px rgba(4, 120, 87, 0.28);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-icon {
  font-size: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 650;
}

.nav-links a {
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--yellow-400);
}

.nav-search {
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.17);
  font-size: 22px;
}

.hero-slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--slate-950);
}

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

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 32%, rgba(16, 185, 129, 0.32), transparent 30%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.66) 48%, rgba(2, 6, 23, 0.2)),
    linear-gradient(0deg, #f8fafc 0%, rgba(248, 250, 252, 0) 22%);
}

.hero-content {
  position: absolute;
  inset: 0;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 50px;
  color: var(--white);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(167, 243, 208, 0.28);
  font-size: 14px;
  font-weight: 700;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.ranking-hero h1,
.detail-main h1 {
  margin: 18px 0 12px;
  line-height: 1.08;
  font-weight: 900;
}

.hero-copy h1 {
  font-size: clamp(38px, 6vw, 70px);
}

.hero-copy h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.hero-copy p,
.page-hero p,
.ranking-hero p,
.detail-one-line {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.hero-tags span,
.tag-cloud span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ecfdf5;
  font-size: 13px;
  font-weight: 700;
}

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

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

.primary-btn {
  color: #1f2937;
  background: var(--yellow-400);
  box-shadow: 0 12px 28px rgba(250, 204, 21, 0.33);
}

.ghost-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.hero-poster {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: rotate(2deg);
  background: rgba(255, 255, 255, 0.12);
}

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

.hero-poster span {
  position: absolute;
  inset: auto 24px 24px auto;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #10b981, #047857);
  box-shadow: 0 16px 35px rgba(4, 120, 87, 0.4);
  font-size: 24px;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  font-size: 36px;
  cursor: pointer;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dots button {
  width: 36px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--yellow-400);
}

.feature-strip,
.content-section,
.page-hero,
.ranking-hero,
.detail-hero,
.player-section,
.detail-text-block {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: -44px;
  position: relative;
  z-index: 10;
}

.feature-card {
  min-height: 150px;
  padding: 24px;
  border-radius: 24px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-card span {
  font-size: 38px;
}

.feature-card strong,
.feature-card em {
  display: block;
}

.feature-card strong {
  margin: 10px 0 4px;
  font-size: 24px;
}

.feature-card em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.6;
}

.feature-card.pink {
  background: linear-gradient(135deg, #ec4899, #be123c);
}

.feature-card.blue {
  background: linear-gradient(135deg, #3b82f6, #0891b2);
}

.feature-card.orange {
  background: linear-gradient(135deg, #f97316, #d97706);
}

.feature-card.green {
  background: linear-gradient(135deg, #10b981, #047857);
}

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

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

.section-title div,
.ranking-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title span,
.ranking-head span {
  font-size: 28px;
}

.section-title h2,
.ranking-head h2 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
}

.section-more {
  color: var(--green-700);
  font-weight: 800;
}

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

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

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

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

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

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

.card-cover {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #064e3b;
}

.compact-cover {
  height: 210px;
}

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

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

.cover-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), transparent 56%);
}

.quality-badge,
.view-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.quality-badge {
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  background: #ef4444;
}

.view-badge {
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(8px);
}

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

.movie-card-body h3 {
  min-height: 46px;
  margin: 0 0 8px;
  color: #111827;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.35;
}

.movie-card-body p {
  min-height: 44px;
  margin: 0 0 14px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.55;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
}

.movie-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f1f5f9;
}

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

.category-tile {
  position: relative;
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 24px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), rgba(4, 120, 87, 0.18));
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile span,
.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
}

.category-icon {
  font-size: 34px;
}

.category-tile strong {
  margin-top: 12px;
  font-size: 24px;
}

.category-tile em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.55;
}

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

.ranking-panel {
  position: sticky;
  top: 88px;
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.rank-row,
.mini-rank {
  display: grid;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row {
  grid-template-columns: 28px 58px 1fr auto;
  padding: 10px;
}

.rank-row:hover,
.mini-rank:hover {
  background: #ecfdf5;
  transform: translateX(3px);
}

.rank-num,
.ranking-number {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #f97316, #ef4444);
  font-weight: 900;
}

.rank-num {
  width: 28px;
  height: 28px;
}

.rank-row img,
.mini-rank img {
  width: 58px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

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

.rank-info strong {
  font-weight: 850;
}

.rank-info em,
.rank-heat {
  color: #64748b;
  font-size: 12px;
  font-style: normal;
}

.site-footer {
  margin-top: 56px;
  background: #052e24;
  color: rgba(255, 255, 255, 0.82);
}

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

.footer-brand {
  color: var(--white);
}

.footer-inner p {
  max-width: 620px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
}

.page-hero,
.ranking-hero,
.detail-hero {
  margin-top: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 20%, rgba(250, 204, 21, 0.18), transparent 24%),
    linear-gradient(135deg, #047857, #064e3b);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.page-hero {
  padding: 58px;
}

.slim-hero {
  min-height: 260px;
  display: flex;
  align-items: center;
}

.page-hero h1,
.ranking-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: center;
}

.category-side-rank {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.category-side-rank h2 {
  margin: 0 0 14px;
}

.mini-rank {
  grid-template-columns: 26px 48px 1fr;
  padding: 8px;
  color: var(--white);
}

.mini-rank span {
  font-weight: 900;
}

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

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

.category-cover-link {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 20px;
}

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

.category-cover-link span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 32px;
}

.category-overview-card h2 {
  margin: 8px 0;
  color: #111827;
}

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

.category-hot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-hot-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-700);
  background: #ecfdf5;
  font-size: 13px;
  font-weight: 750;
}

.filter-bar,
.search-panel {
  margin-bottom: 28px;
  padding: 20px;
  display: flex;
  align-items: end;
  gap: 18px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.filter-bar label,
.search-panel label {
  flex: 1;
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 800;
}

.filter-bar input,
.search-panel input,
.search-panel select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d1fae5;
  border-radius: 16px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 15px;
  outline: none;
}

.filter-bar input:focus,
.search-panel input:focus,
.search-panel select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.filter-bar a {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--green-700);
  background: #ecfdf5;
  font-weight: 850;
}

.empty-state {
  display: none;
  padding: 32px;
  text-align: center;
  color: #64748b;
  border-radius: 20px;
  background: var(--white);
}

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

.ranking-hero {
  min-height: 430px;
  padding: 36px;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  overflow: hidden;
}

.ranking-hero img {
  width: 100%;
  height: 350px;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: var(--shadow-strong);
}

.ranking-hero h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 44px);
}

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

.ranking-card {
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.ranking-card a {
  padding: 16px;
  display: grid;
  grid-template-columns: 48px 92px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.ranking-number {
  width: 42px;
  height: 42px;
}

.ranking-card img {
  width: 92px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
}

.ranking-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.ranking-card p {
  margin: 0 0 12px;
  color: var(--slate-600);
  line-height: 1.6;
}

.ranking-card > a > strong {
  color: var(--green-700);
}

.detail-hero {
  padding: 30px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--yellow-400);
}

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

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow-strong);
}

.detail-poster img {
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.detail-main h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.detail-meta-grid span {
  padding: 13px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.86);
}

.detail-meta-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

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

.movie-player {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 16 / 9;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.22));
  cursor: pointer;
}

.player-cover.is-hidden {
  display: none;
}

.player-start {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow-400), #f97316);
  color: #111827;
  font-size: 32px;
  box-shadow: 0 16px 38px rgba(250, 204, 21, 0.35);
}

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

.detail-text-block {
  margin-top: 34px;
  padding: 34px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.detail-text-block h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 28px;
}

.detail-text-block p {
  margin: 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.9;
}

.related-section {
  padding-top: 34px;
}

@media (max-width: 1080px) {
  .four-col,
  .five-col,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-content,
  .two-column-section,
  .category-hero,
  .detail-layout,
  .ranking-hero {
    grid-template-columns: 1fr;
  }

  .ranking-panel {
    position: static;
  }

  .hero-poster {
    display: none;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: var(--emerald-800);
  }

  .nav-links.is-open {
    display: flex;
  }

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

  .hero-slider {
    min-height: 590px;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
  }

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

  .hero-copy p,
  .page-hero p,
  .ranking-hero p,
  .detail-one-line {
    font-size: 16px;
  }

  .hero-control {
    display: none;
  }

  .feature-strip,
  .four-col,
  .three-col,
  .five-col,
  .category-grid,
  .category-overview-grid,
  .detail-meta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-strip {
    margin-top: 22px;
  }

  .content-section,
  .page-hero,
  .ranking-hero,
  .detail-hero,
  .player-section,
  .detail-text-block,
  .feature-strip {
    width: min(100% - 24px, 1180px);
  }

  .page-hero,
  .detail-hero,
  .ranking-hero,
  .detail-text-block {
    padding: 24px;
    border-radius: 22px;
  }

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

  .filter-bar,
  .search-panel,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .ranking-card a {
    grid-template-columns: 40px 74px minmax(0, 1fr);
  }

  .ranking-card > a > strong {
    grid-column: 3;
  }

  .detail-poster img {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .feature-strip,
  .four-col,
  .three-col,
  .five-col,
  .category-grid,
  .category-overview-grid,
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 630px;
  }

  .hero-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

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