:root {
  --bg: #f8fafc;
  --bg-soft: #fff7ed;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --primary: #f97316;
  --primary-dark: #ea580c;
  --accent: #ef4444;
  --deep: #111827;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 52%, #ffffff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  object-fit: cover;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 68px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
}

.logo-text {
  font-size: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.main-nav a,
.mobile-panel nav a {
  position: relative;
  color: #374151;
  font-weight: 700;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.mobile-panel nav a:hover,
.mobile-panel nav a.is-active {
  color: var(--primary-dark);
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -23px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.header-search,
.mobile-search,
.big-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.big-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: #ffffff;
  color: var(--text);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 230px;
  padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(249, 115, 22, 0.8);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.header-search button,
.mobile-search button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: #fff7ed;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #9a3412;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

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

.mobile-panel nav {
  display: grid;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4px 0 18px;
}

.mobile-search {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 10px;
}

.mobile-search input {
  padding: 11px 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  color: #ffffff;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  filter: saturate(1.08) contrast(1.08);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.72) 42%, rgba(17, 24, 39, 0.38) 100%),
    radial-gradient(circle at 72% 20%, rgba(249, 115, 22, 0.38), transparent 28rem);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c2410c;
  background: #ffedd5;
  border: 1px solid rgba(251, 146, 60, 0.45);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.16);
  border-color: rgba(251, 146, 60, 0.35);
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.hero p,
.page-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-tags,
.genre-pills,
.tag-row,
.tag-cloud {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 24px 0 30px;
}

.hero-tags span,
.genre-pills span,
.tag-row span,
.tag-cloud a {
  color: #9a3412;
  background: #ffedd5;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 32px rgba(239, 68, 68, 0.24);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost.light {
  color: #ffffff;
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
}

.hero-poster::before {
  content: "";
  display: block;
  padding-top: 142%;
}

.hero-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-dot {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.hero-dot.is-active {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.quick-cats {
  margin-top: -25px;
  position: relative;
  z-index: 10;
}

.quick-cats-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px;
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.quick-cats-inner strong {
  color: #9a3412;
}

.quick-cats-inner a {
  padding: 8px 12px;
  color: #374151;
  background: #f9fafb;
  border-radius: 999px;
  font-weight: 800;
}

.quick-cats-inner a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.section {
  padding: 76px 0;
}

.soft-section {
  width: 100%;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #fff7ed, #ffffff);
}

.section-head {
  position: relative;
  margin-bottom: 28px;
}

.section-head h2,
.text-block h2 {
  margin: 12px 0 10px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 950;
}

.section-head p {
  max-width: 760px;
  color: var(--muted);
  margin: 0;
}

.compact-head h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.section-link {
  position: absolute;
  right: 0;
  top: 8px;
  color: var(--primary-dark);
  font-weight: 900;
}

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

.featured-grid {
  grid-template-columns: repeat(auto-fill, minmax(186px, 1fr));
}

.library-grid {
  margin-top: 26px;
}

.compact-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

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

.poster-link::before {
  content: "";
  display: block;
  padding-top: 142%;
}

.poster-link img,
.category-cover img,
.detail-poster img,
.rank-thumb img {
  width: 100%;
  height: 100%;
}

.poster-link img {
  position: absolute;
  inset: 0;
  transition: transform 0.38s ease, opacity 0.38s ease;
}

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

.poster-badge,
.poster-year {
  position: absolute;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  color: #ffffff;
  font-weight: 900;
}

.poster-badge {
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.poster-year {
  right: 10px;
  bottom: 10px;
  background: rgba(17, 24, 39, 0.76);
  backdrop-filter: blur(8px);
}

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

.movie-card h3 {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 950;
}

.movie-card h3 a:hover {
  color: var(--primary-dark);
}

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

.movie-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #6b7280;
  font-size: 12px;
  white-space: nowrap;
}

.movie-meta-line span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.tag-row span {
  padding: 4px 8px;
  font-size: 11px;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
}

.rank-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.rank-item {
  display: grid;
  grid-template-columns: 48px 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  font-weight: 950;
}

.rank-thumb {
  position: relative;
  overflow: hidden;
  height: 96px;
  border-radius: 14px;
  background: #111827;
}

.rank-item h3 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.35;
}

.rank-item p {
  display: -webkit-box;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-item span {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.small-category-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.category-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.category-cover {
  position: relative;
  display: block;
  height: 160px;
  overflow: hidden;
  background: #111827;
}

.category-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.66), transparent);
}

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

.category-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 950;
}

.category-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-samples a {
  padding: 5px 9px;
  color: #9a3412;
  background: #ffedd5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(124, 45, 18, 0.9)),
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.45), transparent 28rem);
}

