:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-strong: #0f172a;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --orange: #f97316;
  --blue: #3b82f6;
  --green: #22c55e;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(245, 158, 11, 0.18), transparent 32rem),
    radial-gradient(circle at 85% 12%, rgba(59, 130, 246, 0.16), transparent 28rem),
    var(--bg);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.74));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  width: min(1240px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-text,
.footer-brand {
  background: linear-gradient(90deg, var(--amber-light), var(--orange), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sun,
.brand-moon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.brand-sun {
  background: radial-gradient(circle, var(--amber-light), var(--orange));
  box-shadow: 0 0 22px rgba(245, 158, 11, 0.7);
}

.brand-moon {
  border: 3px solid var(--blue);
  border-left-color: transparent;
  transform: rotate(-25deg);
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.site-menu a {
  color: var(--soft);
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-menu a:hover {
  color: var(--amber-light);
}

.quick-search,
.wide-search {
  position: relative;
}

.quick-search input,
.wide-search input,
.toolbar-section input,
.toolbar-section select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(2, 6, 23, 0.58);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-search input {
  width: 190px;
  padding: 10px 15px;
}

.quick-search input:focus,
.wide-search input:focus,
.toolbar-section input:focus,
.toolbar-section select:focus {
  border-color: rgba(245, 158, 11, 0.75);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(460px, 88vw);
  max-height: 420px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
  display: none;
  padding: 8px;
  z-index: 60;
}

.search-panel.is-open {
  display: grid;
  gap: 6px;
}

.search-result {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 12px;
  color: var(--soft);
  transition: background 0.2s ease, color 0.2s ease;
}

.search-result:hover {
  background: rgba(245, 158, 11, 0.12);
  color: var(--text);
}

.search-result img {
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
}

.search-result strong {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.search-result small,
.search-result em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.7);
  color: var(--text);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--soft);
  border-radius: 4px;
}

main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 720px;
  overflow: hidden;
  background: #000;
}

.hero-slides,
.hero-slide {
  min-height: 720px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: center;
  gap: 48px;
  padding: 120px max(32px, calc((100vw - 1240px) / 2)) 96px;
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
  transition: opacity 0.8s ease, transform 1.1s ease;
}

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

.hero-bg,
.detail-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
  transform: scale(1.08);
}

.hero-overlay,
.detail-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.97), rgba(2, 6, 23, 0.74) 44%, rgba(2, 6, 23, 0.38)),
    linear-gradient(0deg, var(--bg), transparent 48%),
    rgba(0, 0, 0, 0.28);
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 2;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 720px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.75;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(245, 158, 11, 0.26);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.12);
  font-size: 12px;
}

.hero-tags {
  margin-top: 24px;
}

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

.btn-primary,
.btn-secondary,
.btn-ghost,
.wide-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary,
.wide-search button {
  color: #111827;
  background: linear-gradient(90deg, var(--amber-light), var(--orange));
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.25);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  color: var(--soft);
  border-color: var(--line);
  background: rgba(2, 6, 23, 0.32);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.wide-search button:hover {
  transform: translateY(-2px);
}

.hero-poster {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

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

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 4;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(12px);
}

.hero-controls button {
  border: 0;
  color: var(--text);
  background: transparent;
}

.hero-controls > button {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 24px;
  line-height: 1;
}

.hero-dots {
  display: inline-flex;
  gap: 8px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-dots button.is-active {
  width: 28px;
  background: var(--amber-light);
}

.search-band {
  position: relative;
  z-index: 5;
  margin: -48px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 560px);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.search-band h2,
.section-head h2,
.rank-head h2,
.page-hero h1,
.story-card h2 {
  margin: 0;
  letter-spacing: -0.03em;
}

.search-band h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.search-band p,
.page-hero p,
.category-tile p,
.story-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.8;
}

.wide-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.wide-search input {
  padding: 0 18px;
  min-height: 48px;
}

.content-section {
  margin: 0 0 78px;
}

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

.section-head h2 {
  margin-top: 6px;
  font-size: clamp(28px, 3vw, 42px);
}

.section-head > a {
  color: var(--amber-light);
  font-weight: 700;
}

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

.category-tile {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.58));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.45);
}

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

