:root {
  --primary: #e14f11;
  --primary-dark: #ba3910;
  --primary-soft: #fdeaD6;
  --secondary: #50675e;
  --secondary-light: #e6ebe8;
  --accent: #eeac07;
  --accent-dark: #cd8503;
  --warm-50: #faf8f5;
  --warm-100: #f2ede4;
  --warm-200: #e4d8c7;
  --ink: #111827;
  --text: #374151;
  --muted: #6b7280;
  --line: #ece7df;
  --white: #ffffff;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-deep: 0 24px 80px rgba(17, 24, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--warm-50) 45%, var(--warm-100) 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

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: 80;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228, 216, 199, 0.65);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow-soft);
  font-size: 16px;
}

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

.nav-link,
.mobile-link {
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--primary);
  background: var(--primary-soft);
}

.mobile-link.subtle {
  color: var(--muted);
  background: #ffffff;
}

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

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

.mobile-nav {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding: 12px 0 18px;
}

.hero {
  position: relative;
  height: 600px;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(90deg, #111827, #1f2937);
}

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.46) 45%, rgba(0, 0, 0, 0.14) 100%),
    radial-gradient(circle at 20% 70%, rgba(225, 79, 17, 0.38), transparent 35%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 86px;
}

.hero-copy {
  width: min(680px, 100%);
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffb46b;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

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

.hero p,
.sub-hero p,
.detail-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.75;
}

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

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

.hero-actions,
.sub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

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

.primary-button {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 14px 34px rgba(225, 79, 17, 0.26);
}

.primary-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px) scale(1.02);
}

.glass-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.glass-button.light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.9);
}

.ghost-button {
  color: var(--ink);
  background: var(--warm-100);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 42px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

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

.hero-dot.active {
  width: 34px;
  background: #ffffff;
}

.page-stack {
  display: grid;
  gap: 64px;
  padding: 56px 0;
}

.section-block {
  scroll-margin-top: 96px;
}

.panel-block,
.editor-block,
.ranking-page,
.detail-content,
.player-section {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-medium);
  padding: clamp(22px, 4vw, 36px);
}

.editor-block {
  background: linear-gradient(135deg, #fefbe8, #fef6ee);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.section-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow-soft);
  font-size: 22px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

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

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

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

.movie-card,
.horizontal-card,
.category-card,
.category-overview-card,
.ranking-row {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.movie-card:hover,
.horizontal-card:hover,
.category-card:hover,
.category-overview-card:hover,
.ranking-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.poster-wrap {
  position: relative;
  height: 230px;
  margin: 0;
  overflow: hidden;
  background: #1f2937;
}

.large-card .poster-wrap {
  height: 330px;
}

.poster-wrap img,
.horizontal-card figure img,
.category-card img,
.ranking-row img,
.rank-item img,
.detail-poster img,
.category-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .poster-wrap img,
.horizontal-card:hover figure img,
.category-card:hover img,
.rank-item:hover img {
  transform: scale(1.08);
}

.region-badge,
.rank-badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 9px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.region-badge {
  right: 12px;
}

.rank-badge {
  left: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.play-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.76);
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-weight: 900;
}

.play-hover.small {
  width: 42px;
  height: 42px;
}

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

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

.movie-card h3,
.horizontal-card h3,
.category-card h3,
.category-overview-card h2,
.ranking-row h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.25;
}

.movie-card h3 {
  font-size: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-card p,
.horizontal-card p,
.category-card p,
.category-overview-card p,
.ranking-row p {
  color: var(--muted);
  line-height: 1.65;
}

.movie-card p {
  display: -webkit-box;
  min-height: 48px;
  margin: 9px 0 14px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.movie-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.movie-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 8px;
  background: var(--warm-50);
}

.movie-meta span:last-child {
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 750;
}

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

.category-card {
  position: relative;
  min-height: 170px;
  color: #ffffff;
  background: #111827;
}

.category-card img {
  position: absolute;
  inset: 0;
  opacity: 0.72;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.82));
}

.category-card div {
  position: relative;
  z-index: 2;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.category-card h3,
.category-card p,
.category-card span {
  color: #ffffff;
}

.category-card p {
  margin: 8px 0 12px;
}

.category-card span,
.category-overview-card span {
  color: #ffce7a;
  font-weight: 800;
}

.category-overview-card {
  display: grid;
  grid-template-rows: 150px auto;
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #111827;
}

.category-overview-card > div:last-child {
  padding: 18px;
}

.category-overview-card p {
  min-height: 52px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: start;
}

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

.horizontal-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
}

