:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --blue-500: #3b82f6;
  --red-500: #ef4444;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-md: 0 12px 28px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 22px 50px rgba(17, 24, 39, 0.14);
  --radius-lg: 18px;
  --radius-xl: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, var(--green-600), var(--green-500), var(--emerald-500));
  box-shadow: 0 12px 28px rgba(5, 150, 105, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--green-600);
  background: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.38), 0 10px 26px rgba(0, 0, 0, 0.12);
}

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

.logo-text strong {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-text em {
  margin-top: 5px;
  color: #d1fae5;
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0;
  transform: scaleX(0.4);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: min(260px, 24vw);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 10px 12px 10px 16px;
}

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

.header-search button {
  border: 0;
  color: var(--green-700);
  background: #ffffff;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 800;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.mobile-nav {
  display: none;
  padding: 0 0 16px;
}

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

.mobile-quick-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-quick-cats a {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  padding: 6px 12px;
  color: #ffffff;
  font-size: 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(90deg, var(--green-600), var(--emerald-500), var(--green-600));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle at 2px 2px, #ffffff 1px, transparent 0);
  background-size: 42px 42px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -160px;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  filter: blur(2px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 42px;
  align-items: center;
  min-height: 560px;
  padding: 80px 0 108px;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  padding: 8px 14px;
  color: #ecfdf5;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.hero p {
  margin: 0;
  color: #ecfdf5;
  font-size: 19px;
}

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

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

.button-primary {
  color: var(--green-700);
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

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

.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.hero-search {
  display: flex;
  overflow: hidden;
  max-width: 560px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  padding: 16px 20px;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.84);
}

.hero-search button {
  border: 0;
  color: var(--green-700);
  background: #ffffff;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 900;
}

.hero-showcase {
  position: relative;
  min-height: 420px;
}

.hero-slider {
  position: relative;
  min-height: 420px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

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

.hero-slide-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 110px 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76));
}

.hero-slide-content h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.15;
}

.hero-slide-content p {
  display: -webkit-box;
  overflow: hidden;
  color: #f3f4f6;
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-slide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-slide-meta span {
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.92);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

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

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

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 92px;
  fill: var(--green-50);
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding: 42px 0;
}

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

.section-title {
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
}

.section-desc {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section-more {
  flex-shrink: 0;
  color: var(--green-700);
  font-weight: 900;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-500), var(--emerald-500));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.category-tile:hover {
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-tile:hover::before {
  opacity: 1;
}

.category-tile > * {
  position: relative;
  z-index: 1;
}

.category-tile strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.category-tile span,
.category-tile p {
  color: var(--gray-600);
}

.category-tile:hover span,
.category-tile:hover p {
  color: rgba(255, 255, 255, 0.9);
}

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

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

.movie-card {
  min-width: 0;
}

.movie-card a {
  display: block;
  height: 100%;
  color: inherit;
}

.movie-card-grid,
.movie-card-large,
.movie-card-horizontal {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.card-poster,
.large-poster,
.horizontal-poster {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-100), #ffffff);
}

.card-poster {
  aspect-ratio: 16 / 10;
}

.card-poster img,
.large-poster img,
.horizontal-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.category-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.category-badge {
  right: 12px;
  top: 12px;
  color: #ffffff;
  background: var(--green-500);
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 32px;
  text-align: center;
  color: #ffffff;
  background: var(--red-500);
}

.card-body {
  padding: 16px;
}

.card-body h3,
.large-info h3,
.horizontal-info strong {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--gray-800);
  font-weight: 900;
  -webkit-box-orient: vertical;
}

.card-body h3 {
  min-height: 50px;
  font-size: 17px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
}

.card-body p,
.large-info p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--gray-600);
  -webkit-box-orient: vertical;
}

.card-body p {
  min-height: 44px;
  margin: 10px 0 14px;
  font-size: 14px;
  -webkit-line-clamp: 2;
}

.card-meta,
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gray-500);
  font-size: 13px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
}

.large-poster {
  height: 360px;
}

.large-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.7));
}

.large-info {
  padding: 22px;
}

.large-info h3 {
  font-size: 28px;
  line-height: 1.2;
  -webkit-line-clamp: 2;
}

