:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.84);
  --bg-elevated: rgba(30, 41, 59, 0.76);
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(16, 185, 129, 0.36);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --subtle: #94a3b8;
  --accent: #34d399;
  --accent-strong: #10b981;
  --accent-soft: rgba(16, 185, 129, 0.18);
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.46);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.18), transparent 30%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(18px);
}

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

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

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #22d3ee);
  color: #04111d;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.24);
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.nav-link {
  position: relative;
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active::after,
.nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  width: min(350px, 32vw);
}

.header-search input,
.mobile-nav input,
.search-panel input,
.search-panel select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
  outline: none;
  padding: 11px 14px;
}

.header-search input:focus,
.mobile-nav input:focus,
.search-panel input:focus,
.search-panel select:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.header-search button,
.mobile-nav button,
.search-panel button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  background: var(--accent-strong);
  color: #02140d;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.98);
  padding: 16px;
}

.mobile-nav a,
.mobile-nav form {
  display: block;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 12px;
  color: var(--muted);
}

.mobile-nav form {
  display: flex;
  gap: 8px;
}

.hero-section {
  position: relative;
  margin-bottom: 56px;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--bg-soft);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.02);
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 42%, rgba(2, 6, 23, 0.24) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 34%);
}

.hero-content {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 80px 0 130px;
}

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

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

.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.46);
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
}

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

.hero-tags span,
.tag-row span,
.detail-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(52, 211, 153, 0.26);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  color: #b7f7d8;
  padding: 5px 12px;
  font-size: 13px;
}

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

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

.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #02140d;
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.25);
}

.ghost-btn {
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.66);
  color: var(--text);
}

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

.ghost-btn:hover {
  border-color: var(--border-strong);
  background: rgba(16, 185, 129, 0.14);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.52);
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

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

.hero-dot {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

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

.hero-panel {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.5fr;
  gap: 18px;
  margin-top: -86px;
}

.hero-search-card,
.hero-side-list,
.ranking-panel,
.poster-card,
.detail-content,
.category-overview-card,
.category-card,
.page-hero {
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-search-card {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.hero-search-card span {
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
}

.hero-search-card h2 {
  margin: 8px 0 18px;
  font-size: 28px;
  line-height: 1.2;
}

.hero-search-card form {
  display: flex;
  gap: 10px;
}

.hero-search-card input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.62);
  color: var(--text);
  padding: 13px 16px;
  outline: none;
}

.hero-search-card button {
  border: 0;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #02140d;
  font-weight: 800;
  padding: 0 18px;
  cursor: pointer;
}

.hero-side-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-radius: var(--radius-lg);
  padding: 18px;
}

.section-block {
  margin: 72px auto;
}

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

.section-title h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
}

.section-title a {
  color: var(--accent);
  font-weight: 800;
}

.compact-title h2 {
  font-size: 30px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -50px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.32), transparent 70%);
}

.category-card:hover,
.movie-card:hover,
.wide-card:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
}

.category-card span,
.category-overview-title {
  display: block;
  color: var(--accent);
  font-weight: 900;
}

.category-card strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.category-card em,
.category-overview-card p {
  color: var(--muted);
  font-style: normal;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.poster-link {
  display: block;
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(16, 185, 129, 0.18));
}

.poster-frame img,
.wide-thumb img,
.rank-cover img,
.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.2s ease;
}

.poster-link:hover img,
.wide-card:hover img,
.rank-item:hover img,
.poster-card:hover img {
  transform: scale(1.06);
}

.poster-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(2, 6, 23, 0.84));
}

.play-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.92);
  color: #02140d;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 900;
}

.card-body {
  padding: 14px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--subtle);
  font-size: 12px;
}

.card-meta a {
  color: var(--accent);
}

