:root {
  --color-bg: #f8fafc;
  --color-bg-soft: #eef6ff;
  --color-card: #ffffff;
  --color-text: #111827;
  --color-muted: #64748b;
  --color-line: #e2e8f0;
  --color-sky: #0284c7;
  --color-sky-dark: #0369a1;
  --color-amber: #f59e0b;
  --color-slate: #0f172a;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 22px 60px rgba(15, 23, 42, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  background: linear-gradient(135deg, var(--color-bg), var(--color-bg-soft));
  font-family: 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,
video {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-sky);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-sky), #2563eb);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.35);
  font-size: 18px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link,
.category-menu-button {
  color: #334155;
  border: 0;
  background: transparent;
  font-weight: 650;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.category-menu-button:hover {
  color: var(--color-sky);
}

.category-menu {
  position: relative;
}

.category-menu-list {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  min-width: 180px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translate(-50%, -8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.category-menu:hover .category-menu-list,
.category-menu:focus-within .category-menu-list {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.category-menu-list a {
  padding: 9px 12px;
  color: #334155;
  border-radius: 10px;
  font-size: 14px;
}

.category-menu-list a:hover {
  color: var(--color-sky);
  background: #f0f9ff;
}

.header-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 260px;
  border: 1px solid var(--color-line);
  background: #f8fafc;
  border-radius: 999px;
}

.header-search input {
  width: 100%;
  padding: 9px 12px 9px 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0f172a;
  font-size: 14px;
}

.header-search button {
  padding: 9px 16px;
  color: #ffffff;
  border: 0;
  background: var(--color-sky);
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--color-line);
  background: #ffffff;
  border-radius: 14px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #0f172a;
  border-radius: 999px;
}

.hero-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(120deg, #0284c7, #2563eb 52%, #4338ca);
}

.hero-bg-layer,
.hero-backdrop,
.hero-backdrop img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-backdrop.is-active {
  opacity: 0.48;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-overlay {
  background:
    radial-gradient(circle at 75% 18%, rgba(56, 189, 248, 0.32), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.72) 48%, rgba(15, 23, 42, 0.38)),
    linear-gradient(0deg, rgba(248, 250, 252, 1), transparent 14%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 52px;
  align-items: center;
  min-height: 600px;
  padding: 72px 0 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #bfdbfe;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--color-sky);
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 700px;
  margin: 0 0 28px;
  color: #dbeafe;
  font-size: clamp(17px, 2vw, 22px);
}

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

.primary-button,
.ghost-button,
.wide-button,
.section-more,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  padding: 14px 24px;
  color: var(--color-sky-dark);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.18);
}

.ghost-button {
  padding: 13px 22px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.primary-button:hover,
.ghost-button:hover,
.wide-button:hover,
.section-more:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.ghost-button:hover {
  color: var(--color-sky-dark);
  background: #ffffff;
}

.hero-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
}

.hero-category-row a,
.hot-tags a,
.detail-tags a {
  display: inline-flex;
  padding: 8px 13px;
  color: #e0f2fe;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
}

.hero-category-row a:hover,
.hot-tags a:hover,
.detail-tags a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

.hero-focus {
  position: relative;
}

.hero-focus-card {
  display: none;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.hero-focus-card.is-active {
  display: block;
  animation: fadeUp 0.45s ease both;
}

.hero-focus-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.hero-focus-card div {
  padding: 24px;
}

.hero-focus-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
}

.hero-focus-card p {
  min-height: 54px;
  margin: 0 0 18px;
  color: #dbeafe;
}

.text-link {
  color: #ffffff;
  font-size: 15px;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.hero-dot {
  width: 32px;
  height: 6px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

.hero-dot.is-active {
  background: #ffffff;
}

.section {
  padding: 64px 0 0;
}

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

.section-heading.plain {
  align-items: start;
}

.section-heading h2,
.page-hero h1,
.content-card h2 {
  margin: 0;
  color: #1e293b;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(26px, 4vw, 36px);
}

.section-more,
.wide-button {
  padding: 10px 16px;
  color: var(--color-sky);
  background: #ffffff;
  border: 1px solid #bae6fd;
  box-shadow: var(--shadow-soft);
}

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

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

.movie-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.16);
}

.poster-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), transparent);
}

.rank-badge,
.year-pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  padding: 0 9px;
  color: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.rank-badge {
  top: 12px;
  left: 12px;
  background: var(--color-amber);
}

.year-pill {
  right: 12px;
  bottom: 12px;
  background: rgba(15, 23, 42, 0.72);
}

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 6px;
  overflow: hidden;
  color: #0f172a;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.meta-line {
  margin: 0 0 8px;
  color: var(--color-muted);
  font-size: 13px;
}

.movie-desc {
  display: -webkit-box;
  min-height: 42px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.tag-row span {
  padding: 4px 8px;
  color: var(--color-sky);
  background: #f0f9ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.category-panel,
.rank-panel,
.content-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.category-panel,
.rank-panel {
  padding: 24px;
}

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

.category-card {
  display: block;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: #7dd3fc;
  box-shadow: var(--shadow-soft);
}

.category-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-sky), #2563eb);
  border-radius: 15px;
  font-weight: 900;
}

