:root {
  --bg: #fff7ed;
  --bg-soft: #fffbf5;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #fed7aa;
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --accent: #f59e0b;
  --card: #ffffff;
  --dark: #111827;
  --shadow: 0 18px 45px rgba(124, 45, 18, 0.14);
  --shadow-soft: 0 12px 30px rgba(124, 45, 18, 0.10);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(251, 146, 60, 0.18), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 58%, #ffffff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(251, 146, 60, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(124, 45, 18, 0.08);
}

.header-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 24px rgba(234, 88, 12, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-title {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.nav-link,
.mobile-nav-link {
  color: #374151;
  font-weight: 700;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 16px;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-dark);
  background: #fff1e5;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #fff7ed;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-button span {
  width: 20px;
  height: 2px;
  background: #9a3412;
  border-radius: 99px;
}

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

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

.mobile-nav-link {
  padding: 12px 14px;
}

main {
  min-height: 70vh;
}

.hero-carousel {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.hero-stage {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.94) 0%, rgba(17, 24, 39, 0.72) 42%, rgba(17, 24, 39, 0.18) 100%),
    radial-gradient(circle at 25% 20%, rgba(251, 146, 60, 0.50), transparent 30rem),
    linear-gradient(0deg, rgba(17, 24, 39, 0.68), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 96px 0 120px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #fed7aa;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content > h2 {
  width: min(760px, 100%);
  margin: 0 0 18px;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.hero-movie-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #ffedd5;
}

.hero-summary {
  width: min(760px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-tags,
.detail-tags,
.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.detail-tags span,
.movie-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.hero-tags span,
.detail-tags span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.movie-tags span {
  padding: 5px 8px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 12px;
}

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

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 32px rgba(234, 88, 12, 0.30);
}

.btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.btn-ghost.dark {
  color: var(--primary-dark);
  border-color: #fed7aa;
  background: #fff7ed;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 99px;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.hero-search {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 106px;
  width: min(680px, calc(100% - 32px));
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.hero-search input,
.search-controls input,
.search-controls select,
.page-filter input {
  width: 100%;
  border: 1px solid #fed7aa;
  outline: none;
  color: var(--text);
  background: #ffffff;
}

.hero-search input {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
}

.hero-search button {
  border: 0;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.content-section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

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

.section-heading h2,
.rank-panel-head h2,
.article-card h2,
.info-card h2,
.index-block h2 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section-more,
.rank-panel-head a,
.search-result-title a {
  color: var(--primary-dark);
  font-weight: 900;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(251, 146, 60, 0.22);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 88, 12, 0.42);
  box-shadow: var(--shadow);
}

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

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

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

.poster-gradient {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent);
}

.poster-badge,
.poster-type {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.poster-badge {
  top: 12px;
  left: 12px;
  background: rgba(234, 88, 12, 0.88);
}

.poster-type {
  right: 12px;
  bottom: 12px;
  background: rgba(17, 24, 39, 0.72);
}

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

.movie-card-body h2 {
  margin: 0 0 10px;
  color: #1f2937;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 950;
}

.movie-card-body h2 a:hover {
  color: var(--primary-dark);
}

.movie-card-body p {
  min-height: 52px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: #9a3412;
  font-size: 13px;
  font-weight: 800;
}

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

.movie-card.compact .movie-card-body h2 {
  font-size: 16px;
}

.movie-card.compact .movie-card-body p {
  min-height: 44px;
  font-size: 13px;
}

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

.rank-panel,
.article-card,
.info-card,
.search-panel,
.index-block {
  border: 1px solid rgba(251, 146, 60, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: var(--shadow-soft);
}

.rank-panel {
  padding: 22px;
}

.rank-panel-head,
.search-result-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.rank-panel-head h2 {
  font-size: 25px;
}

.rank-list,
.ranking-grid {
  display: grid;
  gap: 12px;
}

.rank-item {
  display: grid;
  grid-template-columns: 42px 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  background: #fff7ed;
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  background: #ffedd5;
}

.rank-number {
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 950;
}

.rank-item img {
  width: 58px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  background: #431407;
}

.rank-copy {
  min-width: 0;
}

.rank-copy strong,
.rank-copy em {
  display: block;
}

.rank-copy strong {
  overflow: hidden;
  color: #1f2937;
  font-weight: 950;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-copy em {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-score {
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

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

.category-card {
  display: flex;
  min-height: 152px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(251, 146, 60, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.18), transparent 9rem),
    #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-kind {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 950;
}

.category-card strong {
  margin-top: 8px;
  color: #1f2937;
  font-size: 24px;
  font-weight: 950;
}

.category-card em {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.page-hero {
  width: min(1200px, calc(100% - 32px));
  margin: 32px auto 0;
  padding: 72px 44px;
  text-align: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.26), transparent 19rem),
    linear-gradient(135deg, #9a3412, #ea580c 44%, #f59e0b);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.page-hero.compact-hero h1 {
  width: min(860px, 100%);
  margin: 0 auto 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.page-hero p:not(.eyebrow) {
  width: min(780px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.page-filter {
  width: min(640px, 100%);
  margin: 28px auto 0;
}

.page-filter input,
.search-controls input,
.search-controls select {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.pager a,
.pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 900;
}

.pager a {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.pager span {
  color: var(--primary-dark);
  background: #ffedd5;
}

.search-panel {
  padding: 24px;
}

.search-controls {
  display: grid;
  grid-template-columns: 2fr repeat(4, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.search-fallback.is-hidden {
  display: none;
}

#search-results:empty {
  display: none;
}

.detail-hero {
  width: min(1200px, calc(100% - 32px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 26px;
  align-items: stretch;
}

.detail-player-card,
.detail-info-card {
  overflow: hidden;
  border: 1px solid rgba(251, 146, 60, 0.24);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #030712;
}

.movie-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #030712;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(234, 88, 12, 0.30), transparent 20rem),
    linear-gradient(0deg, rgba(3, 7, 18, 0.70), rgba(3, 7, 18, 0.18));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.38);
  font-size: 30px;
}

.play-overlay strong {
  font-size: 18px;
  font-weight: 950;
}

.detail-info-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.22), transparent 15rem),
    #ffffff;
}

.detail-info-card .eyebrow {
  color: var(--primary-dark);
}

.detail-info-card h1 {
  margin: 0 0 16px;
  color: #1f2937;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.detail-one-line {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.detail-tags span {
  color: #9a3412;
  background: #ffedd5;
  border-color: #fed7aa;
}

.article-card,
.info-card {
  padding: 28px;
}

.article-card p {
  margin: 16px 0 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.95;
}

.info-card dl {
  margin: 16px 0 0;
  display: grid;
  gap: 0;
}

.info-card div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #ffedd5;
}

.info-card div:last-child {
  border-bottom: 0;
}

.info-card dt {
  color: var(--muted);
  font-weight: 800;
}

.info-card dd {
  margin: 0;
  color: #1f2937;
  font-weight: 900;
}

.sticky-panel {
  position: sticky;
  top: 96px;
}

.index-section {
  display: grid;
  gap: 24px;
}

.index-block {
  padding: 24px;
}

.index-block h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

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

.index-links a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff7ed;
  color: #1f2937;
  font-weight: 900;
}

.index-links a:hover {
  color: var(--primary-dark);
  background: #ffedd5;
}

.index-links span {
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-footer {
  margin-top: 60px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 34px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 36px;
}

.footer-logo {
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 950;
}

.footer-brand p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.8;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.footer-column a {
  color: #d1d5db;
}

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

.footer-bottom {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
  .movie-grid,
  .category-grid,
  .index-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-section,
  .ranking-layout,
  .detail-content,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: static;
  }

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

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

  .mobile-menu-button {
    display: inline-flex;
  }

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

  .hero-carousel,
  .hero-content {
    min-height: 670px;
  }

  .hero-content {
    padding-top: 84px;
    padding-bottom: 150px;
  }

  .hero-search {
    bottom: 92px;
    flex-direction: column;
    border-radius: 26px;
  }

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

  .hero-controls {
    bottom: 28px;
  }

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

  .section-heading,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .rank-item {
    grid-template-columns: 34px 52px minmax(0, 1fr);
  }

  .rank-score {
    display: none;
  }

  .page-hero {
    padding: 52px 22px;
    border-radius: 26px;
  }

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

  .detail-info-card,
  .article-card,
  .info-card,
  .rank-panel,
  .search-panel,
  .index-block {
    padding: 20px;
  }

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

@media (max-width: 480px) {
  .movie-grid,
  .category-grid,
  .index-links {
    grid-template-columns: 1fr;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-tags span:nth-child(n + 4),
  .detail-tags span:nth-child(n + 6) {
    display: none;
  }
}
