:root {
  --bg: #fff8f6;
  --bg-soft: #fff1ed;
  --text: #141414;
  --muted: #6b7280;
  --line: rgba(17, 24, 39, 0.1);
  --rose: #e11d48;
  --amber: #d97706;
  --emerald: #059669;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(244, 63, 94, 0.16), transparent 26rem),
    radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.18), transparent 26rem),
    linear-gradient(180deg, #fffafa 0%, var(--bg) 40%, #ffffff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

img {
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--rose), var(--amber), var(--emerald));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--amber));
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.25);
}

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

.nav-link {
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #4b5563;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--amber));
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.22);
}

.nav-link.soft {
  color: #6b7280;
  background: rgba(255, 255, 255, 0.55);
}

.header-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.header-search input,
.large-search input,
.filter-bar input,
.search-page-form input,
.mobile-panel input {
  border: 0;
  outline: 0;
  background: transparent;
  min-width: 0;
}

.header-search input {
  width: 190px;
  padding: 8px 12px;
}

.header-search button,
.large-search button,
.search-page-form button,
.mobile-panel button {
  border: 0;
  border-radius: 999px;
  padding: 8px 15px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--amber));
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

.mobile-panel {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px 18px;
  gap: 10px;
  flex-wrap: wrap;
}

.mobile-panel.open {
  display: flex;
}

.mobile-panel a {
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
}

.mobile-panel form {
  width: 100%;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.mobile-panel input {
  flex: 1;
  padding: 8px 10px;
}

.hero-carousel {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
  border-radius: 0 0 38px 38px;
  background: #111827;
}

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

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(225, 29, 72, 0.35), transparent 28rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.16) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  filter: saturate(1.12) contrast(1.05);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 44px));
  margin-left: max(22px, calc((100vw - 1280px) / 2 + 22px));
  color: #fff;
  padding: 72px 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
  color: var(--rose);
}

.hero-copy h1,
.hero-copy h2 {
  margin-top: 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.06em;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.hero-copy p {
  margin-top: 22px;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

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

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.tag-row span {
  color: #9f1239;
  background: #fff1f2;
}

.hero-actions,
.detail-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.primary-btn,
.ghost-btn,
.filter-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: all 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--amber));
  box-shadow: 0 18px 35px rgba(225, 29, 72, 0.3);
}

.primary-btn:hover,
.ghost-btn:hover,
.filter-link:hover {
  transform: translateY(-2px);
}

.ghost-btn,
.filter-link {
  color: #111827;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(14px);
  font-size: 38px;
  line-height: 1;
}

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

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

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

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

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

.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 22px 0;
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.intro-strip h2,
.section-heading h2,
.page-hero h1,
.detail-info h1,
.content-card h2,
.info-card h2 {
  font-weight: 950;
  letter-spacing: -0.04em;
  color: #111827;
}

.intro-strip h2,
.section-heading h2 {
  margin-top: 6px;
  font-size: clamp(28px, 4vw, 44px);
}

.intro-strip p,
.page-hero p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.9;
}

.large-search,
.search-page-form {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
}

.large-search input,
.search-page-form input {
  flex: 1;
  padding: 0 18px;
  font-size: 16px;
}

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

.section-heading a {
  color: #be123c;
  font-weight: 900;
}

.section-heading.slim {
  align-items: center;
}

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

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

.category-tile {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111827;
  box-shadow: var(--shadow);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 172px;
  transition: transform 0.35s ease;
}

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

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

.category-content {
  position: absolute;
  inset: auto 16px 16px 16px;
  color: #fff;
}

.category-content strong {
  display: block;
  font-size: 20px;
  font-weight: 950;
}

.category-content em {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: all 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(225, 29, 72, 0.14);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.16), rgba(217, 119, 6, 0.12));
}

.poster-link img {
  width: 100%;
  height: 100%;
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.05);
}

.card-ribbon {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(225, 29, 72, 0.86);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.movie-card-body {
  padding: 15px;
}

.movie-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 800;
}

.movie-card h2,
.movie-card h3,
.ranking-card h2 {
  margin-top: 8px;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 950;
}

.movie-card p,
.ranking-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.movie-card .tag-row {
  margin-top: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.panel-card,
.content-card,
.info-card,
.search-panel {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 24px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 44px 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  background: #fff7f5;
  border: 1px solid rgba(225, 29, 72, 0.08);
}

.rank-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--amber));
  font-weight: 950;
}

.rank-item img {
  width: 58px;
  height: 76px;
  border-radius: 12px;
}

.rank-text strong,
.rank-text em {
  display: block;
}

.rank-text strong {
  font-weight: 950;
  color: #111827;
}

