:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #071225;
  --panel: rgba(15, 23, 42, 0.76);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(56, 189, 248, 0.22);
  --line-strong: rgba(34, 211, 238, 0.48);
  --text: #f8fafc;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --blue: #2563eb;
  --purple: #7c3aed;
  --pink: #db2777;
  --orange: #f97316;
  --green: #22c55e;
  --shadow: 0 24px 80px rgba(8, 47, 73, 0.32);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.2), transparent 34rem),
    linear-gradient(180deg, #020617 0%, #0b1b40 48%, #020617 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 70%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(30, 64, 175, 0.86), rgba(15, 23, 42, 0.94));
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 44px rgba(2, 6, 23, 0.35);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 28px rgba(34, 211, 238, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 22px;
}

.brand-text small {
  margin-top: 5px;
  color: #a5f3fc;
  font-size: 12px;
  font-weight: 600;
}

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

.main-nav a,
.mobile-panel nav a,
.quick-cats a {
  color: #dbeafe;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-panel nav a:hover,
.quick-cats a:hover {
  color: var(--cyan);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.56);
}

.header-search input,
.mobile-panel input,
.search-hero input,
.filter-row input,
.filter-row select {
  border: 1px solid rgba(56, 189, 248, 0.24);
  outline: none;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.78);
}

.header-search input {
  width: 220px;
  padding: 10px 12px 10px 16px;
  border: 0;
  background: transparent;
}

.header-search button,
.mobile-panel button,
.search-hero button,
.btn-primary,
.btn-secondary,
.play-button {
  border: 0;
  cursor: pointer;
  color: #ffffff;
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 14px 34px rgba(34, 211, 238, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button {
  padding: 10px 16px;
}

.header-search button:hover,
.mobile-panel button:hover,
.search-hero button:hover,
.btn-primary:hover,
.btn-secondary:hover,
.play-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(34, 211, 238, 0.34);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  cursor: pointer;
}

.quick-cats {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 12px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.quick-cats a {
  flex: 0 0 auto;
  padding: 7px 14px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.28);
  font-size: 13px;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 16px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.78);
}

.mobile-panel.open {
  display: block;
}

.mobile-panel form {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.mobile-panel input {
  min-width: 0;
  flex: 1;
  padding: 12px 14px;
  border-radius: 14px;
}

.mobile-panel button {
  padding: 0 18px;
}

.mobile-panel nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: grid;
  place-items: stretch;
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  transform: scale(1.02);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 70% 35%, rgba(34, 211, 238, 0.24), transparent 28rem),
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.86)),
    linear-gradient(0deg, #020617, transparent 58%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 42px;
  padding: 70px 0;
}

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

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

.hero h1,
.page-hero h1,
.detail-title h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero h1 span,
.page-hero h1 span,
.detail-title h1 span {
  display: block;
  margin-top: 10px;
  color: #22d3ee;
  font-size: clamp(24px, 4vw, 46px);
  letter-spacing: -0.03em;
}

.hero-copy h2 {
  margin: 26px 0 12px;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.05;
}

.hero-copy p,
.page-hero p,
.detail-title p,
.category-intro,
.article-content p {
  color: #cbd5e1;
  line-height: 1.85;
}

.hero-copy p {
  max-width: 660px;
  font-size: 18px;
}

.hero-actions,
.section-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.btn-secondary {
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.74);
}

.hero-panel {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.focus-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(30, 64, 175, 0.32));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.focus-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.focus-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
}

.focus-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.75;
}

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

.tag-row span,
.meta-row em,
.card-meta em,
.year-chip,
.play-chip,
.rank-info em,
.detail-meta span,
.filter-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 999px;
  color: #a5f3fc;
  background: rgba(8, 47, 73, 0.46);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.tag-row span {
  padding: 7px 11px;
}

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

.hero-dot {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.42);
  cursor: pointer;
}

.hero-dot.active {
  background: #22d3ee;
}

.section,
.page-hero,
.detail-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

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

.section-header h2,
.page-hero h2,
.article-content h2,
.related-section h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-header p {
  max-width: 680px;
  margin: 12px 0 0;
  color: #94a3b8;
  line-height: 1.75;
}

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

.movie-card,
.wide-card,
.rank-card,
.category-card,
.search-result {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.48));
  box-shadow: 0 14px 38px rgba(2, 6, 23, 0.28);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover,
.wide-card:hover,
.rank-card:hover,
.category-card:hover,
.search-result:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.54);
  box-shadow: 0 22px 56px rgba(34, 211, 238, 0.14);
}

.poster-wrap,
.wide-cover,
.rank-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.72), rgba(2, 6, 23, 0.9));
}

.poster-wrap {
  aspect-ratio: 3 / 4;
}

.poster-wrap img,
.wide-cover img,
.rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 55%);
}

.year-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

.play-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.88), rgba(37, 99, 235, 0.88));
}

