:root {
  --emerald: #059669;
  --emerald-dark: #047857;
  --teal: #0d9488;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #f9fafb;
  --line: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--soft);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.narrow {
  width: min(880px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  white-space: nowrap;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--emerald);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-weight: 650;
}

.desktop-nav a,
.mobile-panel a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: #d1fae5;
}

.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 286px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.nav-search input,
.mobile-search input,
.hero-search input,
.large-search input,
.filter-input {
  width: 100%;
  border: 0;
  outline: 0;
}

.nav-search input {
  padding: 11px 74px 11px 18px;
  color: #ffffff;
  background: transparent;
}

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

.nav-search button,
.mobile-search button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  border: 0;
  border-radius: 999px;
  color: var(--emerald-dark);
  background: #ffffff;
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: #ffffff;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.mobile-panel.is-open {
  display: grid;
  gap: 12px;
}

.mobile-search {
  position: relative;
  margin-top: 16px;
}

.mobile-search input {
  padding: 12px 82px 12px 16px;
  border-radius: 999px;
}

.mobile-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}

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

.hero-track {
  position: relative;
  height: 640px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) saturate(115%);
  transform: scale(1.08);
  opacity: 0.4;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(20, 184, 166, 0.34), transparent 32%),
    linear-gradient(90deg, rgba(3, 7, 18, 0.95), rgba(6, 78, 59, 0.86) 48%, rgba(15, 23, 42, 0.38));
}

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

.hero-text {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--emerald-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: #bbf7d0;
}

.section-kicker.light {
  color: #bbf7d0;
}

.hero h1,
.hero h2 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-feature-name {
  color: #d1fae5;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
}

.hero p {
  margin: 0 0 20px;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.8;
}

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

.tag,
.pill-row a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #065f46;
  background: #d1fae5;
  font-size: 14px;
  font-weight: 700;
}

.hero-tags .tag {
  color: #ecfdf5;
  background: rgba(16, 185, 129, 0.22);
  border: 1px solid rgba(209, 250, 229, 0.26);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  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(90deg, var(--emerald), var(--teal));
  box-shadow: 0 14px 28px rgba(5, 150, 105, 0.26);
}

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

.btn.link {
  color: #d1fae5;
  padding-inline: 4px;
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
  transform: rotate(1.5deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.9);
  font-size: 14px;
  font-weight: 800;
}

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

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-prev,
.hero-next {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  font-size: 28px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

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

.hero-search-panel {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  transform: translateX(-50%);
}

.hero-search,
.large-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-search input,
.large-search input {
  min-height: 58px;
  padding: 0 22px;
  color: var(--ink);
}

.hero-search button,
.large-search button {
  align-self: stretch;
  border: 0;
  color: #ffffff;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  padding: 0 26px;
  font-weight: 800;
  cursor: pointer;
}

.hero-thumbs {
  display: grid;
  grid-auto-flow: column;
  gap: 10px;
}

.hero-thumb {
  display: grid;
  grid-template-columns: 48px 138px;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-thumb.is-active {
  background: rgba(5, 150, 105, 0.76);
}

.hero-thumb img {
  width: 48px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-thumb strong,
.hero-thumb em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-thumb strong {
  font-size: 14px;
}

.hero-thumb em {
  color: #d1fae5;
  font-size: 12px;
  font-style: normal;
}

.section {
  padding: 72px 0;
}

.section-head {
  margin-bottom: 28px;
}

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

.section-head h2,
.page-hero h1,
.detail-copy h1,
.content-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.section-head p,
.page-hero p,
.content-card p,
.footer-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.text-link,
.back-link {
  display: inline-flex;
  color: var(--emerald-dark);
  font-weight: 800;
}

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

.category-card {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.movie-card:hover,
.ranking-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
}

.category-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.category-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--emerald-dark);
  background: #ffffff;
  font-weight: 900;
}

.category-card strong {
  margin-top: 20px;
  font-size: 25px;
}

.category-card em {
  margin-top: 10px;
  color: #ecfdf5;
  font-style: normal;
  line-height: 1.7;
}

.category-links {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
}

.category-links a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #d1fae5;
}

.category-more {
  margin-top: auto;
  color: #ffffff;
  font-weight: 800;
}

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

.movie-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f172a;
}

.poster-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(5, 150, 105, 0.92);
  font-size: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translateY(0);
}

.rank-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  font-weight: 900;
}

.movie-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  padding: 14px;
}

.movie-info strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-info em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  color: var(--emerald-dark);
  font-size: 12px;
  font-weight: 700;
}

