:root {
  --night-950: #0d0d10;
  --night-900: #1a1a1f;
  --night-850: #22222a;
  --night-800: #2c2c34;
  --night-700: #4a4a52;
  --night-500: #6e6e78;
  --night-400: #888893;
  --night-300: #b0b0b8;
  --night-200: #d1d1d6;
  --night-100: #e7e7ea;
  --gold-400: #facc15;
  --gold-500: #eab308;
  --ember-400: #f87171;
  --ember-500: #ef4444;
  --glow: 0 0 30px rgba(234, 179, 8, 0.35);
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--night-100);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(234, 179, 8, 0.12), transparent 32rem),
    linear-gradient(135deg, var(--night-900), var(--night-800));
}

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;
  background: rgba(26, 26, 31, 0.95);
  border-bottom: 1px solid rgba(113, 63, 18, 0.25);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: var(--container);
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--night-950);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-500), var(--ember-500));
  box-shadow: var(--glow);
}

.brand.compact .brand-icon {
  width: 34px;
  height: 34px;
}

.brand-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--gold-400), var(--ember-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link,
.mobile-link {
  color: var(--night-100);
  border-radius: 10px;
  transition: 0.2s ease;
}

.nav-link {
  padding: 10px 12px;
  font-size: 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--gold-400);
  background: rgba(44, 44, 52, 0.68);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 260px;
}

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  color: var(--night-100);
  background: var(--night-800);
  border: 1px solid var(--night-700);
  border-radius: 12px;
  outline: none;
  transition: 0.2s ease;
}

.header-search input,
.mobile-search input {
  padding: 10px 12px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.15);
}

.header-search button,
.mobile-search button,
.primary-button,
.filter-button {
  border: 0;
  border-radius: 12px;
  color: var(--night-950);
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold-500), var(--ember-500));
  cursor: pointer;
  transition: 0.22s ease;
}

.header-search button,
.mobile-search button {
  padding: 10px 14px;
}

.header-search button:hover,
.mobile-search button:hover,
.primary-button:hover,
.filter-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--night-100);
  background: var(--night-800);
  cursor: pointer;
}

.mobile-panel {
  width: var(--container);
  margin: 0 auto;
  padding: 12px 0 16px;
  border-top: 1px solid rgba(74, 74, 82, 0.55);
}

.mobile-link {
  display: block;
  padding: 12px 14px;
}

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

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--night-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.8s ease, transform 3.6s ease;
  transform: scale(1.04);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 16, 0.96) 0%, rgba(26, 26, 31, 0.72) 46%, rgba(26, 26, 31, 0.3) 100%),
    linear-gradient(0deg, rgba(26, 26, 31, 1) 0%, rgba(26, 26, 31, 0.38) 40%, rgba(26, 26, 31, 0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: var(--container);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  padding: 6px 14px;
  color: var(--gold-400);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(234, 179, 8, 0.35);
  background: rgba(234, 179, 8, 0.14);
  border-radius: 999px;
}

.hero-content h1,
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-content h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.04;
}

.hero-content p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--night-200);
  font-size: 18px;
  line-height: 1.8;
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-meta span,
.detail-meta span,
.detail-tags span,
.tag-line span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.hero-meta span,
.detail-meta span {
  padding: 7px 12px;
  color: var(--night-200);
  background: rgba(44, 44, 52, 0.78);
  border: 1px solid rgba(74, 74, 82, 0.7);
}

.hero-meta span:first-child,
.detail-meta span:first-child {
  color: var(--gold-400);
  border-color: rgba(234, 179, 8, 0.4);
  background: rgba(234, 179, 8, 0.14);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 14px 26px;
}

.primary-button span {
  font-size: 22px;
  line-height: 1;
}

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

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

.hero-dot.is-active {
  background: linear-gradient(90deg, var(--gold-500), var(--ember-500));
  box-shadow: var(--glow);
}

.content-section {
  width: var(--container);
  margin: 0 auto;
  padding: 64px 0;
}

.section-heading,
.panel-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.section-heading h2,
.panel-title h2,
.side-card h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
}

.section-heading p {
  margin: 7px 0 0;
  color: var(--night-400);
}

.heading-line {
  height: 4px;
  flex: 1;
  min-width: 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234, 179, 8, 0.55), transparent);
}

.section-heading a,
.panel-title a {
  color: var(--gold-400);
  font-weight: 700;
}

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

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