.compact-page-hero {
  padding: 88px 0;
}

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

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

.page-hero-bg img {
  width: 100%;
  height: 100%;
  filter: blur(1px) saturate(1.15);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 880px;
}

.filter-panel {
  padding: 18px;
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: 14px;
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: #374151;
  font-size: 13px;
  font-weight: 900;
}

.filter-panel input,
.filter-panel select {
  padding: 12px 14px;
  border-radius: 15px;
}

.search-status {
  margin: 18px 0 0;
  color: #9a3412;
  font-weight: 900;
}

.big-search {
  width: min(720px, 100%);
  margin-top: 28px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.big-search input {
  padding: 14px 18px;
  border: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0 0;
  color: #6b7280;
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: #c2410c;
}

.detail-page {
  padding-bottom: 50px;
}

.player-section {
  padding: 34px 0 56px;
}

.detail-title-head {
  margin-bottom: 20px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.player-shell::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.player-shell video,
.play-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player-shell video {
  background: #000000;
}

.play-overlay {
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.2), rgba(17, 24, 39, 0.82));
}

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

.play-overlay strong {
  margin-top: 92px;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.play-icon {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 20px 45px rgba(239, 68, 68, 0.42);
}

.play-icon::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 27px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #ffffff;
}

.detail-content {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.detail-poster {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.full-btn {
  width: 100%;
}

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

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.detail-meta-grid div {
  padding: 15px;
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 18px;
  background: #ffffff;
}

.detail-meta-grid strong {
  display: block;
  margin-bottom: 4px;
  color: #9ca3af;
  font-size: 12px;
}

.detail-meta-grid span,
.detail-meta-grid a {
  color: #111827;
  font-weight: 900;
}

.text-block {
  padding: 24px;
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.text-block h2 {
  font-size: 24px;
}

.text-block p {
  margin: 0;
  color: #374151;
  font-size: 16px;
}

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

.site-footer {
  margin-top: 40px;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937 54%, #7c2d12);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 1fr 1fr;
  gap: 34px;
  padding: 52px 0;
}

.footer-logo .logo-text {
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.footer-brand p {
  max-width: 420px;
  color: #9ca3af;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

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

.footer-links a {
  color: #d1d5db;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.footer-links a:hover {
  color: #ffffff;
  background: rgba(249, 115, 22, 0.7);
}

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

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

  .main-nav {
    justify-content: flex-end;
  }

  .hero-inner {
    grid-template-columns: 1fr 320px;
    gap: 30px;
  }

  .split-section,
  .detail-content,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    position: static;
    max-width: 280px;
  }

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

@media (max-width: 760px) {
  .container,
  .section,
  .section-head,
  .footer-inner,
  .header-inner {
    width: min(100% - 24px, 1180px);
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .logo-text {
    max-width: 180px;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 48px 0 90px;
  }

  .hero-poster {
    width: min(240px, 72%);
    margin: 0 auto;
    transform: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(34px, 13vw, 54px);
  }

  .section {
    padding: 54px 0;
  }

  .section-link {
    position: static;
    display: inline-flex;
    margin-top: 12px;
  }

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

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

  .movie-card h3 {
    font-size: 14px;
  }

  .movie-meta-line {
    display: grid;
    gap: 3px;
  }

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

  .rank-number {
    width: 38px;
    height: 38px;
  }

  .rank-thumb {
    height: 86px;
  }

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

  .big-search {
    flex-direction: column;
    border-radius: 24px;
  }

  .big-search .btn {
    width: 100%;
  }

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

  .player-shell {
    border-radius: 20px;
  }

  .play-icon {
    width: 68px;
    height: 68px;
  }

  .play-icon::before {
    left: 28px;
    top: 21px;
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 20px;
  }

  .play-overlay strong {
    margin-top: 76px;
  }

  .text-block {
    padding: 18px;
  }
}
