:root {
  --green-950: #052e16;
  --green-900: #14532d;
  --green-800: #166534;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-300: #86efac;
  --gray-950: #030712;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 14px 30px rgba(15, 23, 42, 0.14);
  --shadow-lg: 0 22px 60px rgba(15, 23, 42, 0.28);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: var(--gray-50);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-900), var(--green-800));
  box-shadow: 0 10px 30px rgba(5, 46, 22, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--green-900);
  background: var(--green-300);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-text em {
  margin-top: 4px;
  color: var(--green-300);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
  justify-content: center;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--green-300);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0;
  width: 280px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-search input {
  width: 100%;
  min-width: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
  padding: 8px 12px;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.header-search button {
  border: 0;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--green-300);
  padding: 8px 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 10px;
  background: var(--white);
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  background: var(--green-900);
}

.mobile-nav.open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.hero-slider {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--gray-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.1);
  transform: scale(1.02);
}

.hero-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 45%, rgba(34, 197, 94, 0.25), transparent 26%), linear-gradient(90deg, rgba(3, 7, 18, 0.92) 0%, rgba(3, 7, 18, 0.55) 45%, rgba(3, 7, 18, 0.18) 100%), linear-gradient(0deg, rgba(3, 7, 18, 0.72), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 340px;
  align-items: center;
  gap: 54px;
  color: var(--white);
}

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

.hero-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--green-100, #dcfce7);
  background: rgba(22, 163, 74, 0.34);
  border: 1px solid rgba(134, 239, 172, 0.28);
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-actions,
.detail-actions,
.sub-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--green-950);
  background: var(--green-300);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.25);
}

.btn-primary:hover {
  background: #bbf7d0;
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-link {
  color: var(--green-300);
  padding-inline: 6px;
}

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

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--green-800);
  background: #dcfce7;
}

.hero-tags span {
  color: var(--green-100, #dcfce7);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

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

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
}

.hero-dot.active {
  width: 30px;
  background: var(--green-300);
}

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

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

.section-head h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--gray-500);
}

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

.movie-grid,
.feature-grid,
.category-grid,
.category-overview-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.movie-card,
.feature-card,
.compact-card,
.category-overview-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover,
.feature-card:hover,
.compact-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.poster,
.feature-cover,
.compact-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--gray-200);
}

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

.feature-cover {
  aspect-ratio: 16 / 9;
}

.compact-cover {
  width: 92px;
  height: 120px;
  flex: 0 0 auto;
  border-radius: 14px;
}

.poster img,
.feature-cover img,
.compact-cover img,
.category-tile img,
.category-collage img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover img,
.feature-card:hover img,
.compact-card:hover img,
.category-tile:hover img,
.category-overview-card:hover img {
  transform: scale(1.06);
}

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 46, 22, 0.78);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 65%);
}

.movie-card-body,
.feature-info {
  padding: 18px;
}

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

.card-meta a {
  color: var(--green-700);
  font-weight: 800;
}

.movie-card h3,
.feature-card h3,
.compact-card h3,
.category-overview-card h2 {
  margin: 0;
  color: var(--gray-900);
  line-height: 1.25;
}

.movie-card h3 {
  font-size: 18px;
}

.feature-card h3 {
  font-size: 24px;
}

.compact-card h3 {
  font-size: 16px;
}

.movie-card h3 a:hover,
.feature-card h3 a:hover,
.compact-card h3 a:hover,
.category-overview-card h2 a:hover {
  color: var(--green-700);
}

.movie-card p,
.feature-card p,
.compact-card p,
.category-overview-card p {
  margin: 8px 0 12px;
  color: var(--gray-500);
  font-size: 14px;
}

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

.compact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
}

.compact-card p {
  margin-bottom: 0;
}

.category-tile {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  background: var(--gray-900);
}

.category-tile span,
.category-tile::after {
  position: absolute;
  inset: 0;
  content: "";
}

.category-tile span {
  background: linear-gradient(0deg, rgba(3, 7, 18, 0.86), rgba(3, 7, 18, 0.1));
}

.category-tile strong,
.category-tile em {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 2;
}

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

.category-tile em {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 13px;
}

.two-column-zone {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
}

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