.movie-card {
  min-width: 0;
  color: var(--night-100);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: var(--night-800);
  border: 1px solid rgba(74, 74, 82, 0.45);
}

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

.movie-card:hover .poster-wrap img,
.related-item:hover img,
.feature-card:hover img,
.category-tile:hover img,
.category-card:hover img {
  transform: scale(1.08);
}

.quality-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(26, 26, 31, 0.86);
  border: 1px solid rgba(250, 204, 21, 0.32);
  border-radius: 8px;
  backdrop-filter: blur(6px);
}

.card-overlay {
  position: absolute;
  inset: auto 0 0;
  min-height: 46%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  background: linear-gradient(0deg, rgba(13, 13, 16, 0.95), rgba(13, 13, 16, 0));
  opacity: 0;
  transform: translateY(18px);
  transition: 0.28s ease;
}

.movie-card:hover .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.play-dot {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--night-950);
  background: linear-gradient(135deg, var(--gold-500), var(--ember-500));
  border-radius: 50%;
  box-shadow: var(--glow);
}

.movie-title {
  display: -webkit-box;
  min-height: 44px;
  margin-top: 12px;
  color: var(--night-100);
  font-weight: 700;
  line-height: 1.45;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-title {
  color: var(--gold-400);
}

.movie-meta {
  display: block;
  margin-top: 4px;
  color: var(--night-400);
  font-size: 13px;
}

.tag-line {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.tag-line span {
  padding: 3px 7px;
  color: var(--night-300);
  font-size: 11px;
  background: rgba(44, 44, 52, 0.75);
}

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

.feature-card {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  border: 1px solid rgba(74, 74, 82, 0.65);
  border-radius: 18px;
  background: var(--night-800);
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
  transition: transform 0.48s ease;
}

.feature-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 13, 16, 0.96), rgba(13, 13, 16, 0.08));
}

.feature-info {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px;
}

.feature-info strong {
  color: #fff;
  font-size: 20px;
}

.feature-info em,
.feature-info small {
  color: var(--night-300);
  font-style: normal;
  line-height: 1.55;
}

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

.category-tile,
.category-card {
  overflow: hidden;
  border: 1px solid rgba(74, 74, 82, 0.7);
  border-radius: 18px;
  background: rgba(44, 44, 52, 0.54);
  transition: 0.24s ease;
}

.category-tile {
  padding: 18px;
}

.category-tile:hover,
.category-card:hover,
.ranking-card:hover,
.rank-row:hover,
.related-item:hover {
  border-color: rgba(234, 179, 8, 0.45);
  background: rgba(44, 44, 52, 0.85);
  transform: translateY(-2px);
}

.tile-covers,
.category-cover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.tile-covers img,
.category-cover-grid img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 9px;
  background: var(--night-900);
  transition: transform 0.32s ease;
}

.category-tile strong,
.category-info strong {
  display: block;
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.category-tile em,
.category-info em {
  display: block;
  color: var(--night-300);
  font-style: normal;
  line-height: 1.6;
}

.category-tile span:last-child,
.category-info b {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold-400);
  font-size: 14px;
}

.category-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 18px;
  padding: 18px;
}

.category-info ul {
  margin: 12px 0 0;
  padding: 0;
  color: var(--night-400);
  font-size: 13px;
  list-style: none;
  line-height: 1.7;
}

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

.ranking-panel,
.side-card,
.info-block,
.player-card {
  border: 1px solid rgba(74, 74, 82, 0.65);
  border-radius: 18px;
  background: rgba(44, 44, 52, 0.55);
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 36px 52px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: 0.22s ease;
}

.rank-row span:first-child,
.ranking-number {
  color: var(--gold-400);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.rank-row img {
  width: 52px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
}

.rank-row strong {
  display: block;
  color: var(--night-100);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-row em {
  display: block;
  margin-top: 4px;
  color: var(--night-400);
  font-size: 12px;
  font-style: normal;
}

.page-hero {
  border-bottom: 1px solid rgba(113, 63, 18, 0.25);
  background:
    radial-gradient(circle at 20% 10%, rgba(234, 179, 8, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(13, 13, 16, 0.94), rgba(44, 44, 52, 0.86));
}

.page-hero.slim {
  padding: 72px 0;
}

.page-hero > div {
  width: var(--container);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(36px, 5vw, 56px);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--night-300);
  font-size: 18px;
  line-height: 1.7;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 190px));
  gap: 14px;
  margin-bottom: 30px;
  padding: 16px;
  border: 1px solid rgba(74, 74, 82, 0.65);
  border-radius: 18px;
  background: rgba(26, 26, 31, 0.62);
}

