* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #020617;
  color: #e2e8f0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  line-height: 1.65;
}

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;
  background: rgba(15, 23, 42, 0.96);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.34);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #07111f;
  background: linear-gradient(135deg, #22d3ee, #38bdf8 48%, #67e8f9);
  box-shadow: 0 10px 26px rgba(34, 211, 238, 0.28);
  font-size: 17px;
  font-weight: 900;
}

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

.brand-title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 12px;
}

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

.desktop-nav a,
.nav-dropdown > a {
  color: #e2e8f0;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.nav-dropdown > a:hover,
.nav-dropdown > a.is-active {
  color: #67e8f9;
}

.nav-dropdown {
  position: relative;
  padding: 24px 0;
}

.dropdown-panel {
  position: absolute;
  top: 62px;
  left: 0;
  width: 210px;
  padding: 8px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  background: #0f172a;
  box-shadow: 0 22px 55px rgba(2, 6, 23, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.dropdown-panel a {
  display: block;
  padding: 9px 12px;
  border-radius: 12px;
  color: #cbd5e1;
}

.dropdown-panel a:hover {
  background: rgba(34, 211, 238, 0.1);
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-search {
  position: relative;
  width: 250px;
}

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  color: #f8fafc;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  padding: 10px 46px 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(34, 211, 238, 0.75);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.14);
}

.header-search button {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
}

.header-search button:hover {
  color: #67e8f9;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.95);
  color: #ffffff;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 14px 16px 20px;
  background: #0f172a;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 10px 4px;
  color: #e2e8f0;
}

.mobile-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.mobile-search input {
  padding: 10px 14px;
}

.mobile-search button,
.filter-panel button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #07111f;
  background: #22d3ee;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #020617;
}

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 32%, rgba(34, 211, 238, 0.22), transparent 24%),
    linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.92) 42%, rgba(2, 6, 23, 0.25) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px;
  max-width: 1180px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  padding: 5px 12px;
  color: #67e8f9;
  background: rgba(34, 211, 238, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.hero-content h1,
.hero-content h2 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-content h2 {
  font-size: clamp(30px, 4.4vw, 58px);
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 30px;
  color: #cbd5e1;
  font-size: 18px;
}

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

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

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

.btn.primary {
  color: #07111f;
  background: linear-gradient(135deg, #22d3ee, #67e8f9);
  box-shadow: 0 18px 36px rgba(34, 211, 238, 0.22);
}

.btn.ghost {
  color: #ffffff;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.btn.text-link {
  color: #67e8f9;
  padding-inline: 8px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(2, 6, 23, 0.66);
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(34, 211, 238, 0.76);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: #22d3ee;
}

.quick-links {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(15, 23, 42, 0.82);
}

.quick-link-inner {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 18px 0;
}

.quick-link-inner a {
  flex: 0 0 auto;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  padding: 9px 16px;
  color: #cbd5e1;
  background: rgba(2, 6, 23, 0.36);
}

.quick-link-inner a:hover {
  color: #67e8f9;
  border-color: rgba(34, 211, 238, 0.42);
}

.section-block,
.split-section,
.page-shell {
  padding-top: 46px;
}

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

.section-title-row h2 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
}

.section-title-row a,
.inline-more {
  color: #67e8f9;
  font-weight: 700;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
  background: #0f172a;
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 28px 70px rgba(34, 211, 238, 0.1);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111827;
}

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

.movie-card:hover .poster-frame img {
  transform: scale(1.06);
}

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0) 50%);
}

.poster-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 4px 9px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.poster-type {
  top: 10px;
  left: 10px;
}