.large-info p {
  margin: 12px 0 16px;
  -webkit-line-clamp: 3;
}

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

.movie-card-horizontal a {
  display: flex;
  gap: 14px;
  padding: 12px;
}

.horizontal-poster {
  width: 148px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 14px;
}

.horizontal-info {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.horizontal-info strong {
  font-size: 16px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
}

.horizontal-info em,
.horizontal-info span,
.horizontal-info small {
  display: block;
  overflow: hidden;
  color: var(--gray-500);
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.horizontal-info span {
  color: var(--gray-600);
  font-size: 13px;
}

.banner-strip {
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: #ffffff;
  background: linear-gradient(100deg, var(--green-600), var(--emerald-500));
  box-shadow: var(--shadow-lg);
  padding: 36px;
}

.banner-strip h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.banner-strip p {
  margin: 0;
  color: #dcfce7;
}

.page-hero {
  color: #ffffff;
  background: linear-gradient(90deg, var(--green-600), var(--emerald-600));
  padding: 66px 0;
}

.page-hero.center {
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: #dcfce7;
  font-size: 18px;
}

.page-hero.center p {
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
  color: var(--gray-500);
  font-size: 14px;
}

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

.filter-panel {
  margin: 0 0 26px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  padding: 18px;
}

.filter-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.filter-panel-title strong {
  font-size: 20px;
}

.filter-panel-title span {
  color: var(--green-700);
  font-weight: 800;
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(180px, 1.5fr) repeat(4, minmax(130px, 1fr));
  gap: 12px;
}

.filter-controls input,
.filter-controls select {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: #ffffff;
  padding: 12px 14px;
  outline: 0;
}

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

.detail-player-shell {
  background: #050505;
  padding: 26px 0;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.54));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  color: var(--green-600);
  background: #ffffff;
  font-size: 30px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.play-overlay strong {
  font-size: 24px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

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

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

.detail-card,
.sidebar-card {
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  padding: 26px;
}

.detail-title {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.detail-meta span,
.tag-pill {
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-700);
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 800;
}

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

.detail-section h2 {
  margin: 0 0 12px;
  color: var(--gray-800);
  font-size: 24px;
}

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

.review-box {
  border-left: 4px solid var(--green-500);
  border-radius: 16px;
  background: linear-gradient(90deg, var(--green-50), #ffffff);
  padding: 20px;
}

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

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sidebar-card {
  position: sticky;
  top: 96px;
}

.sidebar-card h2,
.sidebar-card h3 {
  margin: 0 0 18px;
}

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

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.sitemap-list a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
  padding: 12px;
  color: var(--gray-700);
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.site-footer {
  margin-top: 70px;
  color: #d1d5db;
  background: linear-gradient(180deg, var(--gray-800), var(--gray-900));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) 1fr 1fr;
  gap: 36px;
  padding: 52px 0;
}

.footer-logo .logo-mark {
  color: var(--gray-900);
}

.footer-brand p {
  max-width: 460px;
  color: #d1d5db;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
}

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

.site-footer a:hover {
  color: #86efac;
}

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

.empty-state {
  display: none;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  padding: 42px;
  text-align: center;
}

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

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

  .mobile-menu-button {
    display: block;
    margin-left: auto;
  }

  .hero-inner,
  .feature-layout,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 58px;
  }

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

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

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

  .sidebar-card {
    position: static;
  }

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

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

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

  .logo-text strong {
    font-size: 18px;
  }

  .hero-inner {
    min-height: auto;
    padding: 42px 0 92px;
  }

  .hero-search,
  .hero-actions {
    flex-direction: column;
    border-radius: 18px;
  }

  .hero-search button {
    min-height: 48px;
  }

  .hero-slide img,
  .hero-slider,
  .hero-showcase {
    min-height: 360px;
    height: 360px;
  }

  .section {
    padding: 44px 0;
  }

  .section-header {
    display: block;
  }

  .category-grid,
  .movie-grid,
  .movie-grid.compact,
  .related-grid,
  .filter-controls,
  .sitemap-list {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal a {
    align-items: center;
  }

  .horizontal-poster {
    width: 118px;
    height: 84px;
  }

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

  .play-overlay {
    flex-direction: column;
  }

  .play-overlay span {
    width: 62px;
    height: 62px;
  }
}
