:root {
  --pink: #ec4899;
  --rose: #f43f5e;
  --soft-pink: #fdf2f8;
  --pale-pink: #fff1f2;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --white: #ffffff;
  --dark: #111827;
  --shadow: 0 18px 45px rgba(244, 63, 94, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fff7fb 0%, #ffffff 42%, #fff7fb 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, #fce7f3, #ffe4e6);
}

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.95);
  border-bottom: 1px solid rgba(236, 72, 153, 0.12);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  border-radius: 999px;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(236, 72, 153, 0.28);
  transition: transform 0.25s ease;
}

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

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-title {
  font-size: 25px;
  font-weight: 850;
  color: transparent;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link {
  color: #374151;
  font-weight: 700;
  transition: color 0.2s ease;
}

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

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

.header-search input,
.mobile-search input,
.filter-input,
.filter-year {
  border: 1px solid #f3c4d8;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 220px;
  padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-input:focus,
.filter-year:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--text);
}

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

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

.mobile-search {
  margin-bottom: 12px;
}

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

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

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

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

.hero-section {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(135deg, #fce7f3 0%, #ffffff 48%, #fff1f2 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(236, 72, 153, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 63, 94, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-section::after {
  position: absolute;
  right: -12%;
  bottom: -20%;
  width: 52%;
  height: 85%;
  content: "";
  background: radial-gradient(circle, rgba(244, 63, 94, 0.22), transparent 65%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 50px;
  min-height: 620px;
  padding: 50px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--pink);
  background: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.12);
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-lead,
.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #4b5563;
  font-size: 20px;
}

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

.primary-button,
.ghost-button,
.text-button {
  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 {
  min-height: 48px;
  padding: 12px 24px;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  box-shadow: 0 16px 34px rgba(236, 72, 153, 0.24);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  min-height: 48px;
  padding: 12px 22px;
  color: var(--pink);
  background: #fff;
  border: 1px solid rgba(236, 72, 153, 0.18);
}

.text-button {
  color: var(--pink);
  font-size: 14px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-chips a,
.movie-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--pink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(236, 72, 153, 0.12);
}

.hero-chips a {
  padding: 8px 14px;
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 28px;
  background: #111827;
  box-shadow: 0 24px 60px rgba(31, 41, 55, 0.22);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

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

.hero-slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.88));
}

.hero-slide-copy {
  position: absolute;
  right: 26px;
  bottom: 28px;
  left: 26px;
  color: #fff;
}

.hero-slide-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--pink);
  font-size: 13px;
  font-weight: 800;
}

.hero-slide-copy h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
}

.hero-slide-copy p {
  display: -webkit-box;
  margin: 0 0 16px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-slide-copy a {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  font-size: 14px;
  font-weight: 800;
}

.hero-dots {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
}

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

.content-section {
  padding: 72px 0;
}

.white-section {
  background: #fff;
}

.soft-section {
  background: linear-gradient(180deg, #fff, #fff1f2);
}

.pink-section {
  background: #fdf2f8;
}

.gradient-section {
  background: linear-gradient(135deg, #fce7f3, #fff, #fff1f2);
}

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

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-link {
  min-width: max-content;
  color: var(--pink);
  font-weight: 800;
}

.card-grid {
  display: grid;
  gap: 26px;
}

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

.movie-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(236, 72, 153, 0.1);
  border-radius: 24px;
  background: linear-gradient(135deg, #fdf2f8, #fff);
  box-shadow: 0 12px 34px rgba(31, 41, 55, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover,
.poster-card:hover,
.rank-card:hover,
.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.movie-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.movie-image img,
.poster-image img,
.rank-thumb img,
.category-tile img,
.category-cover img,
.editor-feature img,
.detail-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover img,
.poster-card:hover img,
.rank-card:hover img,
.category-tile:hover img,
.category-overview-card:hover img,
.editor-feature:hover img {
  transform: scale(1.08);
}

.movie-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.movie-title {
  display: -webkit-box;
  min-height: 30px;
  overflow: hidden;
  color: var(--text);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.35;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.movie-desc {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.movie-tags span,
.detail-tags span {
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
}

.movie-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #9ca3af;
  font-size: 13px;
}

.movie-type {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  font-size: 12px;
  font-weight: 800;
}

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

.wide-rank-grid {
  gap: 16px;
}

.rank-card {
  display: grid;
  grid-template-columns: 50px 120px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  font-size: 20px;
  font-weight: 900;
}

.rank-thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
}

.rank-info {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.rank-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text);
}

.rank-info em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-info small,
.poster-meta {
  color: #9ca3af;
}

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

.poster-card {
  display: grid;
  gap: 9px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-image {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.1);
}

.poster-title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text);
  font-weight: 800;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.poster-card:hover .poster-title,
.movie-card:hover .movie-title,
.rank-card:hover strong {
  color: var(--pink);
}

.editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: 26px;
}

.editor-feature {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.editor-feature img,
.editor-shade {
  position: absolute;
  inset: 0;
}

.editor-shade {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.82));
}

.editor-copy {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  gap: 10px;
  color: #fff;
}

.editor-copy strong {
  font-size: 34px;
  line-height: 1.15;
}

.editor-copy em {
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
}

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

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

.category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
  box-shadow: 0 14px 30px rgba(31, 41, 55, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.8));
}

