:root {
  --peach-50: #fff5f0;
  --peach-100: #ffe9dd;
  --peach-200: #ffd3bb;
  --peach-400: #ffa777;
  --peach-500: #ff9155;
  --peach-600: #ff7b44;
  --coral-50: #fff0ee;
  --coral-400: #ff8373;
  --coral-500: #ff6450;
  --ink-900: #15151f;
  --ink-700: #3b3c4a;
  --ink-500: #6b7280;
  --line: rgba(255, 145, 85, 0.18);
  --shadow: 0 20px 55px rgba(255, 145, 85, 0.18);
  --radius: 24px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 167, 119, 0.18), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, var(--peach-50) 48%, #ffffff 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.gradient-text {
  background: linear-gradient(90deg, var(--peach-600), var(--coral-500), var(--peach-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(255, 145, 85, 0.08);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--peach-400), var(--coral-500));
  box-shadow: 0 14px 32px rgba(255, 100, 80, 0.28);
}

.brand-text {
  font-size: 1.2rem;
  background: linear-gradient(90deg, var(--peach-600), var(--coral-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-700);
  font-weight: 650;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--peach-600);
}

.header-search {
  width: min(360px, 34vw);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--peach-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.header-search input,
.mobile-panel input,
.large-search input,
.filter-bar input,
.search-tools select,
.filter-bar select {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink-900);
}

.header-search input {
  min-width: 0;
  flex: 1;
  padding: 8px 10px 8px 14px;
}

.header-search button,
.large-search button,
.mobile-panel button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 100, 80, 0.22);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--peach-100);
  cursor: pointer;
  padding: 10px;
}

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

.mobile-panel {
  display: none;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-panel.is-open {
  display: grid;
  gap: 14px;
  animation: slideDown 0.25s ease;
}

.mobile-panel a {
  padding: 8px 0;
  font-weight: 700;
}

.mobile-panel form {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--peach-200);
  border-radius: 16px;
}

.mobile-panel input {
  min-width: 0;
  flex: 1;
  padding: 8px;
}

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

.hero-slides {
  min-height: 72vh;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 44%);
}

.hero-content {
  position: relative;
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 48px;
  padding: 70px 0;
}

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

.hero-eyebrow,
.detail-meta,
.hero-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-eyebrow a,
.hero-eyebrow span,
.detail-meta span,
.hero-counts span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  color: #ffffff;
  background: rgba(255, 145, 85, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-copy h1,
.detail-intro h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 18px 0;
}

.hero-copy p,
.detail-intro p,
.page-hero p {
  font-size: 1.08rem;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.86rem;
  color: var(--peach-600);
  background: var(--peach-50);
  border: 1px solid var(--peach-200);
}

.hero-copy .hero-tags span,
.detail-intro .hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
}

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

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

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
  box-shadow: 0 16px 36px rgba(255, 100, 80, 0.32);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

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

.hero-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 2rem;
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.home-search-panel {
  margin-top: -34px;
  position: relative;
  z-index: 6;
}

.search-band {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  align-items: center;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.search-band h2,
.section-head h2,
.ranking-copy h2,
.content-panel h2,
.detail-main h2,
.side-card h2,
.category-overview-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
}

.search-band p,
.section-head p,
.ranking-copy p,
.category-overview-card p,
.content-panel p,
.side-card p {
  color: var(--ink-500);
}

.large-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--peach-200);
  border-radius: 999px;
  background: #ffffff;
}

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

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

.soft-section,
.site-footer {
  background: linear-gradient(135deg, var(--peach-50), var(--coral-50));
}

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

.section-head a,
.text-link {
  color: var(--peach-600);
  font-weight: 800;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--peach-600);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(255, 145, 85, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--peach-100), var(--coral-50));
}

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

.movie-card:hover .poster-link img,
.category-card:hover img,
.category-image:hover img,
.rank-poster:hover img {
  transform: scale(1.05);
}

.play-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
}

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

.card-meta-row,
.score-row,
.category-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink-500);
  font-size: 0.88rem;
}

.category-pill {
  color: var(--peach-600);
  font-weight: 800;
}

.movie-card h3 {
  margin: 10px 0 8px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.ranking-row h2 a:hover,
.category-overview-card h2 a:hover {
  color: var(--peach-600);
}

.movie-card p {
  min-height: 3.2em;
  color: var(--ink-500);
  font-size: 0.94rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.score-row {
  margin-top: 14px;
  font-weight: 750;
}

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

.category-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: 24px;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(29, 29, 40, 0.18);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 70%);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card span,
.category-card small {
  position: absolute;
  left: 16px;
  z-index: 1;
}

.category-card span {
  bottom: 38px;
  font-size: 1.08rem;
  font-weight: 900;
}

.category-card small {
  bottom: 16px;
  color: rgba(255, 255, 255, 0.84);
}

.ranking-split {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 100, 80, 0.22), transparent 24rem),
    #111827;
  color: #ffffff;
}

