:root {
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --white: #ffffff;
  --black: #000000;
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.06);
  --shadow-md: 0 8px 20px rgba(28, 25, 23, 0.10);
  --shadow-lg: 0 18px 45px rgba(28, 25, 23, 0.16);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--stone-800);
  background: linear-gradient(180deg, var(--stone-50), var(--white));
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stone-200);
  box-shadow: var(--shadow-sm);
}

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

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

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.26);
}

.brand-icon.small {
  width: 36px;
  height: 36px;
}

.brand-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-title {
  font-size: 19px;
  line-height: 1.1;
  color: var(--stone-800);
}

.brand-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: var(--stone-500);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  color: var(--stone-700);
  font-weight: 700;
  transition: color 0.22s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--amber-600);
  transition: width 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-600);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.page-tools input,
.page-tools select {
  border: 1px solid var(--stone-300);
  background: var(--white);
  color: var(--stone-800);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.top-search input {
  width: 220px;
  padding: 10px 16px;
}

.top-search input:focus,
.mobile-search input:focus,
.page-tools input:focus,
.page-tools select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.top-search button,
.mobile-search button,
.hero-action,
.section-more,
.page-tools button,
.empty-clear,
.player-overlay span {
  border: 0;
  color: var(--white);
  background: var(--amber-500);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.top-search button {
  padding: 10px 18px;
}

.top-search button:hover,
.mobile-search button:hover,
.hero-action:hover,
.page-tools button:hover,
.empty-clear:hover,
.player-overlay:hover span {
  background: var(--amber-600);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.24);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--stone-100);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

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

.mobile-panel {
  display: none;
  border-top: 1px solid var(--stone-200);
  padding: 16px;
  background: var(--white);
}

.mobile-search input {
  flex: 1;
  padding: 10px 16px;
}

.mobile-search button {
  padding: 10px 16px;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

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

.mobile-link:hover,
.mobile-link.active {
  background: var(--stone-100);
  color: var(--amber-600);
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  color: var(--white);
  background: var(--stone-900);
}

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

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

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.54) 50%, rgba(0, 0, 0, 0.16));
}

.hero-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 0 0 74px;
}

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

.hero-site {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 16px;
  color: var(--white);
  background: rgba(245, 158, 11, 0.95);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero h1,
.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 2vw, 21px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.hero-action {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  box-shadow: 0 18px 44px rgba(217, 119, 6, 0.30);
}

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

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
  transition: background 0.22s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.30);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

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

.hero-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.22s ease, background 0.22s ease;
}

.hero-dots button.active {
  width: 32px;
  background: var(--white);
}

.page-hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
  padding: 54px 0;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--stone-50);
}

.section.soft {
  background: linear-gradient(180deg, var(--stone-50), var(--stone-100));
}

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

.section-heading h2 {
  margin: 0;
  color: var(--stone-800);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.15;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--stone-600);
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 18px;
  white-space: nowrap;
}

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

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

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

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

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.movie-cover {
  position: relative;
  display: block;
  height: 250px;
  overflow: hidden;
  background: var(--stone-200);
}

.movie-card-large .movie-cover {
  height: 340px;
}

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

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

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.60), transparent 58%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.movie-card:hover .cover-shade {
  opacity: 1;
}

.type-badge,
.score-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
}

.type-badge {
  left: 12px;
  top: 12px;
  padding: 5px 10px;
  background: rgba(28, 25, 23, 0.74);
  backdrop-filter: blur(8px);
}

.score-badge {
  right: 12px;
  top: 12px;
  padding: 5px 10px;
  background: var(--amber-500);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.30);
}

.rank-badge {
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.68);
}

.play-mark {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--amber-600);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

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

.movie-info {
  padding: 18px;
}

.movie-info h3 {
  margin: 0 0 10px;
  color: var(--stone-800);
  font-size: 18px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-info h3 a:hover {
  color: var(--amber-600);
}

.movie-info p {
  min-height: 44px;
  margin: 0 0 14px;
  color: var(--stone-600);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--stone-500);
  font-size: 13px;
}

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

.category-panel {
  display: grid;
  gap: 18px;
  min-height: 214px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.category-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow: var(--shadow-lg);
}

.category-panel h2,
.category-panel h3 {
  margin: 0;
  font-size: 22px;
}

.category-panel p {
  margin: 0;
  color: var(--stone-600);
}

.category-mini-cover {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.category-mini-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--stone-200);
  border-radius: 10px;
}

.page-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.page-tools input,
.page-tools select {
  min-height: 44px;
  padding: 0 16px;
}

.page-tools input {
  min-width: min(100%, 320px);
  flex: 1;
}

.page-tools button {
  min-height: 44px;
  padding: 0 18px;
}