.card-body h2 {
  margin: 8px 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.card-body p,
.wide-card p,
.rank-info p,
.detail-one-line,
.poster-card p {
  color: var(--muted);
}

.card-body p {
  min-height: 48px;
  margin: 0 0 12px;
  font-size: 14px;
}

.tag-row span {
  min-height: 26px;
  padding: 3px 9px;
  font-size: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 26px;
}

.ranking-panel {
  position: sticky;
  top: 92px;
  align-self: start;
  border-radius: var(--radius-lg);
  padding: 22px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 42px 70px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  padding: 10px;
}

.ranking-full-list .rank-item {
  grid-template-columns: 56px 96px minmax(0, 1fr);
}

.rank-number {
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.rank-cover {
  overflow: hidden;
  width: 70px;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  background: var(--bg-soft);
}

.ranking-full-list .rank-cover {
  width: 96px;
}

.rank-info h2 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.35;
}

.score {
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
}

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

.wide-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.72);
  padding: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.wide-thumb {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  background: var(--bg-soft);
}

.wide-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.wide-card h3 {
  margin: 8px 0 6px;
  font-size: 18px;
  line-height: 1.35;
}

.wide-card p {
  margin: 0;
  font-size: 14px;
}

.page-main {
  padding-top: 34px;
}

.page-hero {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.18), transparent 45%),
    rgba(15, 23, 42, 0.82);
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--subtle);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--accent);
}

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

.category-overview-card {
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-overview-title {
  margin-bottom: 10px;
  font-size: 24px;
}

.mini-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.mini-links a {
  color: var(--muted);
  font-size: 14px;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 160px auto;
  gap: 12px;
  margin-top: 26px;
}

.empty-state {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.72);
  color: var(--muted);
  padding: 28px;
  text-align: center;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: var(--shadow);
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: #000;
  color: var(--text);
  cursor: pointer;
  overflow: hidden;
  text-align: center;
}

.player-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.player-cover-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.45;
  filter: blur(1px);
  transform: scale(1.03);
}

.player-cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.18));
}

.big-play {
  position: relative;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #02140d;
  font-size: 36px;
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.32);
}

.player-cover strong,
.player-cover em {
  position: relative;
  z-index: 1;
  display: block;
}

.player-cover strong {
  max-width: min(640px, 88%);
  font-size: clamp(22px, 4vw, 38px);
  line-height: 1.2;
}

.player-cover em {
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
}

.detail-content {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 38px);
}

.detail-content h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.1;
}

.detail-facts {
  margin: 22px 0 30px;
}

.detail-content section {
  margin-top: 28px;
}

.detail-content h2,
.poster-card h2,
.site-footer h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-content p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.detail-aside {
  min-width: 0;
}

.poster-card {
  position: sticky;
  top: 92px;
  border-radius: var(--radius-lg);
  padding: 18px;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 22px;
  background: var(--bg-soft);
}

.poster-card h2 {
  margin-top: 18px;
}

.block-btn {
  width: 100%;
  margin-top: 16px;
}

.muted-tags span {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(148, 163, 184, 0.08);
  color: var(--muted);
}

.site-footer {
  margin-top: 86px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
}

.footer-brand p,
.site-footer li,
.footer-bottom {
  color: var(--subtle);
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 18px 16px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .movie-grid,
  .all-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header.open .mobile-nav {
    display: block;
  }

  .site-header.open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-stage,
  .hero-content {
    min-height: 560px;
  }

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

  .hero-side-list {
    grid-template-columns: 1fr;
  }

  .ranking-panel,
  .poster-card {
    position: static;
  }

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

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

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

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

  .hero-actions,
  .hero-search-card form,
  .mobile-nav form {
    flex-direction: column;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 110px;
  }

  .hero-panel {
    margin-top: -72px;
  }

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

  .wide-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

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

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

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

  .ranking-full-list .rank-cover,
  .rank-cover {
    width: 64px;
  }

  .detail-content {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .movie-grid,
  .compact-grid,
  .all-list,
  .category-grid,
  .overview-grid,
  .wide-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .hero-search-card,
  .hero-side-list,
  .detail-content,
  .poster-card {
    border-radius: 22px;
  }

  .hero-stage,
  .hero-content {
    min-height: 520px;
  }
}
