:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(148, 163, 184, 0.16);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --weak: #64748b;
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --red: #f87171;
  --green: #34d399;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(34, 211, 238, 0.12), transparent 34rem),
    radial-gradient(circle at 80% 8%, rgba(99, 102, 241, 0.12), transparent 28rem),
    var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: #f8fafc;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-logo__mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #001018;
  background: linear-gradient(135deg, var(--cyan), #67e8f9);
  box-shadow: 0 12px 36px rgba(34, 211, 238, 0.25);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.main-nav a,
.mobile-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.mobile-nav a:hover {
  color: #ecfeff;
  background: rgba(34, 211, 238, 0.12);
}

.header-search {
  display: flex;
  width: min(300px, 27vw);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.72);
}

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

.header-search button,
.button {
  border: 0;
  white-space: nowrap;
  color: #001018;
  background: var(--cyan);
  padding: 11px 16px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: rgba(15, 23, 42, 0.82);
  padding: 9px 12px;
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.92);
  padding: 8px;
}

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

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

.hero-stage {
  position: relative;
  height: clamp(520px, 70vh, 760px);
}

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

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

.hero-slide__image,
.hero-slide__image img {
  width: 100%;
  height: 100%;
}

.hero-slide__image img {
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 6s ease;
}

.hero-slide.is-active .hero-slide__image img {
  transform: scale(1.08);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.66) 42%, rgba(2, 6, 23, 0.2) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 36%);
}

.hero-slide__content {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 96px;
  width: min(760px, calc(100% - 48px));
}

.hero-tags,
.detail-meta,
.movie-card__meta,
.tag-cloud div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.detail-meta span,
.movie-card__meta span,
.tag-cloud a,
.tag-cloud span {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.62);
  padding: 6px 10px;
  font-size: 13px;
}

.hero-slide h1 {
  margin: 20px 0 14px;
  color: #f8fafc;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-slide p {
  max-width: 720px;
  margin: 0;
  color: #cbd5e1;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #67e8f9;
}

.button--ghost {
  color: var(--text);
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid var(--line);
}

.button--ghost:hover {
  background: rgba(30, 41, 59, 0.9);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

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

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

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

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

.hero-dots button.is-active {
  width: 34px;
  background: var(--cyan);
}

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

.home-shell {
  padding: 64px 0;
}

.page-stack {
  padding: 42px 0 72px;
}

.content-section + .content-section,
.page-hero + .content-section,
.filter-panel + .content-section {
  margin-top: 48px;
}

.section-panel,
.detail-card,
.sidebar-card,
.filter-panel,
.search-page,
.sitemap-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.38));
  box-shadow: var(--shadow);
}

.section-panel {
  padding: clamp(22px, 3vw, 42px);
}

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

.section-heading h2 {
  margin: 4px 0 0;
  color: #f8fafc;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p,
.site-footer p,
.search-summary {
  color: var(--muted);
  line-height: 1.75;
}

.section-kicker {
  color: var(--cyan);
  font-weight: 800;
}

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

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

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

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

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

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

.movie-card {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.56);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.36);
  background: rgba(30, 41, 59, 0.72);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

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

.poster {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(99, 102, 241, 0.16)),
    #0f172a;
}

.poster::after {
  content: attr(data-title);
  position: absolute;
  inset: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #e2e8f0;
  font-weight: 800;
  line-height: 1.45;
}

.poster.is-missing::after {
  display: flex;
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.movie-card:hover .poster img,
.mini-item:hover .poster img {
  transform: scale(1.08);
}

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

.poster--wide {
  aspect-ratio: 16 / 9;
}

.poster--detail {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.poster__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.84), transparent 52%);
}

.movie-card__region,
.movie-card__year,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #f8fafc;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 8px;
  backdrop-filter: blur(8px);
}

.movie-card__region {
  top: 10px;
  left: 10px;
  background: rgba(6, 182, 212, 0.82);
}

.movie-card__year {
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.58);
}

.rank-badge {
  left: 10px;
  bottom: 10px;
  background: rgba(248, 113, 113, 0.88);
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #001018;
  background: rgba(34, 211, 238, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card__body {
  padding: 16px;
}

.movie-card__body h3 {
  min-height: 2.8em;
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: 16px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.movie-card__meta {
  justify-content: space-between;
  color: var(--weak);
  font-size: 12px;
}

.movie-card--horizontal .movie-card__link {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
}

.movie-card--horizontal .movie-card__body p {
  -webkit-line-clamp: 3;
}

.movie-card--horizontal .movie-card__body h3 {
  min-height: 0;
  font-size: 18px;
}

.movie-list {
  display: grid;
  gap: 14px;
}

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

.ranking-panel {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.72);
  padding: 22px;
  box-shadow: var(--shadow);
}

.ranking-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ranking-panel__head span {
  color: var(--red);
  font-weight: 900;
}

.ranking-panel__head h2 {
  margin: 0;
}

.ranking-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  border-radius: 14px;
  color: var(--muted);
  padding: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.ranking-item:hover {
  color: #f8fafc;
  background: rgba(34, 211, 238, 0.1);
}

.ranking-number {
  color: var(--cyan);
  font-weight: 900;
}

.ranking-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-hot {
  color: var(--red);
  font-weight: 700;
}

.page-hero {
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.16), transparent 45%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.45));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 900px;
  margin: 8px 0 12px;
  color: #f8fafc;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
}

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

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