.category-card h2,
.category-card h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 850;
}

.category-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.category-card.large {
  padding: 26px;
}

.category-arrow {
  display: inline-flex;
  margin-top: 18px;
  color: var(--color-sky);
  font-weight: 800;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 36px 58px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px;
  background: #ffffff;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: #f0f9ff;
  transform: translateX(4px);
}

.rank-number {
  color: var(--color-amber);
  font-weight: 900;
  text-align: center;
}

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

.rank-title {
  display: block;
  overflow: hidden;
  color: #0f172a;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-meta {
  display: block;
  grid-column: 3;
  margin-top: -10px;
  overflow: hidden;
  color: #64748b;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wide-button {
  width: 100%;
  margin-top: 18px;
}

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

.page-hero {
  padding: 70px 0 58px;
  color: #ffffff;
  background: linear-gradient(120deg, #0284c7, #2563eb 55%, #4338ca);
}

.page-hero h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 54px);
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #dbeafe;
  font-size: 18px;
}

.blue-hero,
.category-hero {
  background:
    radial-gradient(circle at right top, rgba(125, 211, 252, 0.34), transparent 32%),
    linear-gradient(120deg, #0284c7, #2563eb 58%, #4338ca);
}

.amber-hero {
  background:
    radial-gradient(circle at right top, rgba(251, 191, 36, 0.36), transparent 34%),
    linear-gradient(120deg, #0f172a, #1e3a8a 58%, #92400e);
}

.search-hero {
  background:
    radial-gradient(circle at right top, rgba(45, 212, 191, 0.34), transparent 34%),
    linear-gradient(120deg, #0f766e, #0284c7 58%, #1d4ed8);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.filter-box {
  max-width: 620px;
  margin-top: 24px;
}

.filter-box input,
.big-search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  outline: 0;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.filter-box input {
  padding: 14px 20px;
}

.big-search {
  display: flex;
  gap: 12px;
  max-width: 760px;
  margin-top: 24px;
}

.big-search input {
  padding: 16px 22px;
  font-size: 18px;
}

.big-search button {
  padding: 0 28px;
  color: #ffffff;
  border: 0;
  background: #0f172a;
  border-radius: 999px;
  font-weight: 850;
}

.hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-hero {
  padding: 28px 0 54px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.28), transparent 34%),
    linear-gradient(120deg, #020617, #0f172a 50%, #075985);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 30px;
  align-items: stretch;
}

.player-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.player-card video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.45), rgba(2, 6, 23, 0.2));
  transition: opacity 0.2s ease;
}

.play-overlay span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  padding-left: 6px;
  background: rgba(2, 132, 199, 0.92);
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(2, 132, 199, 0.42);
  font-size: 34px;
}

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

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  backdrop-filter: blur(18px);
}

.detail-info h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.detail-line,
.detail-genre {
  margin: 0 0 10px;
  color: #bae6fd;
  font-weight: 750;
}

.detail-one-line {
  margin: 12px 0 22px;
  color: #e0f2fe;
  font-size: 18px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 28px;
  align-items: start;
}

.content-card {
  padding: 28px;
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.content-card p {
  margin: 0 0 24px;
  color: #334155;
  font-size: 17px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.related-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.compact-card h3 {
  min-height: auto;
  font-size: 15px;
}

.compact-card .movie-desc {
  min-height: auto;
  margin-bottom: 0;
  font-size: 13px;
  -webkit-line-clamp: 2;
}

.compact-card .tag-row {
  display: none;
}

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

.site-footer {
  margin-top: 72px;
  color: #cbd5e1;
  background: linear-gradient(135deg, #0f172a, #1e293b 58%, #020617);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 48px 0;
}

.footer-brand {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 22px;
}

.site-footer p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #7dd3fc;
  font-size: 17px;
}

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

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

.back-top {
  margin-top: 18px;
  padding: 10px 16px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-weight: 800;
}

.is-filter-hidden,
.is-search-hidden {
  display: none !important;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 38px;
  color: #64748b;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .header-search {
    width: 210px;
  }

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

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

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    inset: 64px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-link,
  .category-menu-button {
    padding: 12px;
    text-align: left;
  }

  .category-menu-list {
    position: static;
    min-width: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
  }

  .header-search {
    width: 100%;
    margin-top: 10px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

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

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

  .brand {
    font-size: 20px;
  }

  .hero-section,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 52px 0 68px;
  }

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

  .hero-focus-card img {
    height: 230px;
  }

  .movie-grid,
  .feature-grid,
  .category-grid,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .movie-card {
    border-radius: 16px;
  }

  .big-search {
    flex-direction: column;
  }

  .big-search button {
    min-height: 52px;
  }

  .player-card,
  .player-card video {
    min-height: 230px;
  }

  .detail-info {
    padding: 22px;
  }

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

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