:root {
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --purple-300: #c4b5fd;
  --purple-500: #8b5cf6;
  --yellow-400: #facc15;
  --red-500: #ef4444;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 65px rgba(15, 23, 42, 0.18);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-2xl: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--gray-800);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, var(--pink-50), var(--white) 48%, var(--blue-50));
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink-400), var(--blue-400));
  box-shadow: 0 10px 28px rgba(236, 72, 153, 0.32);
}

.logo-text {
  background: linear-gradient(90deg, var(--pink-400), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--gray-700);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--pink-500);
  transform: translateY(-1px);
}

.nav-search {
  display: flex;
  align-items: center;
  width: min(280px, 28vw);
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  border-radius: 999px;
  background: var(--white);
}

.nav-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 11px 14px;
  color: var(--gray-700);
  background: transparent;
}

.nav-search button {
  border: 0;
  padding: 11px 16px;
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-400), var(--blue-400));
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--gray-700);
  background: var(--gray-100);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

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

.mobile-panel a {
  display: block;
  padding: 13px 0;
  color: var(--gray-700);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(100deg, var(--pink-300), var(--purple-300), var(--blue-300));
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 80px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
}

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

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

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.1) blur(1px);
}

.hero-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 25%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.48), rgba(236, 72, 153, 0.16), rgba(59, 130, 246, 0.22));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 46px;
  align-items: center;
  min-height: 520px;
  padding: 56px 0 86px;
  color: var(--white);
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.14);
  backdrop-filter: blur(12px);
}

.hero h1,
.hero h2 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.hero h1 span,
.hero h2 span {
  color: #fff7fb;
  text-shadow: 0 16px 40px rgba(17, 24, 39, 0.22);
}

.hero-summary {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--gray-800);
  font-weight: 850;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-400), var(--blue-400));
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.hero-search {
  display: flex;
  max-width: 560px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 15px 20px;
  color: var(--gray-700);
  background: transparent;
}

.hero-search button {
  border: 0;
  padding: 15px 24px;
  color: var(--white);
  font-weight: 850;
  background: linear-gradient(90deg, var(--pink-400), var(--blue-400));
}

.hero-poster-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
}

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

.hero-poster-info {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  border-radius: 20px;
  color: var(--white);
  background: rgba(17, 24, 39, 0.48);
  backdrop-filter: blur(14px);
}

.hero-dots {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 34px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

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

.hero-dot.is-active {
  width: 64px;
  background: var(--white);
}

.section {
  padding: 66px 0;
}

.section-tight {
  padding: 40px 0;
}

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

.section-title {
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-desc {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--gray-600);
  line-height: 1.8;
}

.view-link {
  color: var(--pink-500);
  font-weight: 850;
}

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

.category-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--pink-100), var(--blue-100));
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:nth-child(3n + 2) {
  background: linear-gradient(135deg, var(--blue-100), #ede9fe);
}

.category-card:nth-child(3n) {
  background: linear-gradient(135deg, #ede9fe, var(--pink-100));
}

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

.category-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pink-400), var(--blue-400));
}

.category-card h2,
.category-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
}

.category-card p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.75;
}

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

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

.movie-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--pink-100), var(--blue-100));
}

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

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

.poster-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  background: rgba(236, 72, 153, 0.88);
  backdrop-filter: blur(8px);
}

.poster-rank {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  font-weight: 950;
  background: linear-gradient(135deg, var(--red-500), var(--yellow-400));
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.25);
}

.movie-info {
  padding: 14px;
}

.movie-title {
  display: -webkit-box;
  min-height: 43px;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--gray-800);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--gray-500);
  font-size: 12px;
}

.movie-line {
  display: -webkit-box;
  min-height: 40px;
  margin: 0;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 5px 9px;
  overflow: hidden;
  border-radius: 999px;
  color: var(--pink-500);
  font-size: 12px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: var(--pink-50);
}

.page-hero {
  padding: 62px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 10%, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(110deg, var(--pink-300), var(--purple-300), var(--blue-300));
}

