:root {
  color-scheme: light;
  --orange-700: #c2410c;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --amber-500: #f59e0b;
  --yellow-600: #ca8a04;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.18);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--slate-800);
  background: linear-gradient(180deg, var(--slate-50), var(--slate-100));
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--orange-600), #d97706, var(--yellow-600));
  box-shadow: 0 10px 25px rgba(124, 45, 18, 0.25);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: #fef3c7;
  transform: translateY(-1px);
}

.nav-search {
  width: 260px;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search input {
  width: 100%;
  height: 40px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 0 44px 0 16px;
  color: white;
  background: rgba(255, 255, 255, 0.20);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.nav-search button {
  position: absolute;
  right: 7px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

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

.mobile-panel {
  display: none;
  padding: 16px 24px 22px;
  background: rgba(194, 65, 12, 0.98);
  backdrop-filter: blur(12px);
}

.mobile-panel.open {
  display: grid;
  gap: 10px;
}

.mobile-panel a {
  color: white;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

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

.mobile-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 11px 14px;
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--orange-700);
  background: white;
  font-weight: 700;
}

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(14px);
  transform: scale(1.12);
  opacity: 0.72;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(124, 45, 18, 0.94), rgba(146, 64, 14, 0.82), rgba(202, 138, 4, 0.62));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 48px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #ffedd5;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.17);
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 30px rgba(15, 23, 42, 0.32);
}

.hero-lead {
  max-width: 680px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.65;
  text-shadow: 0 4px 18px rgba(15, 23, 42, 0.32);
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-btn {
  color: white;
  background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
  box-shadow: 0 16px 30px rgba(234, 88, 12, 0.35);
}

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

.ghost-btn {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.20);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  background: rgba(255, 255, 255, 0.16);
}

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

.hero-poster span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  height: 44px;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  background: rgba(249, 115, 22, 0.92);
  backdrop-filter: blur(8px);
}

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

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

.hero-dot.active {
  width: 38px;
  background: white;
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 24px;
}

.section-heading {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-heading > span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3.2vw, 36px);
  line-height: 1.15;
  color: var(--slate-800);
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--slate-500);
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #fed7aa, #f97316);
}

.featured-grid .card-media {
  aspect-ratio: 3 / 4;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.movie-card:hover .card-media img {
  transform: scale(1.08);
}

.card-duration,
.card-play {
  position: absolute;
  color: white;
  background: rgba(15, 23, 42, 0.70);
  backdrop-filter: blur(6px);
}

.card-duration {
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
}

.card-play {
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
}

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

.card-body {
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  min-height: 46px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--slate-800);
  font-weight: 800;
  line-height: 1.45;
  transition: color 160ms ease;
}

.card-title:hover {
  color: var(--orange-600);
}

.card-body p {
  display: -webkit-box;
  min-height: 43px;
  margin: 8px 0 14px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.55;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--slate-500);
  font-size: 13px;
}

.card-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff7ed;
  color: var(--orange-700);
}

.compact-card .card-body {
  padding: 14px;
}

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

.category-card {
  min-height: 160px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  color: white;
  background: linear-gradient(135deg, var(--orange-600), var(--amber-500));
  box-shadow: var(--shadow-md);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.category-card:nth-child(2n) {
  background: linear-gradient(135deg, var(--slate-800), var(--orange-600));
}

.category-card:nth-child(3n) {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

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

.category-card strong {
  font-size: 24px;
}

.category-card span {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.category-card em {
  font-style: normal;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 30px;
  align-items: start;
}

.ranking-panel,
.related-panel,
.detail-card,
.text-page article,
.search-panel,
.category-overview-card {
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-md);
}

.ranking-panel {
  padding: 22px;
  position: sticky;
  top: 88px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.panel-head h2 {
  margin: 0;
  font-size: 22px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 28px 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  transition: background 180ms ease;
}

.rank-item:hover {
  background: #fff7ed;
}

.rank-no {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--orange-500);
  font-size: 13px;
  font-weight: 900;
}

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

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

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

.rank-info strong {
  color: var(--slate-800);
  font-size: 14px;
}

.rank-info em {
  margin-top: 4px;
  color: var(--slate-500);
  font-size: 12px;
  font-style: normal;
}

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

.page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 24px 46px;
}

.slim-hero {
  color: white;
  background: linear-gradient(120deg, rgba(124, 45, 18, 0.95), rgba(217, 119, 6, 0.92), rgba(202, 138, 4, 0.86));
  border-radius: 0 0 34px 34px;
  box-shadow: var(--shadow-md);
}

.slim-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.slim-hero p {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.75;
}

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

.category-overview-card {
  overflow: hidden;
}

.category-cover-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 126px;
  background: #fed7aa;
}

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