.movie-meta span {
  padding: 4px 7px;
  border-radius: 999px;
  background: #ecfdf5;
}

.gradient-block {
  color: #ffffff;
  background: linear-gradient(135deg, #064e3b, #0f766e 55%, #115e59);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.gradient-block h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
}

.gradient-block p {
  color: #d1fae5;
  font-size: 18px;
  line-height: 1.9;
}

.pill-row {
  margin-top: 24px;
}

.pill-row a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.pill-row.dark a {
  color: var(--emerald-dark);
  background: #d1fae5;
}

.mini-ranking,
.ranking-list {
  display: grid;
  gap: 14px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 56px 76px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mini-ranking .ranking-item {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.ranking-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  font-weight: 900;
}

.ranking-item img {
  width: 76px;
  height: 98px;
  border-radius: 14px;
  object-fit: cover;
}

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

.ranking-copy strong,
.ranking-copy em,
.ranking-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-copy strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 18px;
}

.mini-ranking .ranking-copy strong,
.mini-ranking .ranking-copy span,
.mini-ranking .ranking-copy em {
  color: #ffffff;
}

.ranking-copy em {
  color: var(--muted);
  font-style: normal;
}

.ranking-copy span {
  margin-top: 7px;
  color: var(--emerald-dark);
  font-size: 13px;
  font-weight: 700;
}

.ranking-action {
  padding: 9px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--emerald);
  font-weight: 800;
}

.page-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(187, 247, 208, 0.2), transparent 30%),
    linear-gradient(135deg, var(--emerald), var(--teal));
  padding: 76px 0;
}

.page-hero h1 {
  color: #ffffff;
}

.page-hero p {
  max-width: 780px;
  color: #d1fae5;
  font-size: 18px;
}

.back-link {
  margin-bottom: 18px;
  color: #d1fae5;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 14px;
  margin-bottom: 28px;
}

.filter-input,
.filter-select {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.filter-input {
  padding: 0 18px;
}

.filter-select {
  padding: 0 14px;
  color: var(--ink);
}

.search-hero .large-search {
  margin-top: 28px;
}

.search-status {
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 700;
}

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

.mt-large {
  margin-top: 46px;
}

.detail-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 75% 15%, rgba(20, 184, 166, 0.36), transparent 32%),
    linear-gradient(135deg, #052e2b, #064e3b 55%, #0f172a);
  padding: 72px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #bbf7d0;
  font-weight: 700;
}

.detail-copy h1 {
  color: #ffffff;
}

.detail-one-line {
  max-width: 800px;
  color: #d1fae5;
  font-size: 20px;
  line-height: 1.75;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.detail-meta span {
  padding: 8px 13px;
  border-radius: 999px;
  color: #ecfdf5;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tag-row {
  margin-bottom: 26px;
}

.player-section {
  padding-bottom: 32px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.55));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.92);
  box-shadow: 0 18px 45px rgba(5, 150, 105, 0.34);
  font-size: 32px;
}

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

.content-card {
  padding: 34px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.content-card h2 + p {
  margin-top: 12px;
}

.content-card p + h2 {
  margin-top: 30px;
}

.content-card p {
  font-size: 17px;
}

.movie-card.compact .movie-info em {
  display: none;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 48px 0;
}

.footer-logo .logo-mark {
  color: #ffffff;
  background: var(--emerald);
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

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

.footer-grid a:hover {
  color: #6ee7b7;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid #1f2937;
  color: #9ca3af;
  text-align: center;
}

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

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

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

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

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

  .hero-thumbs {
    display: none;
  }

  .hero-search-panel {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 780px;
  }

  .hero-track {
    height: 710px;
  }

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

  .hero-poster {
    width: min(260px, 74vw);
    margin: 0 auto;
  }

  .hero-controls {
    bottom: 132px;
  }

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

  .two-column,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    width: min(320px, 82vw);
    margin: 0 auto;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

  .ranking-item {
    grid-template-columns: 44px 64px minmax(0, 1fr);
  }

  .ranking-action {
    display: none;
  }
}

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

  .logo {
    font-size: 18px;
  }

  .hero h1,
  .hero h2 {
    font-size: 36px;
  }

  .hero p,
  .detail-one-line {
    font-size: 16px;
  }

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

  .hero-search button,
  .large-search button {
    width: 100%;
    min-height: 48px;
  }

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

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

  .section {
    padding: 52px 0;
  }

  .page-hero,
  .detail-hero {
    padding: 54px 0;
  }

  .ranking-copy em {
    display: none;
  }

  .play-overlay span {
    width: 72px;
    height: 72px;
    font-size: 26px;
  }
}
