:root {
  --cherry-pink: #ffb7c5;
  --rose: #f43f7f;
  --deep-rose: #db2777;
  --soft-pink: #ffe4e9;
  --light-yellow: #fff4e6;
  --tender-green: #a8d5ba;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: rgba(244, 114, 182, 0.18);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 20px 50px rgba(255, 183, 197, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, var(--light-yellow), var(--soft-pink), #ffd4e0);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.72), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(168, 213, 186, 0.42), transparent 24%),
    radial-gradient(circle at 48% 84%, rgba(255, 183, 197, 0.35), transparent 28%);
  z-index: -2;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.glass-effect {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 30px rgba(244, 114, 182, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.petal-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.cherry-blossom {
  position: absolute;
  top: -30px;
  width: 12px;
  height: 12px;
  opacity: 0.58;
  background: radial-gradient(circle, #ffb7c5, #ff8db0);
  border-radius: 70% 0 70% 0;
  animation: petalFall linear infinite;
}

.cherry-blossom::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 6px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #ffc6d3, #ff9fb8);
  border-radius: 0 70% 0 70%;
}

@keyframes petalFall {
  from {
    transform: translateY(-10vh) rotate(0deg);
  }

  to {
    transform: translateY(115vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-width: 0 0 1px;
  border-color: rgba(244, 114, 182, 0.18);
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--deep-rose);
}

.logo {
  flex: 0 0 auto;
  font-size: 24px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: white;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), #fb7185);
  box-shadow: 0 12px 24px rgba(244, 63, 127, 0.28);
  transform: rotate(-8deg);
}

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

.desktop-nav a,
.mobile-nav a {
  color: #4b5563;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--rose);
}

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

.header-search input,
.mobile-search input,
.large-search input,
.filter-panel input,
.filter-panel select {
  border: 2px solid rgba(244, 114, 182, 0.22);
  background: rgba(255, 255, 255, 0.82);
  outline: none;
  color: var(--ink);
  border-radius: 999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.header-search button,
.mobile-search button,
.large-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose), #fb7185);
}

.header-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.12);
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 14px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--deep-rose);
  font-size: 22px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  animation: fadeInUp 0.25s ease;
}

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

.mobile-search input {
  flex: 1;
  padding: 12px 14px;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 620px;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

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

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 244, 230, 0.96), rgba(255, 228, 233, 0.75), rgba(255, 183, 197, 0.38));
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) blur(0.2px);
  transform: scale(1.03);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-right: 390px;
  animation: fadeInUp 0.6s ease both;
}

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

.hero-tags span,
.detail-tags a,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--deep-rose);
  background: rgba(252, 231, 243, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  max-width: 820px;
  margin: 18px 0 6px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.hero h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--rose), #fb7185, var(--deep-rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.8;
}

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

.center-actions {
  justify-content: center;
}

.primary-button,
.soft-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  padding: 14px 26px;
  color: white;
  background: linear-gradient(135deg, var(--rose), #fb7185);
  box-shadow: 0 16px 32px rgba(244, 63, 127, 0.28);
}

.soft-button {
  padding: 13px 22px;
  color: var(--deep-rose);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.primary-button:hover,
.soft-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 36px rgba(244, 63, 127, 0.24);
}

.hero-side {
  position: absolute;
  right: calc((100% - min(1180px, calc(100% - 32px))) / 2);
  top: 50%;
  width: 330px;
  padding: 20px;
  border-radius: 28px;
  transform: translateY(-50%);
}

.hero-side h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.hero-mini-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-mini-card:hover {
  background: rgba(255, 255, 255, 0.58);
  transform: translateX(4px);
}

.hero-mini-card img {
  width: 88px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
}

.hero-mini-card strong,
.hero-mini-card em {
  display: block;
}

.hero-mini-card strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-mini-card em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  z-index: 4;
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  background: rgba(255, 255, 255, 0.76);
  color: var(--deep-rose);
}

.hero-prev,
.hero-next {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 28px;
  background: var(--rose);
}

.quick-categories {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -34px;
}

.quick-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  border-radius: 22px;
  color: var(--deep-rose);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 32px rgba(244, 114, 182, 0.18);
  font-weight: 800;
}

.quick-categories em {
  color: #9f1239;
  font-style: normal;
  opacity: 0.8;
}

.section-block {
  position: relative;
  z-index: 2;
  padding: 72px 0;
}

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

.section-heading h2,
.sub-hero h1,
.cta-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-heading p,
.sub-hero p,
.cta-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-link {
  flex: 0 0 auto;
  padding: 11px 18px;
  color: var(--deep-rose);
  background: rgba(255, 255, 255, 0.62);
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 14px 32px rgba(244, 114, 182, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe4e9, #fff4e6);
}

.featured-card .movie-cover {
  aspect-ratio: 16 / 11;
}

.movie-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.movie-cover-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.08));
  transition: opacity 0.25s ease;
}

.movie-card:hover .movie-cover-layer {
  opacity: 1;
}

