:root {
  color-scheme: light;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-md: 0 8px 24px rgba(120, 53, 15, 0.12);
  --shadow-lg: 0 20px 45px rgba(120, 53, 15, 0.16);
  --radius-xl: 18px;
  --radius-2xl: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--gray-900);
  background: linear-gradient(180deg, var(--amber-50), var(--orange-50));
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--amber-50), #fefce8, var(--orange-50));
  border-bottom: 1px solid var(--amber-200);
  box-shadow: 0 4px 18px rgba(120, 53, 15, 0.1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 8px 18px rgba(217, 119, 6, 0.28);
  font-size: 15px;
}

.brand-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--amber-700), var(--orange-600), var(--amber-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link,
.mobile-link {
  color: var(--amber-800);
  font-weight: 700;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 9px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--amber-900);
  background: rgba(253, 230, 138, 0.75);
}

.top-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 280px;
}

.top-search input,
.large-search input,
.filter-panel input {
  width: 100%;
  border: 1px solid var(--amber-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--gray-900);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-search input {
  padding: 9px 14px;
}

.top-search input:focus,
.large-search input:focus,
.filter-panel input:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
  background: #ffffff;
}

.top-search button,
.large-search button {
  border: 0;
  color: #ffffff;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 10px 18px rgba(217, 119, 6, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.top-search button {
  padding: 9px 16px;
  white-space: nowrap;
}

.top-search button:hover,
.large-search button:hover,
.primary-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 16px 26px rgba(217, 119, 6, 0.26);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--amber-800);
  background: var(--amber-100);
  cursor: pointer;
  font-size: 22px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 12px;
}

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

.mobile-link {
  padding: 10px 12px;
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(120, 53, 15, 0.92), rgba(124, 45, 18, 0.9));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 36px));
  color: var(--amber-100);
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--amber-200);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--amber-100);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
}

.hero-desc,
.page-hero p {
  margin: 22px auto 0;
  color: var(--amber-200);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.7;
  max-width: 760px;
}

.hero-feature {
  margin: 24px auto 0;
  padding: 16px 20px;
  max-width: 720px;
  border: 1px solid rgba(253, 230, 138, 0.25);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 235, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.hero-feature span,
.hero-feature em {
  display: block;
  color: var(--amber-200);
  font-style: normal;
}

.hero-feature strong {
  display: block;
  margin: 4px 0;
  color: #ffffff;
  font-size: 24px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

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

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 16px 32px rgba(217, 119, 6, 0.28);
}

.ghost-button {
  color: var(--amber-100);
  border: 1px solid rgba(254, 243, 199, 0.42);
  background: rgba(254, 243, 199, 0.12);
}

.ghost-button:hover {
  transform: translateY(-1px);
  background: rgba(254, 243, 199, 0.2);
}

.home-search-panel,
.section-wrap,
.detail-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.home-search-panel {
  margin-top: -36px;
  position: relative;
  z-index: 5;
  padding: 22px;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
}

.large-search {
  display: flex;
  gap: 12px;
}

.large-search input {
  min-height: 54px;
  padding: 0 20px;
  font-size: 16px;
}

.large-search button {
  min-width: 136px;
  padding: 0 24px;
}

.quick-tags,
.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.quick-tags a,
.hero-links a,
.pill,
.tag-row span,
.tag-row a,
.filter-hints span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.quick-tags a,
.hero-links a {
  padding: 8px 14px;
  color: var(--amber-800);
  background: var(--amber-100);
}

.quick-tags a:hover,
.hero-links a:hover {
  color: #ffffff;
  background: var(--amber-600);
}

.section-wrap {
  padding: 66px 0 0;
}

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

.compact-head {
  align-items: center;
}

.section-head h2 {
  margin: 0;
  color: var(--amber-900);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-head a {
  color: var(--amber-700);
  font-weight: 900;
}

.section-kicker {
  color: var(--amber-600);
  margin-bottom: 8px;
}

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

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

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

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

.movie-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.movie-card a {
  display: block;
  height: 100%;
}

.card-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), var(--orange-100));
}

.poster-card .card-cover {
  aspect-ratio: 3 / 4;
}

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

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

.card-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--amber-600);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 9px;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card:hover h3 {
  color: var(--amber-700);
}

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

.card-meta,
.card-foot,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.card-meta span,
.detail-meta span {
  color: var(--gray-600);
  font-size: 13px;
}

.card-foot {
  justify-content: space-between;
  margin-top: 14px;
  color: var(--gray-500);
  font-size: 13px;
}

.pill {
  padding: 5px 9px;
  color: var(--amber-800);
  background: var(--amber-100);
  font-size: 12px;
}

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

.category-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow-md);
  background: var(--amber-200);
}

.category-card a,
.category-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.category-card img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(20, 10, 0, 0.85), rgba(120, 53, 15, 0.52), rgba(120, 53, 15, 0.14));
}

.category-overlay h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 900;
}

.category-overlay p {
  margin: 0;
  color: var(--amber-100);
  line-height: 1.6;
}

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

.category-samples span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--amber-100);
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 30px;
  align-items: start;
}