.category-covers img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.category-tile h2,
.category-tile h3 {
  margin: 0 0 8px;
}

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

.category-tile.large .category-covers {
  grid-template-columns: repeat(6, 1fr);
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.38);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111827;
}

.poster-link img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.rating-badge,
.play-mark {
  position: absolute;
  border-radius: 999px;
  font-weight: 800;
}

.rating-badge {
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  color: #111827;
  background: var(--amber-light);
  font-size: 12px;
}

.play-mark {
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.movie-meta-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--amber-light);
}

.movie-card p {
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-panel {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.84);
  padding: 18px;
  box-shadow: var(--shadow);
}

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

.rank-head span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #111827;
  background: var(--amber-light);
  font-weight: 900;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.04);
}

.rank-item:hover {
  background: rgba(245, 158, 11, 0.12);
}

.rank-item strong {
  color: var(--amber-light);
}

.rank-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-item em {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

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

.compact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
}

.compact-card img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.compact-card span {
  display: block;
  padding: 10px;
  font-size: 13px;
  color: var(--soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-main {
  padding-top: 108px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 34px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 0, rgba(245, 158, 11, 0.24), transparent 28rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.58));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin-top: 12px;
  font-size: clamp(38px, 6vw, 66px);
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 17px;
}

.toolbar-section {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.toolbar-section input {
  flex: 1;
  padding: 13px 18px;
}

.toolbar-section select {
  width: 180px;
  padding: 13px 18px;
}

.detail-main {
  width: 100%;
  margin: 0;
}

.detail-hero {
  position: relative;
  min-height: 760px;
  padding: 118px 0 70px;
  overflow: hidden;
  background: #000;
}

.detail-layout {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
  gap: 34px;
  align-items: center;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.movie-video,
.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie-video {
  z-index: 1;
  background: #000;
}

.player-cover {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: #000;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(1.08);
}

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

.play-circle {
  position: absolute;
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, var(--amber-light), var(--orange));
  box-shadow: 0 18px 48px rgba(249, 115, 22, 0.36);
  font-size: 34px;
  padding-left: 5px;
}

.detail-info {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(16px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.breadcrumb a:hover {
  color: var(--amber-light);
}

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-one-line {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.75;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.detail-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--soft);
  font-size: 13px;
}

.detail-content {
  width: min(1240px, calc(100% - 32px));
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.story-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
}

.story-card h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.story-card p {
  margin: 0;
  color: var(--soft);
}

.related-section {
  width: min(1240px, calc(100% - 32px));
  margin: 64px auto 84px;
}

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

.related-grid .movie-card p,
.related-grid .tag-list {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.86);
}

.footer-grid {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 12px;
}

.site-footer h3 {
  margin: 0 0 14px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

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

@media (max-width: 1100px) {
  .site-menu {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-toggle {
    display: block;
  }

  .quick-search {
    margin-left: auto;
  }

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

  .hero-poster {
    display: none;
  }

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

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

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

  .rank-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    width: min(100% - 24px, 1240px);
    gap: 10px;
  }

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

  .quick-search input {
    width: 138px;
  }

  main,
  .page-main {
    width: min(100% - 22px, 1240px);
  }

  .hero,
  .hero-slides,
  .hero-slide {
    min-height: 620px;
  }

  .hero-slide {
    padding: 108px 22px 86px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .search-band {
    grid-template-columns: 1fr;
    margin-top: -34px;
    padding: 20px;
  }

  .wide-search {
    grid-template-columns: 1fr;
  }

  .section-head,
  .toolbar-section {
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar-section select {
    width: 100%;
  }

  .movie-grid,
  .home-grid,
  .category-grid,
  .all-categories,
  .compact-row,
  .related-grid,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-layout,
  .detail-content,
  .related-section,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 22px, 1240px);
  }

  .detail-hero {
    min-height: auto;
    padding-top: 98px;
  }

  .detail-info,
  .story-card,
  .page-hero {
    padding: 22px;
  }

  .play-circle {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .quick-search {
    display: none;
  }

  .site-menu.is-open,
  .movie-grid,
  .home-grid,
  .category-grid,
  .all-categories,
  .compact-row,
  .related-grid,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions a {
    width: 100%;
  }
}