.page-hero h1 {
  max-width: 880px;
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.85;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 160px;
  gap: 12px;
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  outline: 0;
  padding: 13px 14px;
  color: var(--gray-700);
  background: var(--white);
}

.filter-empty {
  display: none;
  padding: 44px;
  border-radius: var(--radius-xl);
  color: var(--gray-600);
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.filter-empty.is-visible {
  display: block;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 74px 112px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.rank-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  font-size: 20px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--pink-400), var(--blue-400));
}

.ranking-cover {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--pink-100), var(--blue-100));
}

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

.ranking-info h2,
.ranking-info h3 {
  margin: 0 0 8px;
  color: var(--gray-800);
  font-size: 21px;
  font-weight: 950;
}

.ranking-info p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.75;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--gray-500);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--pink-500);
}

.detail-card,
.sidebar-card {
  border-radius: var(--radius-2xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.detail-card {
  overflow: hidden;
}

.player {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  background: var(--gray-900);
}

.player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--gray-900);
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.45), rgba(236, 72, 153, 0.22));
}

.player.is-ready .player-cover {
  display: none;
}

.play-button {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-400), var(--blue-400));
  box-shadow: 0 20px 55px rgba(236, 72, 153, 0.36);
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: scale(1.06);
}

.player-message {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: none;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(17, 24, 39, 0.68);
  backdrop-filter: blur(12px);
}

.player-message.is-visible {
  display: block;
}

.detail-body {
  padding: 28px;
}

.detail-body h1 {
  margin: 0 0 16px;
  color: var(--gray-800);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 800;
  background: var(--gray-100);
}

.detail-section {
  margin-top: 28px;
}

.detail-section h2 {
  margin: 0 0 12px;
  color: var(--gray-800);
  font-size: 24px;
  font-weight: 950;
}

.detail-section p {
  margin: 0;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.95;
}

.sidebar-card {
  position: sticky;
  top: 92px;
  padding: 18px;
}

.sidebar-card h2 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 950;
}

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

.related-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.related-item:hover {
  background: var(--gray-50);
}

.related-cover {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--pink-100), var(--blue-100));
}

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

.related-info h3 {
  margin: 0 0 6px;
  overflow: hidden;
  color: var(--gray-800);
  font-size: 15px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-info p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--gray-500);
  font-size: 12px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-page {
  padding: 32px;
  border-radius: var(--radius-2xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.text-page h2 {
  margin: 26px 0 12px;
  font-size: 24px;
  font-weight: 950;
}

.text-page h2:first-child {
  margin-top: 0;
}

.text-page p {
  color: var(--gray-600);
  line-height: 1.9;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--gray-200);
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
}

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

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 900;
}

.footer-grid p,
.footer-grid li {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.85;
}

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

.footer-grid a:hover {
  color: var(--pink-500);
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-500);
  text-align: center;
}

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

  .hero-content {
    grid-template-columns: 1fr 300px;
  }

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

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

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

  .sidebar-card {
    position: static;
  }
}

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

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-poster-card {
    display: none;
  }

  .hero-search {
    border-radius: 22px;
  }

  .hero-search button {
    padding-inline: 18px;
  }

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

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

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

  .ranking-item {
    grid-template-columns: 48px 86px minmax(0, 1fr);
  }

  .ranking-item .btn {
    grid-column: 2 / -1;
    width: fit-content;
  }

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

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

  .logo {
    font-size: 20px;
  }

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

  .hero h1,
  .hero h2 {
    font-size: 42px;
  }

  .hero-summary {
    font-size: 16px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

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

  .hero-search button {
    width: 100%;
  }

  .section {
    padding: 46px 0;
  }

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

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

  .movie-info {
    padding: 12px;
  }

  .movie-title {
    font-size: 14px;
  }

  .movie-line {
    display: none;
  }

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

  .ranking-item {
    grid-template-columns: 42px 74px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .rank-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-radius: 14px;
  }

  .detail-body,
  .text-page {
    padding: 20px;
  }

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