.ranking-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.ranking-copy p {
  color: rgba(255, 255, 255, 0.76);
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 52px 64px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.ranking-item img {
  width: 64px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-number {
  font-size: 1.1rem;
  font-weight: 950;
  color: var(--peach-400);
}

.rank-title {
  font-weight: 850;
}

.rank-score {
  color: #ffd166;
  font-weight: 900;
}

.page-hero,
.detail-hero {
  position: relative;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.compact-hero {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 100, 80, 0.32), transparent 25rem),
    linear-gradient(135deg, #171724, #2a1f28 52%, #4a2a24);
  padding: 80px 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumbs a:hover {
  color: #ffffff;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(255, 145, 85, 0.09);
}

.category-image {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 3 / 4;
}

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

.filter-bar,
.search-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.filter-bar input,
.filter-bar select,
.search-tools select {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--peach-200);
  border-radius: 999px;
  background: #ffffff;
}

.filter-bar input {
  min-width: min(320px, 100%);
  flex: 1;
}

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

.ranking-table {
  display: grid;
  gap: 16px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 78px 96px 1fr 150px;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.rank-index {
  font-size: 1.35rem;
  font-weight: 950;
  color: var(--peach-600);
}

.rank-poster {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
}

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

.rank-info h2 {
  margin: 0 0 8px;
}

.rank-info p {
  color: var(--ink-500);
  margin: 0 0 10px;
}

.rank-side {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.rank-side strong {
  color: var(--coral-500);
  font-size: 1.6rem;
}

.rank-side span {
  color: var(--ink-500);
  font-size: 0.9rem;
}

.rank-side a {
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
}

.detail-hero {
  min-height: 620px;
}

.detail-hero-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.26)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 62%);
}

.detail-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 46px;
  align-items: center;
  min-height: 620px;
  padding: 80px 0;
}

.detail-cover {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.46);
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

.detail-main,
.side-card,
.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(255, 145, 85, 0.08);
}

.detail-main {
  padding: 24px;
}

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

.player-box video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.16));
  cursor: pointer;
}

.play-overlay span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
  box-shadow: 0 18px 42px rgba(255, 100, 80, 0.36);
  font-size: 2rem;
  text-indent: 4px;
}

.play-overlay strong {
  font-size: 1.1rem;
}

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

.player-status {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.content-panel {
  padding: 24px;
  margin-top: 24px;
}

.content-panel p {
  color: var(--ink-700);
  font-size: 1.02rem;
}

.detail-side {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 92px;
}

.side-card {
  padding: 22px;
}

.side-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.side-card dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.side-card dt {
  color: var(--ink-500);
}

.side-card dd {
  margin: 0;
  font-weight: 750;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 58px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 36px;
}

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

.site-footer p,
.site-footer a {
  color: var(--ink-500);
}

.site-footer a:hover {
  color: var(--peach-600);
}

.site-footer h3 {
  margin: 0 0 14px;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.search-page-form {
  max-width: 780px;
  margin-top: 28px;
}

.search-tools span {
  color: var(--ink-500);
  font-weight: 750;
}

.is-hidden {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease both;
}

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

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

  .header-search {
    display: none;
  }

  .detail-layout,
  .ranking-inner,
  .search-band {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-toggle {
    display: block;
  }

  .hero-content,
  .detail-hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-poster,
  .detail-cover {
    max-width: 260px;
  }

  .hero-copy h1,
  .detail-intro h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

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

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

  .category-overview-card,
  .ranking-row {
    grid-template-columns: 1fr;
  }

  .rank-side {
    justify-items: start;
  }

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

  .detail-side {
    position: static;
  }
}

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

  .header-inner {
    height: 64px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero-carousel,
  .hero-slides,
  .hero-content {
    min-height: 78vh;
  }

  .hero-content {
    padding: 58px 0 88px;
  }

  .hero-poster {
    display: none;
  }

  .hero-arrow {
    top: auto;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }

  .hero-prev {
    left: 16px;
  }

  .hero-next {
    right: 16px;
  }

  .home-search-panel {
    margin-top: 0;
  }

  .search-band,
  .detail-main,
  .content-panel,
  .side-card {
    padding: 18px;
  }

  .large-search {
    border-radius: 22px;
    flex-direction: column;
  }

  .movie-grid,
  .large-grid {
    grid-template-columns: 1fr;
  }

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

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

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