.category-tile img {
  position: absolute;
  inset: 0;
}

.category-tile span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: #fff;
}

.category-tile strong {
  font-size: 24px;
}

.category-tile em {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fce7f3, #fff, #fff1f2);
}

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

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

.breadcrumb a {
  color: var(--pink);
  font-weight: 700;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(236, 72, 153, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-cover {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
}

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

.category-overview-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

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

.category-samples a {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--pink);
  background: var(--soft-pink);
  font-size: 12px;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 24px;
  background: var(--soft-pink);
}

.filter-input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
}

.filter-year {
  width: 160px;
  padding: 12px 16px;
}

.movie-filter-item.hidden {
  display: none;
}

.detail-hero {
  padding: 42px 0 60px;
  background: linear-gradient(180deg, #fff7fb, #fff);
}

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

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000;
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.26);
  aspect-ratio: 16 / 9;
}

.video-shell video {
  width: 100%;
  height: 100%;
  background: #000;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}

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

.player-cover img,
.player-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-shade {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.82));
}

.play-button {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  box-shadow: 0 20px 42px rgba(236, 72, 153, 0.35);
  font-size: 34px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

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

.detail-content {
  margin-top: 24px;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 41, 55, 0.08);
}

.detail-content h1 {
  margin: 22px 0 12px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.15;
}

.detail-one-line {
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 20px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.detail-content section {
  margin-top: 24px;
}

.detail-content h2,
.detail-meta-card h2,
.site-footer h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-content p {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
}

.detail-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.detail-poster {
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.detail-meta-card {
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 41, 55, 0.08);
}

.detail-meta-card dl {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.detail-meta-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.detail-meta-card dt {
  color: var(--muted);
}

.detail-meta-card dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.full-button {
  width: 100%;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
  padding: 48px 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 850;
}

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

.site-footer h2 {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.2s ease;
}

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

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

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

  .mobile-toggle {
    display: flex;
  }

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

  .hero-carousel {
    height: 460px;
  }

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

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

  .detail-side {
    position: static;
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

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

  .header-inner {
    min-height: 70px;
  }

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

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

  .hero-section,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    gap: 30px;
    padding: 42px 0;
  }

  .hero-carousel {
    height: 420px;
    border-radius: 22px;
  }

  .hero-actions,
  .section-heading,
  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

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

  .content-section {
    padding: 48px 0;
  }

  .three-columns,
  .rank-grid,
  .poster-grid,
  .category-grid,
  .category-overview-grid,
  .editor-side {
    grid-template-columns: 1fr;
  }

  .rank-card {
    grid-template-columns: 44px 92px minmax(0, 1fr);
    gap: 12px;
  }

  .category-overview-card,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .filter-year {
    width: 100%;
  }

  .detail-content {
    padding: 20px;
  }

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

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