:root {
  --amber: #f59e0b;
  --rose: #e11d48;
  --sky: #0284c7;
  --ink: #111827;
  --muted: #6b7280;
  --paper: #fffaf0;
  --soft: rgba(255, 255, 255, 0.78);
  --line: rgba(17, 24, 39, 0.08);
  --shadow: 0 24px 70px rgba(88, 28, 135, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: 64px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, #fffbeb 0%, #fff1f2 48%, #f0f9ff 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.92), rgba(255, 241, 242, 0.92), rgba(240, 249, 255, 0.92));
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(1220px, calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark,
.footer-brand span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--rose), var(--sky));
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.25);
}

.brand-text {
  font-size: 24px;
  line-height: 1;
  background: linear-gradient(90deg, #d97706, #e11d48, #0284c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  border-radius: 999px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #be123c;
  background: rgba(255, 255, 255, 0.72);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

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

.mobile-nav {
  display: none;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

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

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 0.7s ease, transform 1.2s ease;
}

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

.hero-bg,
.page-hero > img,
.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(251, 191, 36, 0.36), transparent 30%),
    linear-gradient(90deg, rgba(120, 53, 15, 0.95), rgba(136, 19, 55, 0.84), rgba(12, 74, 110, 0.75));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 56px;
  color: #fff;
}

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

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #fde68a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-hero h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.08em;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.hero-copy p,
.page-hero p,
.detail-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2.2vw, 24px);
  line-height: 1.75;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.ghost-button,
.global-search button,
.filter-toolbar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #fff;
  background: linear-gradient(90deg, var(--amber), var(--rose));
  box-shadow: 0 18px 46px rgba(225, 29, 72, 0.32);
}

.ghost-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.primary-button:hover,
.ghost-button:hover,
.global-search button:hover,
.filter-toolbar button:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: rgba(225, 29, 72, 0.88);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.hero-control-panel {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
}

.hero-dots {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero-dot,
.hero-arrow {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
}

.hero-dot.is-active {
  width: 34px;
  background: #fff;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
}

.search-band {
  width: min(1120px, calc(100% - 32px));
  margin: -38px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

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

.global-search input,
.filter-toolbar input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  outline: 0;
  background: #fff;
}

.global-search input:focus,
.filter-toolbar input:focus {
  border-color: rgba(225, 29, 72, 0.38);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.08);
}

.global-search button,
.filter-toolbar button {
  color: #fff;
  background: linear-gradient(90deg, var(--amber), var(--rose));
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-tags a,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  color: #9f1239;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 228, 230, 0.82);
}

.content-section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 0;
}

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

.section-kicker {
  color: #be123c;
  margin-bottom: 10px;
}

.section-heading h2,
.spotlight-panel h2,
.story-card h2,
.info-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, #b45309, #e11d48, #0284c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-more {
  flex: none;
  border-radius: 999px;
  padding: 10px 16px;
  color: #be123c;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 72px rgba(225, 29, 72, 0.16);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #ffe4e6, #e0f2fe);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.68));
  opacity: 0.85;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(225, 29, 72, 0.9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #be123c;
  font-size: 12px;
  font-weight: 900;
}

.movie-card h2 {
  margin: 10px 0 8px;
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.movie-card h2 a:hover {
  color: #be123c;
}

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

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

.compact-card h2 {
  font-size: 16px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.soft-panel {
  width: min(1260px, calc(100% - 24px));
  margin-top: 72px;
  padding: 48px 20px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

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

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

.category-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  border-radius: 30px;
  padding: 22px;
  color: #fff;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.07);
}

.category-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(120, 53, 15, 0.9));
}

.category-card strong,
.category-card em {
  position: relative;
  z-index: 2;
}