.result-empty {
  display: none;
  padding: 52px 24px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.result-empty.active {
  display: block;
}

.result-empty h2 {
  margin: 0 0 12px;
}

.result-empty p {
  margin: 0 0 18px;
  color: var(--stone-600);
}

.empty-clear {
  padding: 11px 18px;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 72px 96px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ranking-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ranking-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  border-radius: 999px;
  font-weight: 950;
}

.ranking-thumb {
  width: 96px;
  height: 128px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--stone-200);
}

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

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

.ranking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--stone-500);
  font-size: 14px;
}

.ranking-score {
  color: var(--amber-600);
  font-size: 28px;
  font-weight: 950;
}

.detail-shell {
  background: linear-gradient(180deg, var(--stone-100), var(--white) 340px);
  padding: 34px 0 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--stone-600);
  font-size: 14px;
}

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

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

.video-player {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.video-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: var(--black);
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.66));
}

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

.player-overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 54px;
  padding: 0 24px;
  font-size: 18px;
}

.video-message {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 5;
  place-items: center;
  padding: 24px;
  color: var(--white);
  text-align: center;
  background: rgba(0, 0, 0, 0.76);
}

.video-message.active {
  display: grid;
}

.detail-content {
  margin-top: 26px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-tags span,
.tag-list span,
.info-card dd span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.detail-tags span:first-child {
  color: var(--white);
  background: var(--amber-500);
  font-weight: 800;
}

.detail-tags span:not(:first-child),
.tag-list span,
.info-card dd span {
  color: var(--stone-700);
  background: var(--stone-100);
}

.detail-content h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.detail-lead {
  margin: 0 0 22px;
  color: var(--stone-600);
  font-size: 19px;
}

.detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--stone-600);
}

.article-card,
.info-card {
  margin-top: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.article-card.review {
  background: linear-gradient(135deg, var(--amber-50), var(--stone-50));
}

.article-card h2,
.info-card h2,
.related-title {
  margin: 0 0 14px;
  color: var(--stone-800);
  font-size: 24px;
}

.article-card p {
  margin: 0;
  color: var(--stone-700);
  white-space: pre-line;
}

.info-card {
  position: sticky;
  top: 104px;
  margin-top: 0;
}

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

.info-card dt {
  color: var(--stone-500);
  font-size: 14px;
}

.info-card dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related-section {
  padding: 0 0 72px;
  background: var(--stone-50);
}

.site-footer {
  color: var(--stone-300);
  background: linear-gradient(180deg, var(--stone-800), var(--stone-900));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 34px;
  padding: 52px 0;
}

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

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 16px;
}

.footer-text {
  margin: 16px 0 0;
  color: var(--stone-300);
}

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

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

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(231, 229, 228, 0.14);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  color: var(--stone-400);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .grid.cards-6 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .info-card {
    position: static;
  }
}

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

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

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

  .header-inner {
    height: 66px;
  }

  .hero {
    height: 520px;
  }

  .grid.featured,
  .grid.cards-4,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranking-item {
    grid-template-columns: 56px 82px 1fr;
  }

  .ranking-score {
    grid-column: 2 / -1;
    font-size: 22px;
  }
}

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

  .brand-subtitle {
    display: none;
  }

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

  .hero {
    height: 470px;
  }

  .hero-content-wrap {
    padding-bottom: 56px;
  }

  .hero-arrow {
    display: none;
  }

  .section {
    padding: 46px 0;
  }

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

  .grid.featured,
  .grid.cards-6,
  .grid.cards-5,
  .grid.cards-4,
  .category-panel-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .movie-cover {
    height: 210px;
  }

  .movie-card-large .movie-cover {
    height: 240px;
  }

  .movie-info {
    padding: 14px;
  }

  .movie-info h3 {
    font-size: 16px;
  }

  .movie-info p {
    min-height: 42px;
    font-size: 13px;
  }

  .category-panel {
    padding: 18px;
  }

  .page-tools {
    display: grid;
  }

  .page-tools input,
  .page-tools select,
  .page-tools button {
    width: 100%;
  }

  .ranking-item {
    grid-template-columns: 44px 76px 1fr;
    gap: 12px;
    padding: 12px;
  }

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

  .ranking-thumb {
    width: 76px;
    height: 102px;
  }

  .ranking-info h2 {
    font-size: 18px;
  }

  .ranking-info p {
    display: none;
  }

  .detail-shell {
    padding-top: 22px;
  }

  .article-card,
  .info-card {
    padding: 18px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .grid.featured,
  .grid.cards-6,
  .grid.cards-5,
  .grid.cards-4,
  .category-panel-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .movie-cover,
  .movie-card-large .movie-cover {
    height: 280px;
  }
}