.category-overview-card > div {
  padding: 22px;
}

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

.category-overview-card p {
  margin: 0 0 14px;
  color: var(--slate-500);
  line-height: 1.65;
}

.category-overview-card span {
  color: var(--orange-600);
  font-weight: 800;
}

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

.filter-bar input,
.filter-bar select,
.search-panel input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  outline: 0;
  padding: 0 16px;
  color: var(--slate-800);
  background: #fffaf5;
}

.filter-bar input:focus,
.filter-bar select:focus,
.search-panel input:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

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

.ranking-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  padding: 16px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-md);
}

.ranking-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
}

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

.ranking-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: white;
  background: var(--orange-500);
  font-weight: 900;
}

.ranking-body h2 {
  margin: 4px 0 10px;
  font-size: 22px;
}

.ranking-body p {
  color: var(--slate-500);
  line-height: 1.7;
}

.search-panel {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 12px;
  margin-bottom: 18px;
}

.search-panel button {
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
  font-weight: 900;
  cursor: pointer;
}

.search-status {
  margin: 10px 0 24px;
  color: var(--slate-600);
  font-weight: 800;
}

.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--slate-500);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--orange-600);
  font-weight: 700;
}

.detail-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 30px;
  align-items: start;
}

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: white;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.10), rgba(15, 23, 42, 0.52));
  cursor: pointer;
  transition: opacity 180ms ease;
}

.player-overlay span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.92);
  box-shadow: 0 14px 35px rgba(249, 115, 22, 0.32);
  font-size: 34px;
  text-indent: 4px;
  transition: transform 160ms ease, background 160ms ease;
}

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

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

.detail-card {
  margin-top: 24px;
  padding: 28px;
}

.detail-card h1 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
}

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

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--orange-700);
  background: #ffedd5;
  font-size: 14px;
  font-weight: 700;
}

.intro-box,
.review-block {
  margin: 22px 0;
  padding: 20px;
  border-left: 5px solid var(--orange-500);
  border-radius: 16px;
  background: linear-gradient(90deg, #fff7ed, #fffbeb);
}

.story-block {
  margin: 22px 0;
}

.detail-card h2,
.related-panel h2,
.text-page h2 {
  margin: 0 0 12px;
  color: var(--slate-800);
  font-size: 22px;
}

.detail-card p,
.text-page p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.88;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-row span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--slate-700);
  background: var(--slate-100);
  font-size: 14px;
}

.related-panel {
  padding: 22px;
  position: sticky;
  top: 88px;
}

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

.related-list .movie-card {
  box-shadow: none;
  border: 1px solid #f1f5f9;
}

.related-list .card-media {
  aspect-ratio: 16 / 9;
}

.text-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 52px 24px;
  display: grid;
  gap: 24px;
}

.text-page article {
  padding: 30px;
}

.site-footer {
  margin-top: 50px;
  color: white;
  background: linear-gradient(180deg, var(--slate-800), var(--slate-900));
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fb923c;
  font-size: 20px;
}

.site-footer p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.75;
}

.site-footer a {
  display: block;
  margin-top: 10px;
  color: #e2e8f0;
  transition: color 160ms ease;
}

.site-footer a:hover,
.footer-link {
  color: #fb923c;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 30px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.20);
  color: #94a3b8;
}

.footer-bottom p {
  color: #94a3b8;
}

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

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

  .hero-content {
    grid-template-columns: 1fr 250px;
  }

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

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

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

  .ranking-panel,
  .related-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    height: 60px;
    padding: 0 16px;
  }

  .brand {
    font-size: 18px;
  }

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

  .hero-content {
    padding: 46px 18px 76px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .content-section,
  .page-hero,
  .detail-layout,
  .breadcrumb,
  .text-page {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .filter-bar,
  .search-panel,
  .ranking-card {
    grid-template-columns: 1fr;
  }

  .card-body {
    padding: 13px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .movie-grid,
  .featured-grid,
  .hot-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }
}
