:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --orange-500: #f97316;
  --blue-500: #3b82f6;
  --red-500: #ef4444;
  --purple-500: #a855f7;
  --teal-500: #14b8a6;
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 25px 60px rgba(15, 23, 42, 0.28);
  --radius-xl: 18px;
  --radius-2xl: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--slate-800);
  background: linear-gradient(180deg, #f8fafc 0%, #f3f4f6 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--slate-900);
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.28);
}

.brand-text {
  font-size: 20px;
  color: transparent;
  background: linear-gradient(90deg, var(--amber-400), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
}

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

.nav-link,
.mobile-link {
  font-weight: 700;
  transition: color 0.2s ease, background-color 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.12);
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--slate-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1.8s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.4) 55%, rgba(15, 23, 42, 0.2)),
    linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 700px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 13px;
  color: var(--amber-400);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow.dark {
  color: var(--amber-600);
  background: #fff7ed;
  border-color: #fed7aa;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 0 0 22px;
  max-width: 640px;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-meta span,
.detail-meta span {
  padding: 6px 11px;
  border-radius: 999px;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 0;
}

.hero-tags span,
.tag-row span {
  padding: 7px 12px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

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

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

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.32);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: var(--amber-500);
}

.quick-search,
.content-section,
.category-section,
.highlight-section,
.listing-section,
.ranking-section {
  padding: 58px 0;
}

.quick-search {
  margin-top: -54px;
  position: relative;
  z-index: 6;
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.quick-search-text h2,
.section-heading h2,
.page-hero h1,
.detail-card h1 {
  margin: 0;
  color: var(--slate-800);
}

.quick-search-text p,
.section-heading p,
.page-hero p {
  margin: 10px 0 0;
  color: var(--slate-600);
  line-height: 1.8;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin: 24px 0 30px;
}

.search-field {
  display: grid;
  gap: 8px;
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 800;
}

.search-field input,
.filter-selects select {
  width: 100%;
  min-height: 46px;
  color: var(--slate-800);
  background: var(--white);
  border: 1px solid #dbe3ef;
  border-radius: 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-field input {
  padding: 0 15px;
}

.search-field input:focus,
.filter-selects select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.filter-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-selects select {
  min-width: 130px;
  padding: 0 12px;
}

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

.section-heading > div {
  min-width: 0;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.23);
}

.section-heading h2 {
  display: inline-block;
  margin-left: 10px;
  font-size: clamp(26px, 3.2vw, 36px);
}

.section-more,
.text-link {
  color: var(--amber-600);
  font-weight: 800;
}

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

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

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

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

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

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

.movie-card,
.rank-card,
.movie-card-wide {
  min-width: 0;
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--slate-200);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.poster-wrap img,
.wide-cover img,
.rank-cover img,
.related-thumb img,
.overview-visual img,
.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.3s ease;
}

.movie-card:hover .poster-wrap img,
.movie-card-wide:hover .wide-cover img,
.rank-card:hover .rank-cover img,
.related-card:hover img {
  transform: scale(1.1);
}

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 62%);
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.score-badge,
.corner-badge,
.rank-badge,
.rank-index {
  position: absolute;
  z-index: 2;
  color: var(--white);
  background: var(--amber-500);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
}

.score-badge,
.corner-badge {
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 12px;
}

.rank-badge,
.rank-index {
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red-500);
  font-size: 18px;
}

.movie-card h3,
.movie-card-wide h3,
.rank-card h3 {
  margin: 13px 0 5px;
  font-size: 15px;
  line-height: 1.45;
}

.movie-card h3 a,
.movie-card-wide h3 a,
.rank-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover h3 a,
.movie-card-wide:hover h3 a,
.rank-card:hover h3 a {
  color: var(--amber-600);
}

.movie-card p,
.movie-card-wide p,
.rank-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.6;
}

.movie-card-wide {
  overflow: hidden;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card-wide:hover,
.rank-card:hover,
.category-card:hover,
.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
}

.wide-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--slate-200);
}

.wide-body {
  padding: 18px;
}

.meta-line {
  margin-top: 12px;
  color: var(--slate-600);
  font-size: 12px;
}

.highlight-section {
  background: linear-gradient(90deg, #fffbeb, #fff7ed);
  border-radius: var(--radius-2xl);
  padding: 44px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-link {
  position: relative;
  display: block;
  padding: 24px;
  min-height: 170px;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
}

.category-glow {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.55), transparent 70%);
}

.category-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 22px;
}

.category-card p {
  position: relative;
  margin: 0;
  color: #e2e8f0;
  line-height: 1.75;
}

.category-samples {
  display: grid;
  gap: 10px;
  padding: 18px 20px 22px;
  font-size: 14px;
}

