:root {
  --pink: #db2777;
  --pink-strong: #ec4899;
  --purple: #7c3aed;
  --blue: #2563eb;
  --gold: #facc15;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #fdf2f8;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 10px 28px rgba(17, 24, 39, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, #fdf2f8 0%, #f5f3ff 45%, #eff6ff 100%);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

main {
  min-height: 70vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1180px;
  height: 72px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink-strong), var(--purple), var(--blue));
  box-shadow: 0 10px 24px rgba(219, 39, 119, 0.28);
  transition: transform 0.28s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(6deg);
}

.brand-text,
.footer-brand {
  font-size: 26px;
  line-height: 1;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  position: relative;
  color: #374151;
  font-size: 15px;
  font-weight: 700;
  padding: 26px 0 22px;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 3px;
  border-radius: 999px;
  transform: scaleX(0);
  background: var(--pink);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

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

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

.mobile-nav {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px 18px;
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  color: #374151;
  background: #f9fafb;
  font-weight: 700;
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--pink);
  background: #fdf2f8;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.02);
  transform: scale(1.04);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(236, 72, 153, 0.38), transparent 34%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(88, 28, 135, 0.66) 48%, rgba(17, 24, 39, 0.22) 100%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.96) 0%, rgba(17, 24, 39, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 92px 22px 118px;
  color: #fff;
}

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

.hero-content h1 {
  max-width: 780px;
  margin: 0 0 22px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 660px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.75;
}

.hero-tags,
.tag-row,
.info-chips,
.detail-facts,
.hero-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-row span,
.info-chips span,
.detail-facts span,
.hero-link-row a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags span {
  padding: 8px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn.primary {
  color: var(--purple);
  background: #fff;
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.18);
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  font-size: 32px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 22px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.section-head.compact {
  margin-bottom: 20px;
}

.section-head h2,
.rank-panel-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--pink);
}

.section-head a,
.rank-more,
.back-link,
.side-category {
  color: var(--pink);
  font-weight: 900;
  transition: color 0.25s ease;
}

.section-head a:hover,
.rank-more:hover,
.back-link:hover,
.side-category:hover {
  color: var(--purple);
}

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

.category-card a {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-gradient);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.36), transparent 32%);
}

.category-card a:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-top,
.category-card p,
.category-thumbs,
.category-card em {
  position: relative;
  z-index: 2;
}

.category-top span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.category-top strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
}

.category-card p {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: auto;
}

.category-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
}

.category-card em {
  margin-top: 16px;
  font-style: normal;
  font-weight: 900;
}

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

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

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

.movie-card {
  min-width: 0;
}

.card-link {
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.poster-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf2f8, #eff6ff);
}

.movie-card.large .poster-wrap {
  aspect-ratio: 16 / 9;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card-link:hover .poster-wrap img {
  transform: scale(1.08);
}

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.58), transparent);
}

.score-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  color: #713f12;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.94);
  font-size: 12px;
  font-weight: 900;
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.card-link:hover h3 {
  color: var(--pink);
}

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

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

.meta-row span + span::before {
  content: "·";
  margin-right: 10px;
  color: #d1d5db;
}

.tag-row span {
  padding: 6px 10px;
  color: var(--pink);
  background: #fce7f3;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.rank-panel {
  position: sticky;
  top: 94px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.rank-panel.full {
  position: static;
}

.rank-panel-head {
  margin-bottom: 18px;
}

.rank-panel-head span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

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

.rank-item a {
  display: grid;
  grid-template-columns: 38px 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-item a:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}

.rank-no {
  color: var(--pink);
  font-size: 20px;
  font-weight: 900;
}

.rank-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  background: #f3f4f6;
}

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

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

.rank-text strong {
  color: var(--ink);
  font-size: 15px;
}

.rank-text em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.rank-more {
  display: inline-flex;
  margin-top: 18px;
}

.page-hero,
.search-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--hero-gradient, linear-gradient(90deg, var(--pink-strong), var(--purple), var(--blue)));
}

.simple-hero,
.search-hero {
  background: linear-gradient(90deg, var(--pink-strong), var(--purple), var(--blue));
}

.page-hero::before,
.search-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.14), transparent);
}

.page-hero-inner,
.search-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 22px;
}

.page-hero h1,
.search-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.page-hero p,
.search-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.75;
}

.back-link.light {
  display: inline-flex;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-link-row {
  margin-top: 24px;
}

.hero-link-row a {
  padding: 8px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.toolbar-search {
  flex: 1;
}

.toolbar input,
.search-box input,
.filter-row select {
  width: 100%;
  border: 1px solid #f3e8ff;
  outline: 0;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.toolbar input {
  padding: 13px 16px;
}

.toolbar input:focus,
.search-box input:focus,
.filter-row select:focus {
  border-color: #f9a8d4;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.sort-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sort-buttons button,
.search-box button {
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  color: #374151;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.sort-buttons button:hover,
.sort-buttons button.active,
.search-box button:hover {
  color: #fff;
  background: var(--pink);
  transform: translateY(-1px);
}

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

.search-inner {
  max-width: 880px;
  text-align: center;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 34px;
}

.search-box input {
  min-height: 58px;
  padding: 0 20px;
  font-size: 18px;
}

.search-box button {
  padding: 0 22px;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.filter-row select {
  height: 48px;
  padding: 0 14px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  background: #111827;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  filter: blur(14px) saturate(1.1);
  transform: scale(1.06);
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #111827 0%, rgba(17, 24, 39, 0.66) 55%, rgba(17, 24, 39, 0.48) 100%);
}

.detail-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 54px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

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

.breadcrumb strong {
  color: #fff;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.25), rgba(17, 24, 39, 0.68));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-overlay span {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 999px;
  color: var(--pink);
  background: #fff;
  box-shadow: 0 18px 44px rgba(236, 72, 153, 0.34);
  font-size: 34px;
  transition: transform 0.25s ease;
}

.player-overlay:hover span {
  transform: scale(1.08);
}

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

.detail-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.detail-poster {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.detail-facts span {
  padding: 7px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.side-category {
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
  padding: 13px 16px;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--pink-strong), var(--purple));
}

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

.detail-article {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.detail-article h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.lead-text {
  margin: 0 0 22px;
  color: #374151;
  font-size: 20px;
  line-height: 1.8;
}

.info-chips {
  margin-bottom: 18px;
}

.info-chips span {
  padding: 8px 12px;
  color: #1f2937;
  background: #f3f4f6;
}

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

.detail-article h2 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}

.detail-article p {
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

.detail-rank {
  top: 94px;
}

.site-footer {
  margin-top: 44px;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #312e81 55%, #831843);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 22px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
}

.footer-inner p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
  align-content: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

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

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

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

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

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

  .rank-panel,
  .detail-rank {
    position: static;
  }
}

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

  .menu-toggle {
    display: flex;
  }

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

  .hero-arrow {
    display: none;
  }

  .category-grid,
  .movie-grid,
  .featured-grid,
  .small-grid,
  .ranking-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-side {
    display: none;
  }

  .toolbar,
  .section-head,
  .footer-inner {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

@media (max-width: 560px) {
  .header-inner {
    height: 66px;
  }

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

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

  .hero-content {
    padding: 72px 18px 96px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .section,
  .page-hero-inner,
  .search-inner,
  .detail-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .category-grid,
  .movie-grid,
  .featured-grid,
  .small-grid,
  .ranking-columns {
    grid-template-columns: 1fr;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .detail-article {
    padding: 24px;
  }

  .rank-item a {
    grid-template-columns: 32px 62px minmax(0, 1fr);
  }

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