.horizontal-card figure {
  position: relative;
  height: 135px;
  margin: 0;
  overflow: hidden;
  background: #111827;
}

.horizontal-card > div {
  padding: 16px 18px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.horizontal-card p {
  display: -webkit-box;
  margin: 8px 0 12px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.ranking-panel {
  border-radius: 24px;
  padding: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-medium);
}

.ranking-panel h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 28px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 38px 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: var(--warm-50);
  transition: background 0.2s ease;
}

.rank-item:hover {
  background: var(--primary-soft);
}

.rank-number {
  color: var(--primary);
  font-weight: 900;
}

.rank-item img {
  height: 70px;
  border-radius: 10px;
}

.rank-item strong {
  display: block;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 800;
}

.search-panel {
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.search-title {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 850;
}

.search-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 170px 150px 100px;
  gap: 12px;
}

.search-controls input,
.search-controls select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

.search-controls input:focus,
.search-controls select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(225, 79, 17, 0.12);
}

.result-count {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.sub-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(238, 172, 7, 0.34), transparent 28%),
    linear-gradient(135deg, #111827, #38443f 58%, #e14f11 150%);
}

.sub-hero::after,
.detail-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 35%;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  filter: blur(30px);
}

.category-hero {
  background:
    radial-gradient(circle at 75% 10%, rgba(225, 79, 17, 0.35), transparent 30%),
    linear-gradient(135deg, #111827, #50675e);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 46px;
  align-items: end;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.detail-poster {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-deep);
  background: #111827;
}

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

.detail-layout {
  gap: 32px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: var(--shadow-deep);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(225, 79, 17, 0.25), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.62));
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.play-circle {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  font-size: 34px;
}

.movie-player.is-playing .player-start {
  opacity: 0;
  pointer-events: none;
}

.detail-content {
  display: block;
}

.detail-main p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.9;
}

.detail-main h2 {
  margin: 34px 0 14px;
  color: var(--ink);
  font-size: 26px;
}

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

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

.info-grid dt {
  color: var(--muted);
  font-size: 13px;
}

.info-grid dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.info-grid a {
  color: var(--primary);
}

.tag-cloud span {
  color: var(--primary-dark);
  background: var(--primary-soft);
  backdrop-filter: none;
}

.ranking-table {
  display: grid;
  gap: 14px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 56px 98px minmax(0, 1fr) 90px;
  gap: 18px;
  align-items: center;
  padding: 12px 18px;
}

.ranking-index {
  color: var(--primary);
  font-size: 24px;
  font-weight: 950;
}

.ranking-row img {
  height: 120px;
  border-radius: 14px;
}

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

.ranking-info p {
  display: -webkit-box;
  margin: 8px 0 12px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.heat-value {
  justify-self: end;
  color: var(--accent-dark);
  font-size: 22px;
}

.site-footer {
  margin-top: 40px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--text);
  background: var(--warm-50);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

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

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

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

  .menu-toggle {
    display: flex;
  }

  .hero {
    height: 640px;
  }

  .hero-content {
    padding-bottom: 78px;
  }

  .hero-arrow {
    display: none;
  }

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

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

  .detail-poster {
    max-width: 280px;
  }

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

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

  .ranking-row {
    grid-template-columns: 42px 76px minmax(0, 1fr);
  }

  .heat-value {
    display: none;
  }
}

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

  .header-inner {
    min-height: 64px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

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

  .hero {
    height: 620px;
  }

  .hero h1,
  .sub-hero h1,
  .detail-hero h1 {
    font-size: 36px;
  }

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

  .page-stack {
    gap: 44px;
    padding: 38px 0;
  }

  .panel-block,
  .editor-block,
  .ranking-page,
  .detail-content,
  .player-section {
    padding: 18px;
    border-radius: 22px;
  }

  .card-grid,
  .compact-grid,
  .full-grid,
  .editor-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .poster-wrap,
  .large-card .poster-wrap {
    height: 260px;
  }

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

  .horizontal-card figure {
    height: 132px;
  }

  .horizontal-card > div {
    padding: 12px 12px 12px 0;
  }

  .search-controls,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .ranking-row {
    grid-template-columns: 38px 70px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .ranking-row img {
    height: 92px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
