:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --orange-500: #f97316;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.16);
  --shadow-xl: 0 28px 70px rgba(15, 23, 42, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--gray-50);
  color: var(--gray-900);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.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: var(--shadow-lg);
}

.navbar {
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red-600);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.35);
}

.brand-text {
  font-size: 21px;
  background: linear-gradient(90deg, var(--red-400), #fb923c);
  -webkit-background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.mobile-link {
  border-radius: 12px;
  padding: 10px 16px;
  color: #d1d5db;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.active,
.mobile-link.active {
  color: var(--white);
  background: var(--red-600);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 24px 18px;
  background: var(--slate-900);
}

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

.hero-carousel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(14px) saturate(1.2);
  transform: scale(1.08);
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 22%, rgba(239, 68, 68, 0.42), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.9) 48%, rgba(15, 23, 42, 0.64));
}

.hero-content {
  position: relative;
  max-width: 1280px;
  min-height: 680px;
  margin: 0 auto;
  padding: 90px 24px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
}

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

.hero-kicker,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red-400);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.hero-copy h2 {
  margin: 0 0 16px;
  color: var(--red-400);
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.12;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 24px;
  color: #d1d5db;
  font-size: 18px;
}

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

.hero-tags span,
.detail-tags span,
.movie-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fecaca;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

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

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

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

.btn-primary {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 18px 38px rgba(220, 38, 38, 0.34);
}

.btn-primary:hover {
  background: var(--red-700);
}

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

.hero-poster {
  position: relative;
  display: block;
  max-width: 430px;
  margin-left: auto;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--red-600);
  font-weight: 900;
}

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

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

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

.stats-strip {
  max-width: 1180px;
  margin: -44px auto 0;
  position: relative;
  z-index: 6;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats-strip div {
  min-height: 104px;
  border-radius: 22px;
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.stats-strip strong {
  display: block;
  color: var(--gray-900);
  font-size: 20px;
}

.stats-strip span {
  color: var(--gray-500);
}

.section {
  padding: 74px 24px;
}

.section-light {
  background: var(--gray-50);
}

.section-dark {
  color: var(--white);
  background: linear-gradient(145deg, var(--slate-950), var(--slate-800));
}

.section-red {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-600), var(--orange-500));
}

.section-head {
  max-width: 1280px;
  margin: 0 auto 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.section-head a {
  color: var(--red-600);
  font-weight: 800;
}

.section-head-invert a,
.section-head-invert .section-kicker {
  color: #fecaca;
}

.movie-grid,
.rank-grid,
.category-grid,
.category-panels,
.ranking-list {
  max-width: 1280px;
  margin: 0 auto;
}

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

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

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

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

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--gray-200);
}

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

.movie-card:hover .movie-cover img,
.rank-card:hover img,
.category-tile:hover img {
  transform: scale(1.08);
}

.movie-score {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--white);
  background: var(--red-600);
  font-size: 12px;
  font-weight: 800;
}

.movie-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .movie-play {
  opacity: 1;
}

.icon-play {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}

.movie-info {
  padding: 14px;
}

.movie-info h3 {
  margin: 0 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}

.movie-info h3 a:hover {
  color: var(--red-600);
}

.movie-meta,
.movie-line {
  margin: 0 0 10px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-line {
  min-height: 42px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-tags span {
  color: var(--red-600);
  background: var(--red-50);
  border-color: var(--red-100);
}

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

.rank-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
}

.rank-cover {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 2 / 3;
  background: rgba(255, 255, 255, 0.08);
}

.rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.rank-number {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red-600);
  font-weight: 900;
  font-size: 13px;
}

.rank-content h3 {
  margin: 6px 0 6px;
  font-size: 17px;
  line-height: 1.25;
}

.rank-content p,
.rank-stats {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.ranking-list .rank-card {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.ranking-list .rank-content p,
.ranking-list .rank-stats {
  color: var(--gray-500);
}

.ranking-list .rank-content h3 a:hover {
  color: var(--red-600);
}

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

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

.category-tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 24px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.category-tile strong,
.category-tile p,
.category-emoji {
  position: relative;
  z-index: 2;
}

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

.category-tile p {
  color: rgba(255, 255, 255, 0.72);
}

.category-tile img {
  position: absolute;
  right: -20px;
  bottom: -50px;
  width: 160px;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.35;
  transition: transform 0.3s ease;
}

.category-emoji {
  font-size: 42px;
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.38), transparent 35%),
    linear-gradient(135deg, var(--slate-950), var(--slate-800));
  padding: 78px 24px;
}