.category-card strong {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.category-card em {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.two-column-section {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 32px;
  align-items: start;
}

.rank-list,
.side-card-list,
.rank-page-grid,
.mini-related {
  display: grid;
  gap: 12px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 48px 62px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  box-shadow: 0 22px 46px rgba(225, 29, 72, 0.12);
}

.rank-number {
  color: #e11d48;
  font-size: 24px;
  font-weight: 950;
}

.rank-item img {
  width: 62px;
  height: 76px;
  border-radius: 16px;
  object-fit: cover;
}

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

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

.rank-copy strong {
  font-size: 16px;
}

.rank-copy em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.spotlight-panel,
.info-card,
.story-card,
.player-card {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.spotlight-panel {
  min-height: 420px;
  padding: 34px;
  background:
    radial-gradient(circle at 85% 16%, rgba(251, 191, 36, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 228, 230, 0.68));
}

.spotlight-panel p,
.story-card p,
.info-card dd {
  color: #4b5563;
  line-height: 1.8;
}

.spotlight-panel .primary-button {
  margin-top: 26px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: grid;
  align-items: center;
  color: #fff;
  background: #111827;
}

.page-hero > div,
.detail-hero-content {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero::before,
.page-hero-shade,
.detail-shade {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(245, 158, 11, 0.34), transparent 35%),
    linear-gradient(90deg, rgba(120, 53, 15, 0.95), rgba(136, 19, 55, 0.84), rgba(12, 74, 110, 0.76));
}

.small-hero,
.rank-hero,
.search-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(251, 191, 36, 0.34), transparent 28%),
    linear-gradient(120deg, #78350f, #881337, #0c4a6e);
}

.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.filter-toolbar input {
  max-width: 320px;
}

.category-hero {
  min-height: 430px;
}

.detail-hero {
  min-height: 520px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

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

.detail-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

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

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card {
  position: relative;
  overflow: hidden;
  background: #000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.52));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-ring {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 999px;
  padding-left: 5px;
  color: #fff;
  font-size: 36px;
  background: linear-gradient(135deg, var(--amber), var(--rose));
  box-shadow: 0 24px 60px rgba(225, 29, 72, 0.36);
}

.player-overlay strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.story-card,
.info-card {
  padding: 28px;
}

.story-card h2,
.info-card h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

.story-card p + h2 {
  margin-top: 28px;
}

.info-card + .info-card {
  margin-top: 20px;
}

.info-card dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.info-card dl div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.info-card dt {
  color: #be123c;
  font-weight: 900;
}

.info-card dd {
  margin: 0;
}

.mini-related .rank-item {
  grid-template-columns: 34px 54px minmax(0, 1fr);
  min-height: 76px;
  padding: 10px;
}

.mini-related .rank-number {
  font-size: 18px;
}

.mini-related .rank-item img {
  width: 54px;
  height: 64px;
}

.site-footer {
  margin-top: 80px;
  color: #d1d5db;
  background: #111827;
}

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

.footer-brand {
  color: #fff;
  font-size: 22px;
}

.site-footer p {
  margin: 16px 0 0;
  color: #9ca3af;
  line-height: 1.75;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
}

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

.footer-links a:hover {
  color: #fbbf24;
}

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

[data-movie-card].is-hidden {
  display: none;
}

@media (max-width: 1120px) {
  .movie-grid,
  .compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-content,
  .two-column-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

@media (max-width: 760px) {
  body {
    padding-top: 60px;
  }

  .header-shell {
    height: 60px;
  }

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.is-open {
    display: block;
  }

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

  .hero-copy h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: 44px;
  }

  .hero-copy p,
  .page-hero p,
  .detail-hero p {
    font-size: 17px;
  }

  .search-band,
  .global-search,
  .footer-grid,
  .rank-page-grid {
    grid-template-columns: 1fr;
  }

  .quick-tags {
    justify-content: flex-start;
  }

  .section-heading {
    display: block;
  }

  .section-more {
    display: inline-flex;
    margin-top: 16px;
  }

  .movie-grid,
  .compact-grid,
  .category-grid,
  .large-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .content-section {
    padding-top: 48px;
  }

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

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

  .movie-card p {
    display: none;
  }

  .category-card {
    min-height: 170px;
    border-radius: 24px;
    padding: 18px;
  }

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

  .rank-item {
    grid-template-columns: 40px 56px minmax(0, 1fr);
  }

  .rank-item img {
    width: 56px;
    height: 68px;
  }

  .story-card,
  .info-card {
    padding: 22px;
    border-radius: 26px;
  }
}

@media (max-width: 460px) {
  .movie-grid,
  .compact-grid,
  .category-grid,
  .large-category-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .filter-toolbar {
    display: grid;
  }

  .filter-toolbar input,
  .filter-toolbar button,
  .primary-button,
  .ghost-button {
    width: 100%;
  }
}
