* {
  box-sizing: border-box;
}

:root {
  --emerald-950: #022c22;
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-100: #d1fae5;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--gray-800);
  background: var(--stone-50);
}

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

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

button,
input,
select {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--emerald-800), var(--teal-700));
  box-shadow: 0 12px 30px rgba(4, 120, 87, 0.25);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--emerald-800);
  background: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.brand-name {
  font-size: 20px;
  white-space: nowrap;
}

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

.desktop-nav a,
.mobile-panel nav a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-panel nav a:hover,
.mobile-panel nav a.active {
  color: var(--white);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.header-search input,
.mobile-search input {
  width: 220px;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  padding: 8px 12px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-search button,
.mobile-search button,
.big-search button,
.filter-bar button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  color: var(--emerald-800);
  background: var(--white);
  padding: 8px 16px;
  font-weight: 800;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}

.mobile-panel {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-panel nav,
.mobile-categories {
  display: grid;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.mobile-categories a {
  color: var(--white);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
}

.mobile-search {
  display: flex;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  padding: 6px;
}

.mobile-search input {
  flex: 1;
  width: auto;
}

.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: #000;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 900ms ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 76px;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  color: var(--white);
}

.hero-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--emerald-100);
  background: rgba(5, 150, 105, 0.45);
  backdrop-filter: blur(8px);
  font-weight: 700;
}

.hero h1 {
  max-width: 820px;
  margin: 18px 0 12px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.hero p {
  max-width: 780px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-list span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--emerald-100);
  background: rgba(255, 255, 255, 0.14);
}

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

.primary-button,
.ghost-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: var(--emerald-600);
  box-shadow: 0 18px 28px rgba(5, 150, 105, 0.28);
}

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

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

.ghost-button.light {
  color: var(--emerald-800);
  border-color: rgba(5, 150, 105, 0.35);
  background: var(--white);
}

.primary-button.full {
  width: 100%;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.search-band,
.content-section,
.split-section,
.filter-bar,
.detail-wrap,
.article-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.search-band {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 28px;
  align-items: center;
  margin-top: -34px;
  position: relative;
  z-index: 2;
  padding: 28px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald-800), var(--teal-600));
  box-shadow: var(--shadow-soft);
}

.search-band h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 38px);
}

.search-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.big-search {
  display: flex;
  gap: 10px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.big-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 12px 16px;
  color: var(--white);
  background: transparent;
}

.big-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

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

.content-section.no-top-padding {
  padding-top: 24px;
}

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

.section-heading h2 {
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--gray-800);
  font-size: clamp(26px, 3vw, 38px);
}

.section-heading h2::before {
  content: "";
  width: 8px;
  height: 32px;
  border-radius: 999px;
  background: var(--emerald-600);
}

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

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

.category-tile {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.10));
}

.category-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.category-tile span,
.category-tile em {
  position: absolute;
  left: 18px;
}

.category-tile span {
  bottom: 48px;
  font-size: 22px;
  font-weight: 850;
}

.category-tile em {
  bottom: 20px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
}

.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--slate-900);
}

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

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

.year-badge,
.type-badge,
.rank-badge {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.68);
}

.year-badge {
  top: 10px;
  right: 10px;
}

.type-badge {
  left: 10px;
  bottom: 10px;
  background: rgba(5, 150, 105, 0.88);
}

.rank-badge {
  left: 10px;
  top: 10px;
  background: rgba(234, 88, 12, 0.92);
}

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

.movie-card h3,
.horizontal-item h3,
.detail-card h1,
.article-card h2 {
  margin: 0;
  color: var(--gray-800);
}

.movie-card h3 {
  min-height: 42px;
  font-size: 15px;
  line-height: 1.4;
}

.movie-card p {
  margin: 8px 0 12px;
  min-height: 40px;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.55;
}

.line-clamp-1,
.line-clamp-2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.line-clamp-1 {
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
}

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

.movie-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--stone-100);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 28px 0 56px;
}

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

.horizontal-item {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.horizontal-item a {
  display: grid;
  grid-template-columns: 56px 148px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.horizontal-rank strong {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--emerald-600);
}

.horizontal-item img {
  width: 148px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  object-fit: cover;
}

.horizontal-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.horizontal-item p {
  margin: 0 0 10px;
  color: var(--gray-600);
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.section-link {
  margin-top: 18px;
  color: var(--emerald-800);
  background: var(--emerald-100);
}

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

.page-hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald-800), var(--teal-700));
}

.page-hero > div {
  width: min(1240px, calc(100% - 32px));
  min-height: 220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}