.category-tile {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #f8fafc;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.14), transparent),
    rgba(15, 23, 42, 0.7);
  padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.36);
}

.category-tile strong {
  font-size: 20px;
}

.category-tile span {
  color: var(--muted);
}

.filter-panel {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
  padding: 18px;
}

.filter-panel label,
.search-large {
  display: grid;
  gap: 8px;
}

.filter-panel span {
  color: var(--muted);
  font-size: 13px;
}

.filter-panel input,
.filter-panel select,
.search-large input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  color: var(--text);
  background: rgba(2, 6, 23, 0.42);
  padding: 12px 14px;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  padding: 30px;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.pager-link,
.pager-ellipsis {
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.7);
  padding: 10px 12px;
}

.pager-link.is-active,
.pager-link:hover {
  color: #001018;
  background: var(--cyan);
}

.pager-link.is-disabled {
  pointer-events: none;
  opacity: 0.42;
}

.detail-shell {
  padding: 34px 0 72px;
}

.player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.player-main {
  display: grid;
  gap: 22px;
}

.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: var(--shadow);
}

.video-player video,
.player-poster,
.player-poster img {
  width: 100%;
  height: 100%;
}

.video-player video {
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.player-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.player-poster img {
  object-fit: cover;
  filter: brightness(0.56);
}

.video-player.is-ready .player-poster,
.video-player.is-ready .player-message {
  opacity: 0;
  pointer-events: none;
}

.player-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  color: #001018;
  background: rgba(34, 211, 238, 0.92);
  font-size: 34px;
  box-shadow: 0 20px 60px rgba(34, 211, 238, 0.28);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.video-player.is-playing .player-play {
  opacity: 0;
}

.video-player:hover .player-play,
.video-player:not(.is-playing) .player-play {
  opacity: 1;
}

.player-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.player-message {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(2, 6, 23, 0.68);
  padding: 8px 12px;
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.detail-card,
.sidebar-card {
  padding: clamp(20px, 3vw, 32px);
}

.detail-card h1 {
  margin: 0 0 14px;
  color: #f8fafc;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.detail-card h2,
.sidebar-card h2 {
  margin: 0 0 10px;
  color: #f8fafc;
  font-size: 20px;
}

.detail-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.9;
}

.lead-text {
  color: #e2e8f0 !important;
  font-size: 18px;
  font-style: italic;
}

.tag-cloud div {
  margin-top: 12px;
}

.detail-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

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

.mini-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 14px;
  padding: 8px;
  transition: background 0.2s ease;
}

.mini-item:hover {
  background: rgba(34, 211, 238, 0.08);
}

.mini-cover {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
}

.mini-body {
  min-width: 0;
}

.mini-body strong,
.mini-body em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-body strong {
  color: #f8fafc;
  font-size: 14px;
}

.mini-body em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  margin-top: 4px;
}

.search-page {
  padding: clamp(20px, 3vw, 34px);
}

.search-large {
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.search-large button {
  border: 0;
  border-radius: 14px;
  color: #001018;
  background: var(--cyan);
  font-weight: 800;
  padding: 0 24px;
}

.search-summary {
  margin: 18px 0 24px;
}

.sitemap-list {
  padding: 24px;
}

.sitemap-list ul {
  columns: 3;
  margin: 0;
  padding-left: 20px;
}

.sitemap-list li {
  break-inside: avoid;
  margin: 0 0 8px;
  color: var(--muted);
}

.sitemap-list a:hover {
  color: var(--cyan);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.72);
  padding: 34px 0;
}

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

.site-logo--footer {
  margin-bottom: 12px;
}

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

.footer-links a {
  color: var(--muted);
}

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

[hidden] {
  display: none !important;
}

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

  .two-column-section,
  .player-layout {
    grid-template-columns: 1fr;
  }

  .ranking-panel,
  .detail-sidebar {
    position: static;
  }

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

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

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-stage {
    height: 600px;
  }

  .hero-slide__overlay {
    background:
      linear-gradient(0deg, var(--bg) 0%, rgba(2, 6, 23, 0.72) 56%, rgba(2, 6, 23, 0.28) 100%);
  }

  .hero-slide__content {
    left: 20px;
    right: 20px;
    bottom: 80px;
    width: auto;
  }

  .hero-control {
    display: none;
  }

  .movie-grid--three,
  .movie-grid--four,
  .movie-grid--five,
  .movie-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .sitemap-list ul {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .page-shell,
  .footer-inner,
  .mobile-nav {
    width: min(100% - 22px, 1280px);
  }

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

  .hero-stage {
    height: 560px;
  }

  .movie-grid--three,
  .movie-grid--four,
  .movie-grid--five,
  .movie-grid--six,
  .category-grid,
  .category-grid--small {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .movie-card__body {
    padding: 12px;
  }

  .movie-card--horizontal .movie-card__link {
    grid-template-columns: 118px 1fr;
    gap: 12px;
  }

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

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

  .search-large button {
    min-height: 46px;
  }

  .player-play {
    width: 68px;
    height: 68px;
  }
}
