:root {
  color-scheme: light;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-100: #d1fae5;
  --teal-50: #f0fdfa;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.09);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--slate-800);
  background: var(--slate-50);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.no-scroll {
  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(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: linear-gradient(90deg, var(--slate-800), var(--slate-900));
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.25);
}

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

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald-500), #14b8a6);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong,
.footer-logo strong {
  font-size: 20px;
  letter-spacing: 0.04em;
}

.brand-text small {
  color: #cbd5e1;
  font-size: 12px;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #e2e8f0;
  font-size: 14px;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

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

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: 0.2s ease;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

.header-panel {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.98);
}

.global-search {
  display: flex;
  gap: 12px;
  padding: 18px 0 12px;
}

.global-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  outline: none;
  background: var(--white);
  color: var(--slate-800);
  padding: 13px 15px;
  transition: 0.2s ease;
}

.global-search input {
  color: var(--white);
  background: rgba(51, 65, 85, 0.82);
}

.global-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.global-search button,
.primary-button,
.text-button {
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--emerald-600);
  font-weight: 800;
  white-space: nowrap;
  padding: 13px 24px;
  box-shadow: 0 14px 28px rgba(5, 150, 105, 0.25);
  transition: 0.2s ease;
}

.global-search button:hover,
.primary-button:hover,
.text-button:hover {
  background: var(--emerald-700);
  transform: translateY(-2px);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 0 18px;
}

.quick-link,
.pill-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.13);
  font-size: 14px;
}

.mobile-nav {
  display: none;
  padding: 10px 16px 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: var(--slate-900);
}

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

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 75% 35%, rgba(16, 185, 129, 0.32), transparent 32%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.72), rgba(15, 23, 42, 0.52) 48%, rgba(248, 250, 252, 0.96));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 42px;
  height: 100%;
  color: var(--white);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald-500);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0 6px;
  font-size: clamp(36px, 5.8vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-copy h2 {
  margin: 0 0 16px;
  color: #a7f3d0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.16;
}

.hero-copy p,
.page-hero-content p,
.detail-one-line {
  max-width: 760px;
  color: #e2e8f0;
  font-size: 19px;
}

.hero-tags,
.movie-tags,
.large-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 24px 0;
}

.hero-tags span,
.movie-tags span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #065f46;
  background: var(--emerald-100);
  font-size: 12px;
  font-weight: 700;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  background: rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(12px);
  transition: 0.2s ease;
}

.ghost-button:hover {
  transform: translateY(-2px);
  border-color: var(--emerald-500);
  background: rgba(16, 185, 129, 0.18);
}

.ghost-button.dark {
  color: var(--slate-800);
  border-color: rgba(71, 85, 105, 0.24);
  background: rgba(255, 255, 255, 0.86);
}

.hero-poster {
  position: relative;
  display: block;
  justify-self: end;
  width: min(350px, 100%);
  aspect-ratio: 3 / 4.25;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.42);
}

.hero-poster img,
.detail-poster img,
.movie-cover img,
.category-tile img,
.overview-image img,
.rank-row img,
.page-hero img,
.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster span,
.detail-poster span,
.play-mini {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(5, 150, 105, 0.92);
  box-shadow: 0 16px 35px rgba(5, 150, 105, 0.28);
}

.hero-poster span,
.detail-poster span {
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  font-size: 26px;
}

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

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

.hero-dot.active {
  width: 32px;
  background: var(--emerald-500);
}

.section-block {
  padding: 56px 0;
}

.quick-category-strip {
  padding-bottom: 20px;
}

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

.section-heading.inside {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 6px 0 0;
  color: var(--slate-800);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.section-heading a {
  color: var(--emerald-700);
  font-weight: 800;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list a {
  min-height: 42px;
  color: var(--emerald-700);
  background: var(--emerald-100);
  font-weight: 800;
  transition: 0.2s ease;
}

.pill-list a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

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

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

.movie-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

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

.movie-cover {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-200), var(--teal-50));
}

.movie-card.compact .movie-cover {
  aspect-ratio: 16 / 9;
}

.movie-cover img {
  transition: transform 0.5s ease;
}

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

.cover-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 18px;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.78));
  transition: 0.25s ease;
}

.movie-link:hover .cover-layer {
  opacity: 1;
}

.play-mini {
  position: static;
  width: 42px;
  height: 42px;
}

.duration,
.rank-badge {
  position: absolute;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.76);
  font-size: 12px;
  font-weight: 800;
}

.duration {
  right: 12px;
}

.rank-badge {
  left: 12px;
  background: var(--emerald-600);
}

.movie-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.movie-meta-line {
  color: var(--emerald-700);
  font-size: 12px;
  font-weight: 800;
}

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

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

.movie-tags {
  margin-top: auto;
}

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

.feature-panel,
.ranking-panel,
.content-panel,
.overview-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-panel {
  padding: 28px;
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
}

.ranking-panel {
  padding: 28px;
}

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

.category-tile {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--slate-800);
}

