:root {
  --color-blue: #2563eb;
  --color-blue-dark: #1d4ed8;
  --color-sky: #38bdf8;
  --color-orange: #f97316;
  --color-green: #16a34a;
  --color-red: #dc2626;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-soft: #f8fafc;
  --color-line: #e5e7eb;
  --shadow-soft: 0 16px 45px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 24px 55px rgba(15, 23, 42, 0.16);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 46%, #f8fafc 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1f2937;
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

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

.nav-link,
.mobile-link {
  color: #374151;
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--color-blue);
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 24px;
  height: 2px;
  display: block;
  background: #374151;
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--color-line);
  background: #ffffff;
  padding: 10px 24px 18px;
}

.mobile-nav.is-open {
  display: grid;
  gap: 12px;
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.48) 48%, rgba(2, 6, 23, 0.18));
}

.hero-content {
  position: absolute;
  left: min(7vw, 96px);
  right: 24px;
  bottom: 86px;
  max-width: 780px;
  color: #ffffff;
}

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

.hero-tags span,
.tag-row span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.hero-content h1 {
  margin: 18px 0 14px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 700px;
  margin: 0 0 22px;
  color: #e5e7eb;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-meta,
.detail-meta,
.movie-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-meta span,
.detail-meta span {
  padding: 7px 12px;
  color: #eff6ff;
  background: rgba(37, 99, 235, 0.55);
  border-radius: 8px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.primary-button,
.search-form button {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.25);
}

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

.primary-button:hover,
.ghost-button:hover,
.search-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.32);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  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);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

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

.home-search-panel {
  max-width: 1160px;
  margin: -44px auto 0;
  padding: 26px;
  position: relative;
  z-index: 4;
  display: grid;
  gap: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.home-search-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 34px);
}

.home-search-panel p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.search-form {
  display: flex;
  gap: 12px;
}

.search-form input {
  min-width: 0;
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  outline: none;
  background: #ffffff;
}

.search-form input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.category-pills,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-pills a,
.filter-chip {
  padding: 8px 12px;
  color: #1f2937;
  background: #f1f5f9;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.category-pills a:hover,
.filter-chip:hover,
.filter-chip.is-active {
  color: #ffffff;
  background: var(--color-blue);
}

.page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-space {
  padding-top: 64px;
  padding-bottom: 76px;
}

.content-section + .content-section {
  margin-top: 76px;
}

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

.section-heading {
  align-items: center;
  justify-content: flex-start;
}

.section-heading h2,
.strip-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

.section-heading p,
.strip-heading p {
  margin: 8px 0 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.section-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.strip-heading a,
.section-more a {
  color: var(--color-blue);
  font-weight: 800;
}

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

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

.featured-grid .movie-card-large {
  grid-row: span 2;
}

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

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

.movie-card {
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-link {
  display: block;
  height: 100%;
}

.movie-cover {
  position: relative;
  height: 220px;
  margin: 0;
  overflow: hidden;
  background: #0f172a;
}

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

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

.type-badge,
.year-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 750;
  background: rgba(2, 6, 23, 0.75);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.play-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.82);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.movie-info {
  padding: 16px;
}

.movie-info h3 {
  margin: 0 0 9px;
  overflow: hidden;
  color: #1f2937;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

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

.movie-meta {
  justify-content: space-between;
  color: #64748b;
  font-size: 12px;
}

.movie-meta span:first-child {
  color: var(--color-blue);
  font-weight: 750;
}

.movie-card-large .movie-cover {
  height: 100%;
  min-height: 464px;
}

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.12));
}

.large-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  color: #ffffff;
}

.large-caption h3 {
  margin: 14px 0 8px;
  font-size: 28px;
  line-height: 1.2;
}

.large-caption p {
  margin: 0;
  color: #e5e7eb;
  line-height: 1.7;
}

.movie-card-horizontal .movie-link {
  display: flex;
  gap: 0;
}

.wide-cover {
  width: 230px;
  height: auto;
  min-height: 140px;
  flex: none;
}

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

.ranking-list {
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 24px;
  list-style: none;
}