.filter-bar input,
.filter-bar select {
  padding: 12px 14px;
}

.empty-state {
  padding: 50px;
  color: var(--night-300);
  text-align: center;
  border: 1px solid rgba(74, 74, 82, 0.65);
  border-radius: 18px;
  background: rgba(44, 44, 52, 0.55);
}

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

.ranking-card {
  display: grid;
  grid-template-columns: 60px 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(74, 74, 82, 0.65);
  border-radius: 18px;
  background: rgba(44, 44, 52, 0.52);
  transition: 0.22s ease;
}

.ranking-card img {
  width: 96px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.ranking-body strong {
  display: block;
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.ranking-body em,
.ranking-body small {
  display: block;
  color: var(--night-300);
  font-style: normal;
  line-height: 1.6;
}

.detail-wrap {
  width: var(--container);
  margin: 0 auto;
  padding: 38px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--night-400);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--gold-400);
}

.player-card {
  padding: 10px;
  background: rgba(13, 13, 16, 0.72);
}

.player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--night-950);
  background: rgba(13, 13, 16, 0.48);
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 50%;
  font-size: 38px;
  background: linear-gradient(135deg, var(--gold-500), var(--ember-500));
  box-shadow: var(--glow);
  transition: transform 0.2s ease;
}

.player-overlay:hover span {
  transform: scale(1.08);
}

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

.movie-detail {
  padding-top: 28px;
}

.movie-detail h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.detail-tags span {
  padding: 7px 11px;
  color: var(--night-300);
  background: var(--night-800);
}

.info-block {
  margin-top: 18px;
  padding: 24px;
}

.info-block h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 21px;
}

.info-block p {
  margin: 0;
  color: var(--night-300);
  line-height: 1.9;
  white-space: pre-line;
}

.detail-side {
  position: sticky;
  top: 88px;
}

.side-card {
  padding: 22px;
}

.related-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.related-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: 0.22s ease;
}

.related-item img {
  width: 78px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.32s ease;
}

.related-item strong {
  display: -webkit-box;
  color: var(--night-100);
  line-height: 1.45;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.related-item em,
.related-item small {
  display: block;
  margin-top: 6px;
  color: var(--night-400);
  font-size: 12px;
  font-style: normal;
}

.related-item small {
  color: var(--gold-400);
  font-weight: 700;
}

.site-footer {
  margin-top: 40px;
  background: var(--night-950);
  border-top: 1px solid var(--night-800);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
}

.footer-brand p,
.footer-group p,
.footer-group a,
.footer-bottom {
  color: var(--night-400);
  line-height: 1.7;
}

.footer-group h3 {
  margin: 0 0 14px;
  color: var(--night-100);
}

.footer-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-group li + li {
  margin-top: 9px;
}

.footer-group a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 20px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--night-800);
  font-size: 14px;
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

  .ranking-panel,
  .detail-side {
    position: static;
  }

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

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

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

  .hero-carousel {
    height: 540px;
  }

  .hero-layer {
    background:
      linear-gradient(0deg, rgba(13, 13, 16, 0.98) 0%, rgba(13, 13, 16, 0.72) 52%, rgba(13, 13, 16, 0.5) 100%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 84px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

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

  .content-section {
    padding: 42px 0;
  }

  .section-heading,
  .panel-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .heading-line {
    width: 100%;
    flex: none;
  }

  .movie-grid,
  .movie-grid.compact,
  .movie-grid.library-preview,
  .feature-grid,
  .category-grid,
  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

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

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

  .ranking-card {
    grid-template-columns: 42px 78px 1fr;
    gap: 12px;
  }

  .ranking-card img {
    width: 78px;
  }

  .detail-wrap {
    padding-top: 22px;
  }

  .info-block {
    padding: 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-text {
    font-size: 17px;
  }

  .hero-meta,
  .detail-meta {
    gap: 7px;
  }

  .hero-meta span,
  .detail-meta span {
    padding: 6px 9px;
    font-size: 13px;
  }

  .movie-grid,
  .movie-grid.compact,
  .movie-grid.library-preview {
    gap: 14px;
  }

  .movie-title {
    font-size: 14px;
  }
}
