:root {
  --amber-900: #78350f;
  --amber-800: #92400e;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-100: #fef3c7;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --rose-600: #e11d48;
  --teal-600: #0d9488;
  --emerald-600: #059669;
  --white: #ffffff;
  --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 35px rgba(15, 23, 42, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 42%, #f8fafc 100%);
  color: var(--slate-800);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--amber-900), var(--amber-700), var(--amber-900));
  color: var(--white);
  box-shadow: 0 14px 35px rgba(120, 53, 15, 0.28);
}

.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.17);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.brand-text {
  font-size: 1.25rem;
}

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

.nav-link,
.mobile-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.86);
  transition: 0.22s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 16px;
  background: rgba(120, 53, 15, 0.98);
}

.mobile-nav.open {
  display: grid;
  gap: 6px;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 18% 16%, rgba(245, 158, 11, 0.7), transparent 28%), linear-gradient(135deg, #78350f 0%, #92400e 42%, #7f1d1d 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 34px 34px;
  animation: drift 12s linear infinite;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(34px, 34px, 0); }
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: center;
  padding: 56px 0;
}

.hero-slider {
  position: relative;
  min-height: 510px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: center;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  transition: 0.58s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: -1;
  background-image: linear-gradient(90deg, rgba(120, 53, 15, 0.96), rgba(120, 53, 15, 0.64), rgba(15, 23, 42, 0.5)), var(--hero-bg);
  background-size: cover;
  background-position: center;
  filter: blur(3px) saturate(1.2);
  transform: scale(1.06);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fde68a;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-copy h1,
.page-hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.hero-actions,
.hero-shortcuts,
.badge-row,
.detail-tags,
.tag-row,
.mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: 0.22s ease;
}

.btn.primary {
  background: var(--white);
  color: var(--amber-900);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn.primary:hover {
  background: var(--amber-100);
  transform: translateY(-2px);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn.full {
  width: 100%;
  margin-top: 20px;
}

.btn.light,
.section-heading.light,
.category-block {
  color: var(--white);
}

.hero-poster {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
  transform: rotate(2deg);
  transition: 0.25s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) scale(1.02);
}

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

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-search-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero-search-card h2 {
  margin: 18px 0 10px;
  font-size: 2.05rem;
}

.hero-search-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-search {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-search input,
.filter-field input,
.filter-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 14px;
  padding: 0 14px;
  outline: none;
  background: var(--white);
  color: var(--slate-800);
}

.hero-search button,
.filter-reset {
  border: 0;
  border-radius: 14px;
  padding: 0 18px;
  color: var(--white);
  background: var(--amber-600);
  font-weight: 900;
  cursor: pointer;
}

.hero-shortcuts a {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fde68a;
  font-size: 0.88rem;
}

.hero-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

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

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

.section {
  padding: 70px 0;
}

.soft-section {
  background: linear-gradient(100deg, #f8fafc, #fffbeb);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.section-heading.small {
  margin-bottom: 20px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--slate-600);
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.72);
}

.section-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--white);
  background: var(--amber-600);
  box-shadow: var(--shadow-card);
  font-weight: 900;
}

.section-icon.emerald {
  background: var(--emerald-600);
}

.section-icon.rose {
  background: var(--rose-600);
}

.section-icon.teal {
  background: var(--teal-600);
}

.section-more {
  margin-left: auto;
  color: var(--amber-700);
  font-weight: 900;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

.latest-grid,
.catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.movie-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2);
}

.poster-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #f8fafc);
}

.poster-wrap img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: 0.45s ease;
}

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

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

.poster-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.poster-meta span,
.rank-badge,
.badge-row span,
.detail-tags span,
.tag-row span,
.mini-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.poster-meta span {
  padding: 5px 9px;
  color: var(--white);
  background: rgba(217, 119, 6, 0.92);
  font-size: 0.78rem;
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 42px;
  height: 42px;
  justify-content: center;
  color: var(--white);
  background: var(--rose-600);
  box-shadow: 0 10px 22px rgba(225, 29, 72, 0.32);
}

.card-body {
  padding: 18px;
  flex: 1;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.35;
  color: var(--slate-800);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-genre,
.card-line {
  margin: 0;
  color: var(--slate-600);
}

.card-genre {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--amber-700);
  margin-bottom: 8px;
}

.card-line {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 52px;
}

.tag-row {
  margin-top: 14px;
}

.tag-row span,
.detail-tags span {
  padding: 5px 9px;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 0.78rem;
}

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

.movie-card.compact .card-line {
  display: none;
}

.two-column-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.ranking-card,
.category-block {
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.ranking-card {
  background: var(--white);
}

.category-block {
  background: linear-gradient(135deg, var(--slate-900), var(--amber-900));
}

.ranking-list {
  display: grid;
  gap: 14px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 48px 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(241, 245, 249, 0.75);
  transition: 0.22s ease;
}

.ranking-row:hover {
  background: #fff7ed;
  transform: translateX(5px);
}

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

.ranking-index {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--amber-600);
  font-weight: 900;
}

.ranking-row h3 {
  margin: 0 0 4px;
  color: var(--slate-800);
}