.card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.card-body strong,
.wide-body strong,
.rank-info strong,
.search-result strong {
  display: -webkit-box;
  overflow: hidden;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card:hover strong,
.wide-card:hover strong,
.rank-card:hover strong,
.search-result:hover strong {
  color: var(--cyan);
}

.card-desc,
.summary-line,
.rank-info span,
.search-result p {
  display: -webkit-box;
  overflow: hidden;
  color: #94a3b8;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-desc {
  min-height: 52px;
  font-size: 14px;
}

.card-meta,
.meta-row,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-meta em,
.meta-row em,
.detail-meta span {
  padding: 6px 9px;
}

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

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

.wide-cover {
  min-height: 100%;
}

.wide-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 22px;
}

.panel-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(15, 23, 42, 0.62));
  box-shadow: var(--shadow);
}

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

.category-card {
  min-height: 180px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.22), transparent 9rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(30, 64, 175, 0.28));
}

.category-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.category-card p {
  margin: 0 0 18px;
  color: #94a3b8;
  line-height: 1.7;
}

.category-card span {
  color: #67e8f9;
  font-weight: 900;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 60px 140px minmax(0, 1fr);
  align-items: stretch;
  min-height: 140px;
}

.rank-index {
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  background: linear-gradient(180deg, var(--orange), var(--pink));
}

.rank-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px;
}

.rank-info em {
  align-self: start;
  padding: 6px 10px;
}

.page-hero {
  padding: 70px 0 38px;
}

.page-hero.compact {
  padding-bottom: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: #a5f3fc;
  font-size: 14px;
  font-weight: 800;
}

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

.filter-row,
.search-hero form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
}

.filter-row input,
.filter-row select,
.search-hero input {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
}

.filter-row input {
  flex: 1 1 260px;
}

.filter-row select {
  flex: 0 1 160px;
}

.search-hero input {
  flex: 1 1 320px;
  max-width: 620px;
}

.search-hero button {
  min-height: 48px;
  padding: 0 24px;
}

.detail-shell {
  padding: 48px 0 72px;
}

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

.player-card {
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 30px;
  background: #000000;
  box-shadow: var(--shadow);
}

.video-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-box video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000000;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  background:
    radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 22rem),
    linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.18));
}

.player-cover[hidden] {
  display: none;
}

.play-button {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  border-radius: 50%;
  font-size: 34px;
}

.player-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.58));
}

.player-caption strong {
  font-size: 18px;
}

.detail-title,
.article-content,
.related-section,
.side-panel {
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.66);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(14px);
}

.detail-title {
  margin-bottom: 24px;
  padding: 32px;
}

.detail-title h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.detail-title p {
  font-size: 17px;
}

.article-content {
  margin-top: 24px;
  padding: 30px;
}

.article-content h2,
.related-section h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.article-content p {
  margin: 0 0 18px;
}

.side-panel {
  padding: 22px;
}

.side-panel img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.72), rgba(2, 6, 23, 0.9));
}

.side-panel h2 {
  margin: 20px 0 14px;
  font-size: 22px;
}

.side-panel .tag-row {
  margin-top: 10px;
}

.related-section {
  margin-top: 28px;
  padding: 30px;
}

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

.search-results {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.search-result {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
}

.search-result img {
  width: 96px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
}

.search-result p {
  margin: 8px 0;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(56, 189, 248, 0.16);
  background: rgba(2, 6, 23, 0.64);
}

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

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

.site-footer p {
  max-width: 440px;
  margin: 0;
  color: #94a3b8;
  line-height: 1.75;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

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

.footer-links a {
  padding: 8px 12px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.72);
}

.footer-links a:hover {
  color: #ffffff;
  border-color: rgba(34, 211, 238, 0.5);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: #64748b;
  font-size: 14px;
}

.hidden-card {
  display: none !important;
}

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

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .hero-inner,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    align-self: auto;
  }

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

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

@media (max-width: 760px) {
  .nav-shell {
    height: 66px;
  }

  .brand-text strong {
    font-size: 18px;
  }

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

  .hero-inner {
    padding: 54px 0 82px;
  }

  .hero-panel {
    display: none;
  }

  .section,
  .detail-shell {
    padding: 42px 0;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

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

  .panel-section {
    padding: 24px;
    border-radius: 24px;
  }

  .wide-card {
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 150px;
  }

  .rank-card {
    grid-template-columns: 48px 92px minmax(0, 1fr);
    min-height: 122px;
  }

  .rank-info {
    padding: 12px;
  }

  .rank-info span {
    display: none;
  }

  .detail-title,
  .article-content,
  .related-section,
  .side-panel {
    padding: 20px;
    border-radius: 22px;
  }

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

  .footer-grid {
    padding: 34px 0;
  }
}

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

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

  .wide-cover {
    aspect-ratio: 16 / 9;
  }

  .search-result img {
    width: 100%;
  }
}
