:root {
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --orange-500: #f97316;
  --orange-50: #fff7ed;
  --gray-950: #111827;
  --gray-900: #1f2937;
  --gray-800: #374151;
  --gray-700: #4b5563;
  --gray-600: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--gray-900);
  background: linear-gradient(180deg, #fff7ed 0, #f3f4f6 360px, #f3f4f6 100%);
}

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

img {
  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: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-600), var(--orange-500));
  box-shadow: 0 10px 28px rgba(180, 83, 9, 0.24);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: var(--amber-600);
  background: var(--white);
  box-shadow: inset 0 0 0 2px rgba(245, 158, 11, 0.2);
}

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

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

.nav-link {
  position: relative;
  font-weight: 600;
  opacity: 0.92;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fffbeb;
  opacity: 1;
}

.nav-link.active::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: #fffbeb;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--white);
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
}

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

.mobile-link {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-link.active {
  background: rgba(255, 255, 255, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 48px;
  color: var(--white);
  background: radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.28), transparent 34%), linear-gradient(135deg, #92400e 0%, #d97706 40%, #f97316 100%);
}

.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.is-active {
  opacity: 1;
  pointer-events: auto;
}

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

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

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.45), rgba(180, 83, 9, 0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 50px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 72px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fffbeb;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.eyebrow.dark {
  color: var(--amber-700);
  background: #ffedd5;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.hero p {
  max-width: 680px;
  margin: 0;
  font-size: 19px;
  line-height: 1.85;
  color: #fef3c7;
}

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

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

.primary-btn {
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.34);
}

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

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

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
}

.hero-controls {
  position: absolute;
  right: 0;
  bottom: 108px;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

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

.hero-search-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: -66px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.hero-search {
  display: flex;
  overflow: hidden;
  border: 1px solid #fed7aa;
  border-radius: 18px;
  background: var(--white);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
  border: 0;
  outline: 0;
}

.hero-search button {
  padding: 0 26px;
  border: 0;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-500));
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-links a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--amber-700);
  font-weight: 800;
  background: #ffedd5;
}

.content-section {
  margin: 56px auto;
}

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

.section-head h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
}

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

.section-more {
  flex: none;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--amber-700);
  font-weight: 800;
  background: #ffedd5;
}

.soft-panel {
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(135deg, #fff7ed, #fff);
  box-shadow: var(--shadow-md);
}

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

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

.compact-grid,
.page-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.movie-card.featured .poster-link {
  aspect-ratio: 4 / 3;
}

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

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

.play-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
}

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

.movie-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.movie-badges span {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--amber-700);
  font-size: 12px;
  font-weight: 800;
  background: #ffedd5;
}

.movie-card h3 {
  margin: 0;
  color: var(--gray-900);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.movie-card p {
  display: -webkit-box;
  min-height: 44px;
  margin: 8px 0 12px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--gray-600);
  font-size: 13px;
}

.card-meta a {
  color: var(--amber-700);
  font-weight: 800;
}

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

.category-tile {
  position: relative;
  display: grid;
  min-height: 220px;
  overflow: hidden;
  align-content: end;
  padding: 18px;
  border-radius: 24px;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.82));
}

.category-name,
.category-desc {
  position: relative;
  z-index: 1;
}

.category-name {
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 900;
}

.category-desc {
  color: #fef3c7;
  font-size: 13px;
  line-height: 1.5;
}

.rank-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 28px;
  padding: 34px;
  border-radius: 34px;
  color: var(--white);
  background: linear-gradient(135deg, #78350f, #d97706 55%, #f97316);
  box-shadow: var(--shadow-lg);
}

.rank-panel-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
  font-weight: 900;
}

.rank-panel-copy p {
  max-width: 620px;
  margin: 0 0 26px;
  color: #fef3c7;
  line-height: 1.8;
}

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

.rank-mini-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 62px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: var(--amber-700);
  font-weight: 900;
  background: var(--white);
}

.rank-title {
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-heat {
  text-align: right;
  color: #fef3c7;
  font-weight: 900;
}

.page-main,
.detail-main {
  padding-bottom: 60px;
}

.page-hero {
  margin-top: 34px;
  margin-bottom: 28px;
  padding: 38px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
  font-weight: 900;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--gray-600);
  line-height: 1.8;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 12px;
  margin-top: 24px;
}