.poster-year {
  right: 10px;
  bottom: 10px;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #07111f;
  background: rgba(103, 232, 249, 0.94);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-card-body h3 {
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card-body h3 a:hover {
  color: #67e8f9;
}

.movie-card-body p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0;
  overflow: hidden;
  color: #94a3b8;
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.movie-tags span {
  border-radius: 999px;
  padding: 4px 9px;
  color: #67e8f9;
  background: rgba(34, 211, 238, 0.11);
  font-size: 12px;
  font-weight: 700;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
}

.rank-panel {
  align-self: start;
  position: sticky;
  top: 92px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 22px;
  padding: 20px;
  background: #0f172a;
}

.compact-title {
  align-items: center;
  margin-bottom: 18px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 38px 70px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  padding: 8px;
  background: rgba(2, 6, 23, 0.34);
}

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

.rank-number {
  color: #67e8f9;
  font-weight: 900;
}

.rank-item img {
  width: 70px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-info {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.rank-info strong {
  overflow: hidden;
  color: #ffffff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info small {
  overflow: hidden;
  color: #94a3b8;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.compact-card {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  min-height: 128px;
}

.compact-card .poster-frame {
  height: 100%;
  aspect-ratio: auto;
}

.compact-card .movie-card-body h3 {
  font-size: 16px;
}

.page-shell {
  padding-bottom: 30px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #94a3b8;
  font-size: 14px;
}

.breadcrumb a {
  color: #67e8f9;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: #475569;
}

.small-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.18), transparent 28%),
    linear-gradient(135deg, #0f172a, #111827 60%, #020617);
}

.small-hero h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.small-hero p {
  max-width: 760px;
  margin: 0;
  color: #cbd5e1;
  font-size: 17px;
}

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

.category-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  background: #0f172a;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

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

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  height: 180px;
  background: #111827;
}

.category-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-body {
  padding: 18px;
}

.category-card-body h2 {
  margin: 0 0 8px;
  color: #ffffff;
}

.category-card-body p {
  min-height: 78px;
  margin: 0 0 14px;
  color: #94a3b8;
  font-size: 14px;
}

.category-card-body span {
  color: #67e8f9;
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, 150px) auto;
  gap: 12px;
  margin: 28px 0;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 22px;
  padding: 14px;
  background: rgba(15, 23, 42, 0.72);
}

.filter-panel input,
.filter-panel select {
  padding: 10px 14px;
}

.filter-panel select {
  appearance: none;
}

.filter-empty {
  margin: 30px 0;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
  padding: 26px;
  color: #cbd5e1;
  background: #0f172a;
  text-align: center;
}

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

.ranking-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 78px 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 22px;
  padding: 16px;
  background: #0f172a;
}

.ranking-index {
  color: #67e8f9;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}

.ranking-cover {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  background: #111827;
}

.ranking-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-body h2 {
  margin: 8px 0;
  color: #ffffff;
  font-size: 22px;
}

.ranking-body p {
  margin: 0 0 10px;
  color: #94a3b8;
}

.player-section {
  margin-bottom: 30px;
}

.video-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 28px 85px rgba(2, 6, 23, 0.48);
  aspect-ratio: 16 / 9;
}

.video-player {
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: #000000;
  cursor: pointer;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.28), transparent 26%), rgba(2, 6, 23, 0.48);
}

.player-button {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  color: #07111f;
  background: linear-gradient(135deg, #22d3ee, #67e8f9);
  box-shadow: 0 20px 55px rgba(34, 211, 238, 0.35);
  font-size: 36px;
}

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

.detail-poster {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border-radius: 22px;
  background: #111827;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.35);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-content {
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 34px);
  background: #0f172a;
}

.detail-content h1 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.14;
}

.detail-one-line {
  margin: 0 0 24px;
  color: #cbd5e1;
  font-size: 18px;
}

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

.movie-meta div {
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  padding: 12px;
  background: rgba(2, 6, 23, 0.28);
}

.movie-meta dt {
  margin-bottom: 4px;
  color: #64748b;
  font-size: 12px;
}

.movie-meta dd {
  margin: 0;
  color: #f8fafc;
  font-weight: 700;
}

.article-text {
  margin-top: 28px;
}

.article-text h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 22px;
}

.article-text p {
  margin: 0;
  color: #cbd5e1;
}

.related-section {
  padding-top: 34px;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: #0f172a;
  color: #cbd5e1;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand h2 {
  margin: 0;
  color: #ffffff;
}

.footer-brand p,
.footer-main > p {
  margin: 0;
  color: #94a3b8;
}

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

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

.site-footer a:hover {
  color: #67e8f9;
}

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

[hidden] {
  display: none !important;
}

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

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

  .split-section {
    grid-template-columns: 1fr;
  }

  .rank-panel,
  .detail-poster {
    position: static;
  }

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

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

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

  .brand-title {
    font-size: 18px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 520px;
  }

  .hero-arrow {
    display: none;
  }

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

  .movie-grid,
  .category-movie-grid,
  .latest-grid,
  .compact-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .ranking-card {
    grid-template-columns: 48px 110px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .ranking-index {
    font-size: 20px;
  }

  .ranking-body h2 {
    font-size: 18px;
  }

  .ranking-body p {
    display: none;
  }

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

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

  .movie-meta {
    grid-template-columns: 1fr 1fr;
  }

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