.play-circle {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  color: var(--rose);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 25px;
}

.category-chip,
.duration-chip {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.category-chip {
  top: 12px;
  left: 12px;
  padding: 7px 11px;
  background: rgba(244, 63, 127, 0.88);
}

.duration-chip {
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.62);
}

.movie-info {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.movie-info h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.featured-card .movie-info h3 {
  font-size: 20px;
}

.movie-card:hover .movie-info h3 {
  color: var(--rose);
}

.movie-info p {
  display: -webkit-box;
  min-height: 42px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

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

.tag-row span {
  padding: 4px 9px;
  font-size: 12px;
}

.ranking-strip,
.soft-band {
  position: relative;
  z-index: 2;
  padding: 72px 0;
  background: linear-gradient(90deg, rgba(255, 241, 242, 0.68), rgba(253, 242, 248, 0.82));
}

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

.rank-item {
  display: grid;
  grid-template-columns: 46px 100px 1fr;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
  transform: translateX(5px);
  box-shadow: 0 16px 30px rgba(244, 114, 182, 0.18);
}

.rank-index {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), #fb7185);
  font-weight: 900;
}

.rank-item img {
  width: 100px;
  height: 66px;
  border-radius: 16px;
  object-fit: cover;
}

.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: 16px;
}

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

.cta-card {
  margin-top: 34px;
  margin-bottom: 72px;
  padding: 54px 28px;
  border-radius: 32px;
  text-align: center;
}

.sub-hero {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  padding: 44px;
  border-radius: 32px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--deep-rose);
  font-size: 14px;
  font-weight: 700;
}

.category-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 44px 0 72px;
}

.category-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px;
  border-radius: 28px;
}

.category-cover {
  overflow: hidden;
  border-radius: 22px;
}

.category-cover img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card:hover .category-cover img {
  transform: scale(1.08);
}

.category-card h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-count {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--deep-rose);
  background: rgba(252, 231, 243, 0.9);
  font-weight: 800;
}

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

.category-samples a {
  color: #be185d;
  font-size: 13px;
  font-weight: 700;
}

.filter-panel {
  display: grid;
  grid-template-columns: auto 1fr 160px 160px;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 24px;
}

.filter-panel strong {
  color: var(--deep-rose);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  padding: 12px 14px;
}

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

.detail-layout {
  padding: 34px 0 0;
}

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

.detail-main,
.detail-side {
  display: grid;
  align-content: start;
  gap: 22px;
}

.player-card,
.detail-info,
.content-card,
.side-poster,
.side-rank,
.mini-rank {
  border-radius: 28px;
}

.player-card {
  overflow: hidden;
}

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--rose);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  font-size: 36px;
}

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

.detail-info,
.content-card,
.side-poster,
.side-rank,
.mini-rank {
  padding: 24px;
}

.detail-info h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
}

.lead {
  margin: 14px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #9f1239;
  background: rgba(255, 241, 242, 0.9);
  font-weight: 800;
}

.content-card h2,
.side-rank h2,
.mini-rank h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 22px;
}

.content-card p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.9;
  white-space: pre-line;
}

.side-poster img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  object-fit: cover;
}

.side-poster strong,
.side-poster span {
  display: block;
}

.side-poster strong {
  margin-top: 14px;
  font-size: 20px;
}

.side-poster span {
  margin-top: 6px;
  color: var(--muted);
}

.side-rank .rank-item {
  grid-template-columns: 38px 76px 1fr;
  padding: 10px;
  border-radius: 18px;
  box-shadow: none;
}

.side-rank .rank-index {
  width: 38px;
  height: 38px;
}

.side-rank .rank-item img {
  width: 76px;
  height: 52px;
  border-radius: 12px;
}

.large-search {
  margin-top: 24px;
  max-width: 720px;
}

.large-search input {
  flex: 1;
  padding: 15px 18px;
}

.search-results-section {
  min-height: 420px;
}

.mini-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 72px 0;
}

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

.mini-rank a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #4b5563;
  font-weight: 700;
}

.mini-rank span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-rank em {
  flex: 0 0 auto;
  color: var(--deep-rose);
  font-style: normal;
}

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  border-width: 1px 0 0;
  border-color: rgba(244, 114, 182, 0.18);
}

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

.footer-logo {
  font-size: 20px;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.site-footer p,
.site-footer li,
.footer-bottom {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 30px;
  border-top: 1px solid var(--line);
  text-align: center;
}

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

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-side {
    display: none;
  }

  .quick-categories,
  .movie-grid,
  .featured-grid,
  .mini-rank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .logo {
    font-size: 19px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

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

  .hero-content {
    padding-top: 22px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .soft-button {
    width: 100%;
  }

  .quick-categories,
  .movie-grid,
  .featured-grid,
  .rank-grid,
  .mini-rank-grid,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .quick-categories {
    margin-top: 18px;
  }

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

  .sub-hero {
    padding: 28px 22px;
  }

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

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

  .rank-item {
    grid-template-columns: 42px 82px 1fr;
  }

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