.category-tile img {
  position: absolute;
  inset: 0;
  transition: transform 0.45s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.78));
}

.category-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
}

.category-copy strong {
  font-size: 22px;
}

.category-copy small {
  color: #cbd5e1;
}

.rank-list,
.editor-list {
  display: grid;
  gap: 12px;
}

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

.rank-row:hover {
  transform: translateX(4px);
  background: #ecfdf5;
}

.rank-number {
  color: var(--emerald-600);
  font-size: 24px;
  font-weight: 900;
}

.rank-row img {
  width: 82px;
  height: 54px;
  border-radius: 12px;
  background: var(--slate-200);
}

.rank-content {
  min-width: 0;
}

.rank-content strong,
.rank-content small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-content small,
.rank-row em {
  color: var(--slate-500);
  font-size: 12px;
  font-style: normal;
}

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

.page-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-900);
}

.page-hero img {
  position: absolute;
  inset: 0;
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 30%, rgba(16, 185, 129, 0.35), transparent 30%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.76), rgba(15, 23, 42, 0.72));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.page-hero-content h1 {
  margin: 14px 0 12px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.04;
}

.page-hero-content .primary-button {
  margin-top: 24px;
}

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

.overview-card {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  overflow: hidden;
}

.overview-image {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--slate-800);
}

.overview-image span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: var(--white);
  font-weight: 800;
}

.overview-content {
  padding: 24px;
}

.overview-content h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.overview-content p {
  margin: 0 0 14px;
  color: var(--slate-600);
}

.overview-content ul {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.overview-content li a {
  color: var(--slate-700);
}

.overview-content li a:hover {
  color: var(--emerald-700);
}

.text-button {
  display: inline-flex;
  padding: 10px 18px;
  font-size: 14px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 14px;
  margin: 0 0 26px;
  padding: 18px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.empty-state {
  margin: 28px 0 0;
  padding: 28px;
  border-radius: 18px;
  color: var(--slate-500);
  background: var(--white);
  text-align: center;
}

.detail-shell {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-900);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  filter: blur(16px) saturate(1.05);
  transform: scale(1.08);
  opacity: 0.38;
}

.detail-backdrop span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.6), rgba(15, 23, 42, 0.96));
}

.detail-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 560px;
  padding-top: 52px;
  padding-bottom: 52px;
}

.detail-poster {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 3 / 4.25;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.34);
}

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

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

.detail-copy h1 {
  margin: 20px 0 14px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

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

.large-tags span {
  min-height: 32px;
  padding: 0 12px;
}

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

.player-section {
  padding-top: 44px;
}

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.68));
}

.player-overlay span {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  background: var(--emerald-600);
  font-size: 36px;
  box-shadow: 0 18px 35px rgba(5, 150, 105, 0.33);
  transition: 0.2s ease;
}

.player-overlay:hover span {
  transform: scale(1.08);
  background: var(--emerald-700);
}

.player-frame.is-playing .player-overlay,
.player-frame.is-loading .player-overlay {
  opacity: 0;
  pointer-events: none;
}

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

.content-panel {
  padding: 28px;
}

.content-panel h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.content-panel p {
  margin: 0;
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.82;
}

.wide-panel {
  grid-column: 1 / -1;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

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

.info-list dt {
  color: var(--slate-500);
  font-size: 13px;
}

.info-list dd {
  margin: 5px 0 0;
  font-weight: 800;
}

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

.site-footer {
  margin-top: 40px;
  padding: 54px 0 28px;
  color: #cbd5e1;
  background: var(--slate-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
  gap: 36px;
}

.footer-brand p {
  max-width: 560px;
  color: #94a3b8;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

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

.footer-links a:hover {
  color: #a7f3d0;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #64748b;
  text-align: center;
}

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

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    display: grid;
    gap: 6px;
  }

  .mobile-nav .nav-link {
    justify-content: center;
    border-radius: 14px;
  }

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

  .hero {
    height: auto;
    min-height: 680px;
  }

  .hero-content {
    padding: 72px 0 92px;
  }

  .hero-poster {
    justify-self: start;
    width: min(260px, 72vw);
  }

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

  .overview-grid,
  .editor-section .editor-list,
  .detail-text-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero-grid {
    min-height: auto;
  }

  .detail-poster {
    width: min(280px, 72vw);
  }
}

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

  .brand-text small {
    display: none;
  }

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

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

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

  .movie-info {
    padding: 13px;
  }

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

  .overview-card {
    grid-template-columns: 1fr;
  }

  .overview-image {
    min-height: 220px;
  }

  .rank-row {
    grid-template-columns: 34px 72px minmax(0, 1fr);
  }

  .rank-row em {
    display: none;
  }

  .info-list {
    grid-template-columns: 1fr;
  }

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

  .player-overlay span {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}

@media (max-width: 460px) {
  .movie-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy p,
  .page-hero-content p,
  .detail-one-line {
    font-size: 16px;
  }

  .hero-actions,
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
    justify-content: center;
  }
}