.page-hero.compact > div {
  min-height: 180px;
}

.page-hero p {
  margin: 0 0 10px;
  color: var(--emerald-100);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 56px);
}

.page-hero span {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.filter-bar input,
.filter-bar select {
  min-height: 44px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  outline: 0;
  padding: 0 16px;
  color: var(--gray-700);
  background: var(--white);
}

.filter-bar input {
  flex: 1 1 320px;
}

.filter-bar select {
  flex: 0 1 170px;
}

.result-count {
  margin-left: auto;
  color: var(--emerald-800);
  font-weight: 850;
}

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

.category-overview-card,
.article-card,
.detail-card,
.player-card,
.side-card {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.category-overview-card {
  padding: 24px;
}

.category-overview-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

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

.category-overview-head p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.65;
}

.category-overview-head a {
  flex: 0 0 auto;
  color: var(--white);
  border-radius: 999px;
  background: var(--emerald-600);
  padding: 9px 14px;
  font-weight: 800;
}

.category-count {
  margin: 18px 0;
  color: var(--emerald-700);
  font-weight: 850;
}

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

.small-card-grid.one-column {
  grid-template-columns: 1fr;
}

.small-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: var(--stone-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

.small-card:hover {
  background: var(--emerald-100);
  transform: translateX(2px);
}

.small-card img {
  width: 82px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
}

.small-card span {
  color: var(--gray-800);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.detail-wrap {
  padding: 28px 0 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--gray-600);
  font-size: 14px;
}

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

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

.detail-main {
  display: grid;
  gap: 22px;
}

.player-card {
  padding: 12px;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  aspect-ratio: 16 / 9;
}

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

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--emerald-600);
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.player-start span {
  display: inline-block;
  margin-left: 6px;
  font-size: 40px;
  line-height: 1;
}

.player-start:hover {
  background: var(--emerald-700);
  transform: translate(-50%, -50%) scale(1.06);
}

.player-box.is-playing .player-start {
  opacity: 0;
  pointer-events: none;
}

.detail-card {
  padding: 28px;
}

.detail-card h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}

.detail-card .one-line {
  margin: 14px 0 22px;
  color: var(--emerald-700);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid #e5e7eb;
}

.info-grid div {
  padding: 14px;
  border-radius: 14px;
  background: var(--stone-50);
}

.info-grid span {
  display: block;
  margin-bottom: 5px;
  color: var(--gray-500);
  font-size: 12px;
}

.info-grid strong {
  color: var(--gray-800);
}

.info-grid a {
  color: var(--emerald-700);
}

.detail-card h2,
.side-card h2 {
  margin: 28px 0 12px;
  color: var(--gray-800);
  font-size: 22px;
}

.detail-card p {
  color: var(--gray-700);
  line-height: 1.9;
}

.tag-list span {
  color: var(--emerald-700);
  background: var(--emerald-100);
}

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

.side-card {
  padding: 22px;
}

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

.article-section {
  padding: 46px 0 70px;
}

.article-card {
  padding: 34px;
}

.article-card h2 {
  margin-top: 26px;
  font-size: 26px;
}

.article-card h2:first-child {
  margin-top: 0;
}

.article-card p {
  color: var(--gray-700);
  line-height: 1.9;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
}

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

.footer-brand {
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  line-height: 1.8;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 10px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px 16px;
}

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

  .mobile-toggle {
    display: block;
  }

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

  .split-section,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .hero {
    height: 560px;
  }

  .hero-content {
    bottom: 68px;
  }

  .hero-arrow {
    display: none;
  }

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

  .big-search {
    border-radius: 18px;
    flex-direction: column;
  }

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

  .horizontal-item a {
    grid-template-columns: 42px 110px 1fr;
  }

  .horizontal-item img {
    width: 110px;
  }

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

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

@media (max-width: 560px) {
  .nav-shell {
    width: min(100% - 22px, 1240px);
  }

  .brand-name {
    font-size: 17px;
  }

  .hero {
    height: 620px;
  }

  .hero-tags {
    display: none;
  }

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

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

  .category-grid,
  .movie-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .horizontal-item a {
    grid-template-columns: 1fr;
  }

  .horizontal-rank strong {
    width: 36px;
    height: 36px;
  }

  .horizontal-item img {
    width: 100%;
  }

  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-bar input,
  .filter-bar select,
  .result-count {
    width: 100%;
    margin-left: 0;
  }

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

  .detail-card,
  .side-card,
  .category-overview-card,
  .article-card {
    padding: 20px;
  }
}