.page-hero > div {
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

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

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

.category-panel {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-panel-link {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 220px;
}

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

.category-panel-cover img {
  width: 100%;
  height: 98px;
  object-fit: cover;
  border-radius: 12px;
}

.category-panel-body {
  padding: 28px;
}

.category-panel-body h2 {
  margin: 6px 0 10px;
  font-size: 26px;
}

.category-panel-body p {
  margin: 0;
  color: var(--gray-600);
}

.category-preview-list {
  margin: 0;
  padding: 18px 28px 24px;
  display: grid;
  gap: 8px;
  list-style: none;
  border-top: 1px solid var(--gray-100);
}

.category-preview-list a {
  color: var(--gray-600);
}

.category-preview-list a:hover {
  color: var(--red-600);
}

.search-panel {
  max-width: 1280px;
  margin: 0 auto 28px;
  border-radius: 22px;
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.search-label {
  display: block;
  margin-bottom: 12px;
  color: var(--gray-700);
  font-weight: 800;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 160px 160px;
  gap: 12px;
}

.search-row input,
.search-row select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--gray-900);
  background: var(--gray-50);
  outline: none;
}

.search-row input:focus,
.search-row select:focus {
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

.detail-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

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

.detail-backdrop {
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(1.12);
  transform: scale(1.08);
  opacity: 0.42;
}

.detail-mask {
  background:
    radial-gradient(circle at 80% 25%, rgba(239, 68, 68, 0.26), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.9));
}

.detail-inner {
  position: relative;
  max-width: 1280px;
  min-height: 560px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 0.12);
}

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

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

.breadcrumb a:hover {
  color: var(--red-400);
}

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

.detail-one-line {
  max-width: 780px;
  margin: 0 0 22px;
  color: #d1d5db;
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.detail-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.player-layout {
  max-width: 1280px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
}

.player-card,
.detail-side,
.story-card {
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.player-card {
  overflow: hidden;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.68));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

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

.player-button {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red-600);
  box-shadow: 0 24px 44px rgba(220, 38, 38, 0.4);
}

.player-button .icon-play {
  margin-left: 5px;
  border-top-width: 13px;
  border-bottom-width: 13px;
  border-left-width: 20px;
}

.player-overlay strong {
  max-width: 80%;
  font-size: 24px;
}

.detail-side {
  padding: 24px;
}

.detail-side h2,
.story-card h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.detail-side dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.detail-side dl div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
}

.detail-side dt {
  color: var(--gray-500);
  font-size: 13px;
}

.detail-side dd {
  margin: 0;
  color: var(--gray-900);
  font-weight: 700;
}

.story-card {
  max-width: 1280px;
  margin: 0 auto 22px;
  padding: 28px;
}

.story-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 34px;
}

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

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

.footer-block p {
  margin: 14px 0 0;
  color: #9ca3af;
}

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

.footer-block a:hover {
  color: var(--red-400);
}

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

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--red-600);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .movie-grid,
  .all-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

  .menu-toggle {
    display: block;
  }

  .hero-content,
  .detail-inner,
  .player-layout,
  .footer-inner,
  .category-panel-link {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 62px;
    gap: 32px;
  }

  .hero-poster {
    max-width: 260px;
    margin: 0;
  }

  .stats-strip {
    margin-top: 0;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 24px;
  }

  .category-panels,
  .search-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .navbar {
    padding: 0 16px;
  }

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

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

  .section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .movie-grid,
  .all-grid,
  .rank-grid,
  .ranking-list,
  .category-grid,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .rank-card {
    grid-template-columns: 74px 1fr;
  }

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

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

  .movie-info {
    padding: 12px;
  }

  .movie-line,
  .movie-tags {
    display: none;
  }

  .detail-inner {
    padding: 42px 16px;
  }

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