
:root {
  --cream: #fff5e1;
  --rose: #ffc0cb;
  --strawberry: #ffb6c1;
  --hotpink: #ff1493;
  --pink: #ff69b4;
  --coral: #ff7f50;
  --lavender: #e6e6fa;
  --mint: #98d8c8;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: rgba(255, 105, 180, 0.18);
  --shadow: 0 18px 48px rgba(255, 105, 180, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 105, 180, 0.16), transparent 32rem),
    radial-gradient(circle at 92% 0%, rgba(152, 216, 200, 0.22), transparent 30rem),
    linear-gradient(135deg, var(--cream), #fff, var(--lavender));
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(255, 182, 193, 0.24);
}

.header-inner {
  max-width: 1280px;
  height: 78px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--strawberry), var(--hotpink));
  box-shadow: 0 8px 22px rgba(255, 20, 147, 0.32);
}

.brand-text strong,
.footer-brand strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, var(--pink), var(--hotpink), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--coral);
  font-size: 12px;
}

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

.nav-link,
.nav-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: #4b5563;
  background: transparent;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-button:hover {
  color: var(--hotpink);
  background: rgba(255, 192, 203, 0.55);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  padding: 9px 10px;
  border-radius: 14px;
  color: #4b5563;
  font-size: 14px;
}

.dropdown-link:hover {
  color: var(--hotpink);
  background: rgba(255, 192, 203, 0.5);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 310px;
}

.header-search input,
.mobile-search input,
.big-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 2px solid rgba(255, 182, 193, 0.7);
  border-radius: 999px;
  padding: 11px 16px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--hotpink);
  box-shadow: 0 0 0 4px rgba(255, 20, 147, 0.12);
}

.header-search button,
.mobile-search button,
.big-search button,
.btn-primary {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(90deg, var(--pink), var(--hotpink));
  box-shadow: 0 12px 28px rgba(255, 20, 147, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.header-search button:hover,
.mobile-search button:hover,
.big-search button:hover,
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 34px rgba(255, 20, 147, 0.36);
}

.btn-ghost {
  border-radius: 999px;
  padding: 12px 20px;
  color: #fff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.mobile-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--hotpink);
  background: var(--rose);
}

.mobile-panel {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid var(--line);
}

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

.mobile-search {
  display: flex;
  gap: 10px;
  max-width: 720px;
  margin: 16px auto;
}

.mobile-nav {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 192, 203, 0.35);
  color: #4b5563;
}

.mobile-link:hover {
  color: var(--hotpink);
  background: rgba(255, 192, 203, 0.65);
}

.hero-carousel {
  position: relative;
  min-height: clamp(620px, 88vh, 820px);
  overflow: hidden;
  color: #fff;
  background: #171421;
}

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 18, 31, 0.92), rgba(21, 18, 31, 0.52), rgba(255, 105, 180, 0.28)),
    radial-gradient(circle at 78% 32%, rgba(255, 192, 203, 0.35), transparent 28rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: clamp(620px, 88vh, 820px);
  margin: 0 auto;
  padding: 80px 24px 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: 56px;
}

.eyebrow,
.hero-copy .eyebrow,
.inner-hero span,
.section-heading span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--pink), var(--hotpink));
  box-shadow: 0 10px 24px rgba(255, 20, 147, 0.28);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.04;
  font-weight: 950;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

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

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

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  color: var(--hotpink);
  background: rgba(255, 245, 225, 0.88);
  border: 1px solid rgba(255, 105, 180, 0.22);
}

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

.hero-poster {
  position: relative;
  display: block;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.hero-poster:hover {
  transform: translateY(-8px) rotate(0deg);
}

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

.hero-poster span,
.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--hotpink));
  box-shadow: 0 12px 30px rgba(255, 20, 147, 0.4);
  transform: translate(-50%, -50%);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 4;
  width: min(1280px, calc(100% - 48px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-prev,
.hero-next {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

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

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

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

.page-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.inner-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 950;
  color: var(--ink);
}

.section-heading p,
.inner-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.movie-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 182, 193, 0.42);
  box-shadow: 0 14px 36px rgba(255, 182, 193, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 20, 147, 0.36);
  box-shadow: 0 24px 56px rgba(255, 105, 180, 0.28);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose), var(--lavender));
}

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

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

.play-dot {
  opacity: 0;
  width: 52px;
  height: 52px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--coral), var(--hotpink));
  box-shadow: 0 8px 18px rgba(255, 20, 147, 0.32);
}

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

.movie-meta-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.movie-card h3 {
  margin: 10px 0 9px;
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

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

.movie-card p {
  min-height: 66px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.58;
}

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

.tag-row span {
  color: var(--hotpink);
  background: rgba(255, 192, 203, 0.38);
}

.pastel-panel {
  max-width: none;
  margin-top: 72px;
  padding: 72px max(24px, calc((100vw - 1280px) / 2)) 78px;
  background: linear-gradient(135deg, rgba(255, 192, 203, 0.6), rgba(230, 230, 250, 0.72));
}

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

.category-tile,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 220px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: #201a2c;
  box-shadow: 0 16px 40px rgba(31, 41, 55, 0.14);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(31, 24, 41, 0.88));
}