.rank-text em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
}

.page-hero {
  max-width: 1280px;
  margin: 26px auto 0;
  border-radius: 34px;
  padding: 70px 42px;
  background:
    radial-gradient(circle at 20% 20%, rgba(225, 29, 72, 0.18), transparent 24rem),
    linear-gradient(135deg, #fff, #fff5f1);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin-top: 8px;
  font-size: clamp(38px, 5vw, 68px);
}

.category-hero {
  background:
    radial-gradient(circle at 15% 0%, rgba(245, 158, 11, 0.22), transparent 24rem),
    linear-gradient(135deg, #ffffff, #fff1f2);
}

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

.breadcrumb a {
  color: #be123c;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.inline-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #be123c;
  font-weight: 800;
}

.filter-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.filter-bar input {
  flex: 1;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.filter-link {
  background: #fff;
  color: #be123c;
  border: 1px solid var(--line);
}

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

.ranking-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
}

.ranking-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
}

.ranking-poster span {
  position: absolute;
  left: 9px;
  top: 9px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--rose), var(--amber));
}

.ranking-poster img {
  width: 100%;
  height: 100%;
}

.search-panel {
  padding: 28px;
}

.search-page-form {
  margin-bottom: 24px;
}

.detail-hero {
  min-height: 600px;
  color: #fff;
  background: #111827;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 20%, rgba(225, 29, 72, 0.38), transparent 28rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.24));
}

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

.detail-backdrop img {
  width: 100%;
  height: 100%;
  filter: blur(4px) saturate(1.12);
  transform: scale(1.03);
}

.detail-layout {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 600px;
  padding: 70px 22px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.detail-info .breadcrumb,
.detail-info .breadcrumb a,
.detail-info .section-kicker {
  color: rgba(255, 255, 255, 0.8);
}

.detail-info h1 {
  margin-top: 12px;
  max-width: 880px;
  color: #fff;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
}

.detail-info p {
  margin-top: 22px;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.9;
}

.player-wrap {
  margin-top: -70px;
  position: relative;
  z-index: 5;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.36);
  aspect-ratio: 16 / 9;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.45));
  transition: opacity 0.2s ease;
}

.play-overlay span {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--amber));
  box-shadow: 0 20px 60px rgba(225, 29, 72, 0.35);
  font-size: 38px;
  padding-left: 6px;
}

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

.player-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
  gap: 22px;
}

.content-card,
.info-card {
  padding: 26px;
}

.content-card h2,
.info-card h2 {
  font-size: 26px;
}

.content-card p {
  margin-top: 14px;
  color: #4b5563;
  line-height: 2;
}

.info-card dl {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.info-card dt {
  color: #9ca3af;
  font-size: 13px;
  font-weight: 900;
}

.info-card dd {
  color: #111827;
  font-weight: 800;
  line-height: 1.6;
}

.site-footer {
  margin-top: 70px;
  padding: 48px 22px 24px;
  color: #cbd5e1;
  background: #111827;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
}

.footer-logo {
  color: #fff;
  -webkit-background-clip: initial;
  background-clip: initial;
  background: none;
}

.footer-inner p {
  margin-top: 14px;
  max-width: 520px;
  line-height: 1.8;
  color: #94a3b8;
}

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

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  font-weight: 700;
}

.footer-bottom {
  max-width: 1280px;
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 14px;
}

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

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

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

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

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

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

@media (max-width: 760px) {
  .header-inner {
    padding: 12px 16px;
  }

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

  .hero-carousel {
    min-height: 640px;
    border-radius: 0 0 28px 28px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 80px;
  }

  .hero-control {
    top: auto;
    bottom: 72px;
    transform: none;
  }

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

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

  .section-wrap {
    padding: 38px 16px 0;
  }

  .page-hero {
    margin: 16px 16px 0;
    padding: 42px 22px;
    border-radius: 26px;
  }

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

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

  .movie-card-body {
    padding: 12px;
  }

  .movie-card h2,
  .movie-card h3 {
    font-size: 16px;
  }

  .movie-card p {
    font-size: 13px;
  }

  .section-heading,
  .filter-bar,
  .large-search,
  .search-page-form {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-link,
  .large-search button,
  .search-page-form button {
    width: 100%;
  }

  .ranking-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .detail-layout {
    grid-template-columns: 1fr;
    padding: 48px 16px 110px;
  }

  .detail-poster {
    max-width: 220px;
  }

  .detail-info p {
    font-size: 16px;
  }

  .player-wrap {
    margin-top: -86px;
  }

  .player-shell {
    border-radius: 20px;
  }

  .play-overlay span {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }

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

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

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