.ranking-row p {
  margin: 0;
  color: var(--slate-600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mini-meta {
  margin-top: 8px;
}

.mini-meta span {
  padding: 3px 7px;
  background: var(--white);
  color: var(--slate-600);
  font-size: 0.76rem;
}

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

.category-tile {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.category-tile h3,
.category-tile p {
  margin: 0;
}

.category-tile p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.category-samples {
  display: grid;
  gap: 6px;
  margin: 14px 0;
}

.category-samples a {
  color: #fde68a;
  font-size: 0.88rem;
}

.text-link {
  color: #fde68a;
  font-weight: 900;
}

.page-hero {
  color: var(--white);
  padding: 70px 0;
  background: radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.5), transparent 28%), linear-gradient(135deg, var(--slate-900), var(--amber-900));
}

.compact-hero,
.category-hero,
.ranking-hero,
.search-hero {
  padding: 62px 0;
}

.page-hero h1 {
  margin-top: 18px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.detail-wrap .crumbs {
  color: var(--slate-500);
  margin-top: 28px;
}

.crumbs a {
  color: #fde68a;
  font-weight: 800;
}

.detail-wrap .crumbs a {
  color: var(--amber-700);
}

.overview-list {
  display: grid;
  gap: 26px;
  padding: 54px 0 76px;
}

.category-overview-card {
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.category-overview-head {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.category-overview-head .eyebrow {
  background: var(--amber-100);
  color: var(--amber-800);
}

.category-overview-head h2 {
  margin: 14px 0 8px;
  font-size: 2rem;
}

.category-overview-head p {
  margin: 0;
  color: var(--slate-600);
}

.filter-panel {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 20px;
  margin-bottom: 28px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.filter-field {
  display: grid;
  gap: 7px;
}

.filter-field span {
  color: var(--slate-700);
  font-weight: 900;
  font-size: 0.9rem;
}

.filter-reset {
  min-height: 46px;
}

.empty-state {
  display: none;
  padding: 48px 24px;
  border-radius: 24px;
  text-align: center;
  background: var(--white);
  color: var(--slate-600);
  font-weight: 900;
  box-shadow: var(--shadow-card);
}

.empty-state.show {
  display: block;
}

.detail-card {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 34px;
  margin: 24px 0 34px;
  padding: 32px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.detail-poster img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.22);
}

.detail-info h1 {
  margin: 18px 0 18px;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.badge-row span {
  padding: 6px 11px;
  color: var(--amber-800);
  background: var(--amber-100);
  font-size: 0.85rem;
}

.detail-one-line {
  padding: 18px 20px;
  margin: 0 0 18px;
  border-left: 5px solid var(--amber-600);
  border-radius: 16px;
  background: #fffbeb;
  color: var(--slate-700);
  font-size: 1.08rem;
  font-weight: 800;
}

.player-panel {
  padding: 28px;
  margin-bottom: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--slate-950), var(--amber-900));
  box-shadow: var(--shadow-soft);
}

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

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

.play-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.38), rgba(2, 6, 23, 0.75));
  cursor: pointer;
  transition: 0.22s ease;
}

.play-cover:hover {
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.5), rgba(2, 6, 23, 0.7));
}

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

.play-ring {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--amber-800);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.play-ring span {
  transform: translateX(3px);
  font-size: 2rem;
}

.play-cover strong {
  max-width: 80%;
  font-size: 1.25rem;
}

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

.article-panel {
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.article-panel h2 {
  margin: 0 0 14px;
  font-size: 1.65rem;
}

.article-panel h2 + p {
  margin-top: 0;
}

.article-panel p {
  color: var(--slate-700);
  font-size: 1.03rem;
}

.article-panel p + h2 {
  margin-top: 30px;
}

.side-info {
  align-self: start;
  position: sticky;
  top: 92px;
}

.side-info dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.side-info dt,
.side-info dd {
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--slate-100);
}

.side-info dt {
  color: var(--slate-500);
  font-weight: 800;
}

.side-info dd {
  font-weight: 900;
  color: var(--slate-800);
}

.side-info dd a {
  color: var(--amber-700);
}

.related-section {
  padding-top: 36px;
}

.site-footer {
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
  color: rgba(255, 255, 255, 0.74);
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer-brand {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.74);
}

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

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

@media (max-width: 1050px) {
  .hero-shell,
  .hero-slide,
  .two-column-section,
  .detail-card,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    padding-top: 34px;
  }

  .hero-slider {
    min-height: 720px;
  }

  .hero-slide {
    align-content: center;
  }

  .hero-poster {
    width: min(320px, 100%);
  }

  .side-info {
    position: static;
  }

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

  .filter-field.wide,
  .filter-reset {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-slider {
    min-height: 660px;
  }

  .hero-copy h1,
  .page-hero h1 {
    letter-spacing: -0.035em;
  }

  .featured-grid,
  .latest-grid,
  .catalog-grid,
  .mini-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-more {
    display: none;
  }

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

  .category-overview-head {
    flex-direction: column;
  }

  .ranking-row {
    grid-template-columns: 42px 58px minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .hero-slider {
    min-height: 650px;
  }

  .hero-copy h1 {
    font-size: 2.55rem;
  }

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

  .hero-search button {
    min-height: 46px;
  }

  .section {
    padding: 46px 0;
  }

  .movie-grid,
  .featured-grid,
  .latest-grid,
  .catalog-grid,
  .mini-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .filter-field.wide,
  .filter-reset {
    grid-column: auto;
  }

  .detail-card,
  .player-panel,
  .article-panel,
  .category-overview-card,
  .ranking-card,
  .category-block {
    padding: 18px;
    border-radius: 22px;
  }

  .detail-info h1 {
    font-size: 2rem;
  }

  .play-ring {
    width: 70px;
    height: 70px;
  }
}