.category-tile:hover img {
  transform: scale(1.08);
  opacity: 0.72;
}

.category-tile span,
.category-tile strong {
  position: relative;
  z-index: 1;
}

.category-tile span {
  font-size: 28px;
  font-weight: 950;
}

.category-tile strong {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.rank-strip .rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rank-item {
  display: grid;
  grid-template-columns: 54px 62px 1fr auto;
  align-items: center;
  gap: 14px;
  border-radius: 22px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 182, 193, 0.45);
  box-shadow: 0 10px 24px rgba(255, 182, 193, 0.18);
}

.rank-item:hover {
  color: var(--hotpink);
  transform: translateY(-2px);
}

.rank-number {
  color: var(--hotpink);
  font-size: 24px;
  font-weight: 950;
}

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

.rank-title {
  color: var(--ink);
  font-weight: 900;
}

.rank-item small {
  color: var(--muted);
  white-space: nowrap;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.inner-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 76px 24px 18px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 170px 170px 190px;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 182, 193, 0.46);
  box-shadow: 0 12px 30px rgba(255, 182, 193, 0.16);
}

.category-overview-card {
  min-height: auto;
  display: block;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 182, 193, 0.48);
}

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

.category-preview img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.category-overview-card span {
  color: var(--hotpink);
  font-weight: 900;
}

.category-overview-card h2 {
  margin: 8px 0;
  font-size: 24px;
  font-weight: 950;
}

.category-overview-card p {
  color: var(--muted);
  line-height: 1.65;
}

.search-hero {
  text-align: center;
}

.search-hero span,
.search-hero p {
  margin-left: auto;
  margin-right: auto;
}

.big-search {
  max-width: 760px;
  margin: 30px auto 0;
  display: flex;
  gap: 12px;
}

.search-result-title {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  color: #fff;
  background: #171421;
}

.detail-layer {
  position: relative;
  z-index: 2;
  min-height: 560px;
  padding: 34px 24px 64px;
  background:
    linear-gradient(90deg, rgba(21, 18, 31, 0.94), rgba(21, 18, 31, 0.62), rgba(255, 105, 180, 0.26)),
    radial-gradient(circle at 82% 20%, rgba(255, 192, 203, 0.32), transparent 28rem);
}

.breadcrumb {
  max-width: 1280px;
  margin: 0 auto 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

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

.detail-head {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  width: 100%;
  border-radius: 34px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.detail-info h1 {
  margin: 18px 0 16px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.08;
  font-weight: 950;
}

.detail-info p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  margin: 22px 0;
}

.large-tags {
  margin-bottom: 28px;
}

.player-section {
  max-width: 1280px;
  margin: -72px auto 0;
  position: relative;
  z-index: 3;
  padding: 0 24px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #000;
  box-shadow: 0 28px 80px rgba(31, 41, 55, 0.28);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-overlay span {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 34px;
  background: linear-gradient(135deg, var(--pink), var(--hotpink));
  box-shadow: 0 16px 36px rgba(255, 20, 147, 0.45);
}

.player-overlay strong {
  font-size: 22px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
}

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

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

.detail-block {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 182, 193, 0.46);
  box-shadow: 0 12px 30px rgba(255, 182, 193, 0.18);
}

.detail-block h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
}

.detail-block p {
  color: #4b5563;
  line-height: 1.9;
}

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

.site-footer {
  margin-top: 90px;
  background: linear-gradient(135deg, rgba(230, 230, 250, 0.92), rgba(255, 192, 203, 0.88));
  border-top: 1px solid rgba(255, 105, 180, 0.18);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--hotpink));
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 950;
}

.site-footer p,
.site-footer a {
  display: block;
  color: #4b5563;
  line-height: 1.75;
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--hotpink);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px 28px;
  color: #6b7280;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 14px;
}

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

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

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

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

  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .hero-content,
  .detail-head,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    max-width: 320px;
    margin: 0 auto;
  }

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

  .rank-strip .rank-list {
    grid-template-columns: 1fr;
  }

  .detail-head {
    align-items: start;
  }

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

@media (max-width: 640px) {
  .header-inner {
    height: 70px;
    padding: 0 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

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

  .brand-text small {
    display: none;
  }

  .hero-content {
    padding: 52px 18px 110px;
    gap: 28px;
  }

  .hero-copy p,
  .detail-info p {
    font-size: 16px;
  }

  .hero-controls {
    width: calc(100% - 32px);
  }

  .page-section,
  .inner-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

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

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

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

  .movie-card p {
    min-height: auto;
    font-size: 13px;
  }

  .filter-panel,
  .big-search,
  .mobile-search {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .filter-panel {
    display: grid;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 44px 54px 1fr;
  }

  .rank-item small {
    display: none;
  }

  .player-section {
    margin-top: -32px;
    padding: 0 12px;
  }

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

  .player-overlay span {
    width: 66px;
    height: 66px;
  }

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