.rank-row,
.ranking-line {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row {
  padding: 12px;
}

.ranking-line {
  padding: 14px;
}

.rank-row:hover,
.ranking-line:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.rank-row b,
.ranking-line b {
  color: var(--green-700);
  font-size: 20px;
  min-width: 42px;
}

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

.rank-row span,
.ranking-line span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  flex: 1 1 auto;
}

.rank-row strong,
.ranking-line strong {
  color: var(--gray-900);
}

.rank-row em,
.ranking-line em {
  color: var(--gray-500);
  font-style: normal;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-line i {
  color: var(--gray-500);
  font-style: normal;
  font-weight: 700;
}

.sub-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: var(--white);
  background: radial-gradient(circle at 75% 40%, rgba(34, 197, 94, 0.26), transparent 30%), linear-gradient(135deg, var(--green-950), var(--green-800));
}

.sub-hero p {
  margin: 0 0 12px;
  color: var(--green-300);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sub-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.sub-hero span {
  display: block;
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
}

.category-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 120px);
  overflow: hidden;
  background: var(--gray-200);
}

.category-overview-card > div {
  padding: 24px;
}

.filter-bar,
.search-page-form {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-bar {
  grid-template-columns: minmax(0, 1fr) 180px 180px;
}

.search-page-form {
  grid-template-columns: minmax(0, 1fr) auto;
}

.filter-bar input,
.filter-bar select,
.search-page-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  outline: 0;
  background: var(--white);
  padding: 0 18px;
  box-shadow: var(--shadow-sm);
}

.filter-bar input:focus,
.filter-bar select:focus,
.search-page-form input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

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

.detail-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--gray-950);
}

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

.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(1.1);
}

.detail-bg-shade {
  background: linear-gradient(90deg, rgba(3, 7, 18, 0.94), rgba(3, 7, 18, 0.56) 55%, rgba(3, 7, 18, 0.22)), linear-gradient(0deg, rgba(3, 7, 18, 0.84), transparent 45%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 34px 0 56px;
}

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

.breadcrumb a:hover {
  color: var(--green-300);
}

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

.detail-poster {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-copy p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

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

.player-section {
  padding-top: 36px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--gray-950);
  box-shadow: var(--shadow-lg);
}

.player-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--gray-950);
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(3, 7, 18, 0.45), rgba(3, 7, 18, 0.08));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-ring {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.9);
  box-shadow: 0 24px 60px rgba(22, 163, 74, 0.38);
}

.play-ring i {
  margin-left: 6px;
  font-size: 36px;
  font-style: normal;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  padding-bottom: 28px;
}

.detail-article,
.detail-side {
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.detail-article {
  padding: 34px;
}

.detail-side {
  align-self: start;
  padding: 24px;
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 16px;
  color: var(--gray-900);
  font-size: 26px;
  line-height: 1.2;
}

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

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

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.info-list div {
  padding: 14px;
  border-radius: 14px;
  background: var(--gray-50);
}

.info-list dt {
  color: var(--gray-500);
  font-size: 13px;
}

.info-list dd {
  margin: 4px 0 0;
  color: var(--gray-900);
  font-weight: 800;
}

.site-footer {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--gray-950);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0 26px;
}

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

.site-footer p {
  max-width: 620px;
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--green-300);
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

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

  .header-search {
    width: 230px;
  }

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

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

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

  .nav-toggle {
    display: block;
  }

  .hero-content,
  .detail-grid,
  .detail-content-grid,
  .two-column-zone,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-content: center;
    gap: 28px;
    padding: 70px 0 92px;
  }

  .hero-poster {
    display: none;
  }

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

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

  .category-collage {
    grid-template-rows: repeat(2, 100px);
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text em {
    display: none;
  }

  .hero-slider {
    min-height: 560px;
    height: auto;
  }

  .hero-copy p,
  .sub-hero span,
  .detail-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .detail-actions,
  .sub-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .movie-grid,
  .feature-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-block {
    padding: 40px 0;
  }

  .sub-hero {
    padding: 64px 0;
  }

  .ranking-line i {
    display: none;
  }

  .rank-row img,
  .ranking-line img {
    width: 58px;
    height: 78px;
  }

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

  .detail-hero-inner {
    padding-bottom: 42px;
  }

  .detail-article,
  .detail-side {
    padding: 22px;
  }

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

  .footer-grid {
    flex-direction: column;
  }

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