.rank-panel,
.latest-panel,
.rank-page-list,
.side-card,
.detail-card,
.player-card,
.filter-panel,
.search-page-box {
  border-radius: var(--radius-2xl);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.rank-panel,
.latest-panel {
  padding: 24px;
}

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

.small-media {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.small-media:hover {
  background: var(--amber-50);
  transform: translateX(2px);
}

.rank-num {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

.small-thumb {
  position: relative;
  width: 110px;
  height: 70px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 13px;
  background: var(--amber-100);
}

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

.small-thumb em {
  position: absolute;
  right: 6px;
  bottom: 5px;
  padding: 2px 6px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.65);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.small-body {
  min-width: 0;
}

.small-body strong,
.small-body span {
  display: block;
}

.small-body strong {
  color: var(--gray-900);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.small-body span {
  margin-top: 5px;
  color: var(--gray-500);
  font-size: 12px;
}

.page-hero {
  padding: 76px 16px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber-700), var(--orange-700));
  text-align: center;
}

.page-hero-inner {
  width: min(960px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
  max-width: 760px;
}

.filter-panel,
.search-page-box {
  padding: 20px;
  margin-bottom: 28px;
}

.filter-panel input {
  min-height: 50px;
  padding: 0 18px;
}

.filter-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.filter-hints span {
  padding: 6px 10px;
  color: var(--amber-700);
  background: var(--amber-100);
  font-size: 12px;
}

.detail-wrap {
  padding: 32px 0 74px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--amber-800);
  font-weight: 800;
}

.breadcrumb span {
  color: var(--amber-500);
}

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

.player-card {
  overflow: hidden;
  margin-bottom: 22px;
  background: #000000;
}

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

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.62));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
  font-size: 34px;
  transition: transform 0.2s ease;
}

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

.player-message {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  max-width: calc(100% - 40px);
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  font-weight: 700;
  text-align: center;
}

.detail-card {
  padding: 26px;
  margin-bottom: 22px;
}

.detail-card h1 {
  margin: 0 0 15px;
  color: var(--gray-900);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
}

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

.side-card h2 {
  margin-top: 0;
}

.detail-card p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.85;
  font-size: 16px;
}

.detail-meta {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
}

.detail-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--gray-100);
  font-weight: 700;
}

.one-line {
  margin-bottom: 18px !important;
  color: var(--amber-800) !important;
  font-weight: 800;
}

.review-box {
  padding: 18px;
  border-left: 4px solid var(--amber-600);
  border-radius: 14px;
  background: var(--amber-50);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-row span,
.tag-row a {
  padding: 7px 13px;
  font-size: 13px;
}

.tag-row a {
  color: #ffffff;
  background: var(--amber-600);
}

.tag-row span {
  color: var(--gray-700);
  background: var(--gray-100);
}

.detail-side {
  position: sticky;
  top: 88px;
}

.side-card {
  padding: 22px;
}

.mobile-related {
  display: none;
}

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

.site-footer {
  margin-top: 72px;
  color: var(--amber-100);
  background: linear-gradient(180deg, var(--amber-900), #451a03);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 32px;
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 1.1fr;
  gap: 30px;
}

.footer-logo .brand-text {
  color: var(--amber-100);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.footer-brand p {
  margin: 16px 0 0;
  max-width: 420px;
  color: var(--amber-200);
  line-height: 1.8;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--amber-100);
  font-size: 18px;
}

.footer-column a {
  display: block;
  margin: 8px 0;
  color: var(--amber-200);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-tags {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-tags h2 {
  width: 100%;
}

.footer-tags a {
  margin: 0;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(253, 230, 138, 0.18);
  color: var(--amber-300);
  text-align: center;
  font-size: 14px;
}

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

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

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

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

  .detail-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-inner {
    width: calc(100% - 24px);
    gap: 12px;
  }

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

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .hero {
    height: 560px;
    text-align: left;
    justify-content: flex-start;
  }

  .hero-content {
    padding: 0 6px;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -0.04em;
  }

  .hero-actions,
  .quick-tags,
  .hero-links {
    justify-content: flex-start;
  }

  .home-search-panel,
  .section-wrap,
  .detail-wrap {
    width: calc(100% - 24px);
  }

  .home-search-panel {
    margin-top: 18px;
  }

  .large-search {
    flex-direction: column;
  }

  .large-search button {
    min-height: 50px;
  }

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

  .movie-grid,
  .feature-grid,
  .latest-grid,
  .category-grid,
  .rank-page-list {
    grid-template-columns: 1fr;
  }

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

  .category-card {
    min-height: 240px;
  }

  .small-thumb {
    width: 96px;
    height: 62px;
  }

  .breadcrumb {
    font-size: 14px;
  }

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

  .mobile-related {
    display: block;
  }

  .detail-side {
    display: none;
  }

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

@media (max-width: 430px) {
  .brand-icon {
    width: 30px;
    height: 30px;
  }

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

  .hero-feature strong {
    font-size: 20px;
  }

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

  .poster-grid {
    gap: 14px;
  }

  .card-body {
    padding: 15px;
  }
}