.filter-bar.extended {
  grid-template-columns: minmax(0, 1fr) 180px 190px;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid #fed7aa;
  border-radius: 15px;
  outline: 0;
  background: var(--white);
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

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

.category-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.category-card-cover {
  overflow: hidden;
  min-height: 220px;
  background: #fed7aa;
}

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

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

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

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

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

.category-links a {
  color: var(--amber-700);
  font-weight: 700;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 86px 52px minmax(0, 1fr) 92px;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.rank-row-cover {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  background: #fed7aa;
}

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

.rank-row-index {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-500));
}

.rank-row-main h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.rank-row-main p {
  margin: 0 0 10px;
  color: var(--gray-600);
  line-height: 1.65;
}

.rank-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rank-row-tags a,
.rank-row-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--amber-700);
  font-size: 12px;
  font-weight: 800;
  background: #ffedd5;
}

.rank-score {
  display: grid;
  justify-items: center;
  color: var(--amber-700);
}

.rank-score strong {
  font-size: 25px;
  line-height: 1;
}

.rank-score span {
  margin-top: 6px;
  color: var(--gray-600);
  font-size: 12px;
}

.empty-state {
  display: none;
  width: min(520px, calc(100% - 32px));
  margin: 36px auto;
  padding: 28px;
  border-radius: 22px;
  color: var(--gray-600);
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.empty-state.show {
  display: block;
}

.player-section {
  padding: 28px 0 38px;
  color: var(--white);
  background: linear-gradient(135deg, #111827, #78350f);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #fef3c7;
  font-size: 14px;
}

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

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000;
  box-shadow: var(--shadow-lg);
}

.player-box video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 12px;
  place-items: center;
  align-content: center;
  border: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72));
}

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

.play-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: var(--amber-600);
  font-size: 32px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  margin-top: 30px;
}

.detail-card,
.side-card {
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.detail-card {
  padding: 26px;
}

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

.detail-cover {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #fed7aa;
}

.detail-info h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.12;
  font-weight: 900;
}

.detail-one-line {
  margin: 0 0 18px;
  color: var(--gray-700);
  font-size: 18px;
  line-height: 1.75;
}

.detail-meta,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-meta span,
.tag-list span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 800;
  background: #ffedd5;
}

.tag-list {
  margin-top: 14px;
}

.detail-text {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.detail-text h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 900;
}

.detail-text p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.9;
}

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

.side-card {
  padding: 22px;
}

.side-card.accent {
  display: grid;
  gap: 10px;
  background: linear-gradient(135deg, #fff7ed, #fff);
}

.side-card.accent a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--amber-700);
  font-weight: 900;
  background: #ffedd5;
}

.side-links {
  display: grid;
  gap: 10px;
}

.side-links a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.side-links span {
  font-weight: 800;
}

.side-links em {
  color: var(--gray-600);
  font-style: normal;
}

.site-footer {
  margin-top: 64px;
  color: var(--white);
  background: var(--gray-950);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
}

.footer-inner p {
  margin: 6px 0 0;
  color: #d1d5db;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: #fef3c7;
  font-weight: 700;
}

.copyright {
  font-size: 14px;
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 40;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-500));
  box-shadow: var(--shadow-md);
}

.back-top.show {
  display: block;
}

[data-card].is-hidden {
  display: none;
}

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

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

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

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

  .menu-toggle {
    display: block;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 46px;
  }

  .hero-poster {
    width: min(260px, 80vw);
  }

  .hero-search-panel,
  .filter-bar,
  .filter-bar.extended,
  .rank-panel,
  .category-card,
  .detail-top,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-search-panel {
    margin-top: -30px;
  }

  .rank-row {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .rank-row-index,
  .rank-score {
    display: none;
  }
}

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

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

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

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

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

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

  .movie-card h3 {
    font-size: 15px;
  }

  .movie-card p {
    font-size: 13px;
  }

  .page-hero,
  .detail-card,
  .rank-panel,
  .soft-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .category-tile {
    min-height: 180px;
  }

  .hero-search {
    display: grid;
  }

  .hero-search button {
    min-height: 46px;
  }
}