.category-samples a {
  color: var(--slate-700);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-samples a:hover {
  color: var(--amber-600);
}

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

.page-hero {
  padding: 62px 0 30px;
}

.small-hero,
.category-hero,
.rank-hero {
  padding-top: 54px;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.03em;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--slate-600);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--amber-600);
}

.overview-grid {
  display: grid;
  gap: 26px;
  padding: 30px 0 70px;
}

.overview-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 26px;
  overflow: hidden;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overview-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 10px;
  background: var(--slate-900);
}

.overview-visual img {
  aspect-ratio: 2 / 3;
  border-radius: 12px;
}

.overview-body {
  padding: 26px 26px 24px 0;
}

.overview-body h2 {
  margin: 0 0 10px;
}

.overview-body p {
  margin: 0 0 16px;
  color: var(--slate-600);
  line-height: 1.8;
}

.overview-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.overview-body li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--slate-700);
}

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

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

.rank-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-cover {
  position: relative;
  height: 120px;
  overflow: hidden;
  background: var(--slate-200);
}

.rank-info {
  min-width: 0;
  padding-right: 18px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  padding: 36px 0 70px;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: var(--white);
  background: #000;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.25s ease;
}

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

.player-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  transition: background 0.2s ease;
}

.player-cover:hover .player-mask {
  background: rgba(0, 0, 0, 0.52);
}

.player-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  padding-left: 6px;
  color: var(--white);
  background: var(--amber-500);
  border-radius: 999px;
  font-size: 38px;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.34);
  transition: transform 0.2s ease, background 0.2s ease;
}

.player-cover:hover .player-button {
  background: var(--amber-600);
  transform: translate(-50%, -50%) scale(1.08);
}

.detail-card,
.info-panel {
  margin-top: 24px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.detail-card {
  padding: 28px;
}

.detail-card h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.detail-meta {
  gap: 10px;
  margin: 18px 0;
}

.detail-meta span {
  color: var(--slate-700);
  background: var(--slate-100);
}

.one-line {
  margin: 0 0 22px;
  color: var(--slate-700);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.tag-row span {
  color: var(--amber-700, #b45309);
  background: #fff7ed;
}

.prose-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.prose-block h2,
.info-panel h2 {
  margin: 0 0 14px;
  color: var(--slate-800);
}

.prose-block p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.9;
  white-space: pre-line;
}

.review-block {
  margin-top: 22px;
  padding: 24px;
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
  border: 0;
  border-radius: 18px;
}

.detail-aside {
  position: sticky;
  top: 90px;
  align-self: start;
}

.info-panel {
  padding: 24px;
}

.info-panel dl {
  display: grid;
  gap: 15px;
  margin: 0;
}

.info-panel dt {
  margin-bottom: 4px;
  color: var(--slate-600);
  font-size: 13px;
}

.info-panel dd {
  margin: 0;
  color: var(--slate-800);
  font-weight: 800;
  line-height: 1.55;
}

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

.related-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
}

.related-thumb {
  overflow: hidden;
  height: 66px;
  border-radius: 12px;
  background: var(--slate-200);
}

.related-info {
  min-width: 0;
}

.related-info strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--slate-800);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.related-info small {
  display: block;
  margin-top: 6px;
  color: var(--slate-600);
}

.related-section {
  padding-bottom: 0;
}

.empty-state {
  padding: 40px 20px;
  text-align: center;
  color: var(--slate-600);
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  color: #cbd5e1;
  background: var(--slate-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  padding: 46px 0;
}

.footer-brand {
  color: var(--white);
  font-size: 20px;
}

.footer-main p {
  max-width: 560px;
  color: #cbd5e1;
  line-height: 1.8;
}

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

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

.site-footer a:hover {
  color: var(--amber-400);
}

.footer-bottom {
  padding: 18px;
  color: #94a3b8;
  text-align: center;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
}

@media (max-width: 1080px) {
  .poster-grid,
  .compact-grid,
  .large-listing,
  .slim-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

  .detail-aside {
    position: static;
  }
}

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    height: 76vh;
    min-height: 560px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .quick-search {
    margin-top: -34px;
    padding: 22px;
  }

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

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

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

  .poster-grid,
  .compact-grid,
  .large-listing,
  .slim-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .wide-grid,
  .rank-grid-inline,
  .rank-list,
  .category-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .overview-body {
    padding: 22px;
  }

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

  .rank-cover {
    height: 190px;
  }

  .rank-info {
    padding: 0 18px 18px;
  }

  .highlight-section {
    padding: 30px 18px;
  }

  .detail-card,
  .info-panel {
    padding: 22px;
  }

  .player-button {
    width: 74px;
    height: 74px;
    font-size: 30px;
  }
}

@media (max-width: 420px) {
  .poster-grid,
  .compact-grid,
  .large-listing,
  .slim-grid {
    gap: 14px;
  }

  .movie-card h3 {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }
}