.ranking-list li {
  break-inside: avoid;
  margin-bottom: 12px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.ranking-list a {
  min-height: 76px;
  padding: 10px;
  display: grid;
  grid-template-columns: 40px 64px 1fr auto;
  align-items: center;
  gap: 14px;
}

.ranking-list img {
  width: 64px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

.rank-num,
.rank-big {
  color: var(--color-blue);
  font-size: 24px;
  font-weight: 900;
}

.rank-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.rank-meta {
  color: var(--color-muted);
  font-size: 13px;
}

.section-more {
  margin-top: 28px;
  text-align: center;
}

.page-main {
  min-height: 60vh;
}

.page-hero {
  color: #ffffff;
  background: radial-gradient(circle at 12% 10%, rgba(56, 189, 248, 0.48), transparent 34%), linear-gradient(135deg, #0f172a, #1e3a8a 54%, #312e81);
}

.small-hero,
.category-hero {
  padding: 70px 0;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  font-weight: 900;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.8;
}

.inline-search {
  max-width: 680px;
  margin-top: 26px;
}

.breadcrumb {
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #dbeafe;
  font-size: 14px;
}

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

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

.category-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.category-thumbs {
  height: 190px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #0f172a;
}

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

.category-body {
  padding: 22px;
}

.category-body h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-body p {
  min-height: 54px;
  margin: 0 0 16px;
  color: var(--color-muted);
  line-height: 1.7;
}

.category-body span {
  color: var(--color-blue);
  font-weight: 800;
}

.empty-state {
  display: none;
  margin-top: 32px;
  padding: 40px;
  text-align: center;
  color: var(--color-muted);
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 18px;
}

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

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

.ranking-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.ranking-card a {
  padding: 14px;
  display: grid;
  grid-template-columns: 52px 110px 1fr;
  gap: 18px;
  align-items: center;
}

.ranking-card img {
  width: 110px;
  height: 76px;
  object-fit: cover;
  border-radius: 14px;
}

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

.ranking-card p {
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--color-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.detail-topbar {
  padding: 26px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
}

.detail-layout {
  padding-top: 36px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) 380px;
  gap: 32px;
}

.detail-primary {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  background: #000000;
  border-radius: 20px;
  box-shadow: 0 24px 55px rgba(2, 6, 23, 0.28);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #ffffff;
  border: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.18));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.overlay-play {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.86);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.36);
}

.overlay-title {
  padding: 0 24px;
  text-align: center;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.46);
}

.detail-card,
.aside-card {
  margin-top: 24px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.detail-card h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.16;
}

.detail-meta {
  margin-bottom: 18px;
}

.detail-tags {
  margin-bottom: 26px;
}

.detail-tags span {
  padding: 7px 12px;
  color: #374151;
  background: #f1f5f9;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.detail-card section + section {
  margin-top: 28px;
}

.detail-card h2,
.aside-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-card p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
  font-size: 16px;
}

.lead-text {
  font-weight: 750;
}

.detail-aside {
  min-width: 0;
}

.aside-card {
  position: sticky;
  top: 92px;
  margin-top: 0;
}

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

.related-mini {
  display: flex;
  gap: 12px;
  align-items: center;
}

.related-mini img {
  width: 118px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  flex: none;
}

.related-mini strong {
  overflow: hidden;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.related-mini em {
  display: block;
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 12px;
  font-style: normal;
}

.more-related {
  padding-bottom: 76px;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 42px;
}

.footer-logo {
  color: #ffffff;
}

.footer-brand p {
  max-width: 460px;
  color: #9ca3af;
  line-height: 1.8;
}

.footer-col h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 17px;
}

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

.footer-col a:hover {
  color: #60a5fa;
}

.footer-bottom {
  padding: 18px 24px;
  text-align: center;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-search-card].is-hidden {
  display: none;
}

@media (max-width: 1100px) {
  .featured-grid,
  .standard-grid,
  .category-movie-grid,
  .search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .aside-card {
    position: static;
  }
}

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

  .menu-button {
    display: flex;
  }

  .hero-carousel {
    height: 66vh;
    min-height: 520px;
  }

  .hero-content {
    left: 24px;
    bottom: 82px;
  }

  .hero-arrow {
    display: none;
  }

  .home-search-panel {
    margin: 18px 16px 0;
    border-radius: 20px;
  }

  .search-form {
    flex-direction: column;
  }

  .featured-grid,
  .standard-grid,
  .category-movie-grid,
  .search-grid,
  .compact-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-grid .movie-card-large {
    grid-column: span 2;
  }

  .ranking-list {
    columns: 1;
  }

  .ranking-list a {
    grid-template-columns: 36px 60px 1fr;
  }

  .rank-meta {
    display: none;
  }

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

@media (max-width: 560px) {
  .header-inner,
  .page-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-logo {
    font-size: 18px;
  }

  .hero-content p {
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }

  .hero-meta,
  .hero-actions {
    gap: 8px;
  }

  .hero-actions a {
    width: 100%;
  }

  .featured-grid,
  .standard-grid,
  .category-movie-grid,
  .search-grid,
  .compact-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid .movie-card-large {
    grid-column: auto;
  }

  .movie-card-horizontal .movie-link {
    display: block;
  }

  .wide-cover {
    width: 100%;
    height: 210px;
  }

  .ranking-card a {
    grid-template-columns: 42px 86px 1fr;
    gap: 12px;
  }

  .ranking-card img {
    width: 86px;
    height: 66px;
  }

  .detail-card,
  .aside-card {
    padding: 20px;
  }

  .related-mini img {
    width: 96px;
    height: 64px;
  }
}
