:root {
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --emerald-700: #047857;
  --teal-600: #0d9488;
  --yellow-400: #facc15;
  --rose-500: #f43f5e;
  --blue-500: #3b82f6;
  --purple-500: #8b5cf6;
  --orange-500: #f97316;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow-card: 0 14px 35px rgba(15, 23, 42, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--slate-900);
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 45%, #fefce8 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-600), var(--emerald-700));
  box-shadow: 0 10px 30px rgba(4, 120, 87, 0.28);
}

.top-nav {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  font-size: 30px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.24));
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  padding: 9px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #1f2937;
  background: var(--yellow-400);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  padding: 10px 20px 18px;
  background: #065f46;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-menu.open {
  display: grid;
  gap: 6px;
}

.mobile-link {
  padding: 12px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  color: var(--white);
  background: linear-gradient(120deg, #047857 0%, #10b981 48%, #0d9488 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.38;
}

.hero-glow-one {
  top: -120px;
  left: -90px;
  background: #facc15;
}

.hero-glow-two {
  right: -120px;
  bottom: 30px;
  background: #22d3ee;
}

.hero-carousel {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 560px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  align-items: center;
  gap: 46px;
  opacity: 0;
  transform: translateX(26px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #064e3b;
  background: rgba(250, 204, 21, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.hero-copy h1,
.page-hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

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

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

.primary-btn {
  color: #1f2937;
  background: var(--yellow-400);
  box-shadow: 0 15px 35px rgba(250, 204, 21, 0.35);
}

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

.ghost-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.hero-poster {
  position: relative;
  display: block;
  height: 460px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 30px 85px rgba(3, 7, 18, 0.36);
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.24), rgba(255, 255, 255, 0.12));
}

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

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.04));
}

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(244, 63, 94, 0.92);
  font-weight: 800;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dot.active {
  width: 32px;
  background: var(--yellow-400);
}

.quick-panel,
.content-section,
.detail-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.quick-panel {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: -44px;
  margin-bottom: 52px;
}

.quick-panel a {
  display: grid;
  gap: 4px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 185, 129, 0.1);
  backdrop-filter: blur(16px);
  transition: 0.25s ease;
}

.quick-panel a:hover,
.movie-card:hover,
.category-card:hover,
.side-card:hover,
.catalog-row:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.quick-panel strong {
  color: var(--green-700);
  font-size: 18px;
}

.quick-panel span {
  color: var(--slate-500);
  font-size: 14px;
}

.content-section {
  margin-bottom: 66px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-heading > span {
  font-size: 34px;
}

.section-heading h2,
.side-panel h2,
.catalog-list h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--slate-900);
}

.section-heading p {
  margin: 5px 0 0;
  color: var(--slate-500);
}

.section-heading > a {
  margin-left: auto;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--green-700);
  background: #dcfce7;
  font-weight: 800;
}

.simple-heading {
  align-items: flex-start;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transition: 0.25s ease;
}

.poster-wrap {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b, #10b981);
}

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

.movie-card:hover .poster-wrap img,
.side-card:hover img,
.hero-poster:hover img {
  transform: scale(1.07);
}

.year-badge,
.rank-badge,
.play-dot {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 900;
}

.year-badge {
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  color: #064e3b;
  background: rgba(250, 204, 21, 0.95);
  font-size: 12px;
}

.rank-badge {
  top: 12px;
  left: 12px;
  min-width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--rose-500);
}

.play-dot {
  left: 50%;
  bottom: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(5, 150, 105, 0.88);
  transform: translateX(-50%);
  box-shadow: 0 10px 24px rgba(4, 120, 87, 0.28);
}

.card-body {
  padding: 18px;
}

.card-body h3,
.card-body h2 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h3 a,
.card-body h2 a {
  transition: color 0.2s ease;
}

.card-body h3 a:hover,
.card-body h2 a:hover {
  color: var(--green-600);
}

.card-body p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.7;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--slate-500);
  font-size: 12px;
}

.card-meta span,
.card-meta a,
.tag-row span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--slate-100);
}

.card-meta a {
  color: var(--green-700);
  background: #dcfce7;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  color: var(--slate-600);
  font-size: 12px;
}

.movie-card-compact {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
}

.movie-card-compact .poster-wrap {
  height: 100%;
  min-height: 190px;
}

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

.category-card {
  min-height: 185px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px;
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.14);
  transition: 0.25s ease;
}

.category-icon {
  font-size: 36px;
}

.category-card strong {
  display: block;
  margin-top: 14px;
  font-size: 20px;
}

.category-card em {
  display: block;
  min-height: 44px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 13px;
  line-height: 1.55;
}

.category-card b {
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(15, 23, 42, 0.78);
  background: rgba(255, 255, 255, 0.86);
}

.cat-hot,
.ranking-hero {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.cat-domestic,
.category-hero.cat-domestic {
  background: linear-gradient(135deg, #059669, #0d9488);
}

.cat-classic {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.cat-urban {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.cat-suspense {
  background: linear-gradient(135deg, #334155, #111827);
}

.cat-comedy {
  background: linear-gradient(135deg, #eab308, #f97316);
}

.cat-romance {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.cat-action {
  background: linear-gradient(135deg, #dc2626, #7c2d12);
}

.cat-scifi {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.cat-history {
  background: linear-gradient(135deg, #b45309, #991b1b);
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 48px;
  padding: 58px;
  border-radius: 34px;
  color: var(--white);
  background: linear-gradient(120deg, var(--green-600), var(--teal-600));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.28);
}

.compact-hero,
.search-hero {
  background: linear-gradient(135deg, #059669, #14b8a6);
}

.category-hero {
  margin-bottom: 34px;
}

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

.side-panel {
  position: sticky;
  top: 94px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.1);
}

.side-panel h2 {
  margin-bottom: 18px;
  font-size: 22px;
}

.side-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  transition: 0.22s ease;
}

.side-card img {
  width: 90px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(135deg, #064e3b, #10b981);
}

.side-card strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}

.side-card small {
  display: block;
  margin-top: 5px;
  color: var(--slate-500);
}

.side-more {
  display: block;
  margin-top: 18px;
  padding: 12px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-600), var(--teal-600));
  text-align: center;
  font-weight: 800;
}

.filter-box,
.search-box-large {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 180px 180px;
  gap: 14px;
  align-items: end;
  margin: 0 0 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.filter-box label {
  display: grid;
  gap: 7px;
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 700;
}

.filter-box input,
.filter-box select,
.search-box-large input,
.search-box-large select {
  width: 100%;
  min-height: 45px;
  border: 1px solid #d1d5db;
  border-radius: 13px;
  padding: 0 13px;
  color: var(--slate-900);
  background: var(--white);
  outline: 0;
}

.filter-box input:focus,
.filter-box select:focus,
.search-box-large input:focus,
.search-box-large select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.filter-message {
  min-height: 24px;
  color: var(--slate-500);
  font-size: 14px;
}

.search-box-large {
  grid-template-columns: minmax(0, 1fr) 180px 120px;
}

.search-box-large button {
  min-height: 45px;
  border: 0;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-600), var(--teal-600));
  font-weight: 900;
  cursor: pointer;
}

.catalog-list {
  display: grid;
  gap: 14px;
}

.catalog-row {
  display: grid;
  grid-template-columns: 50px 150px minmax(0, 1fr) 70px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 9px 24px rgba(15, 23, 42, 0.07);
  transition: 0.25s ease;
}

.catalog-row span {
  font-size: 30px;
}

.catalog-row em {
  color: var(--slate-500);
  font-style: normal;
}

.catalog-row b {
  color: var(--green-700);
}

.detail-shell {
  padding: 34px 0 64px;
}

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

.breadcrumb a {
  color: var(--green-700);
  font-weight: 700;
}

.detail-main {
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.64));
  cursor: pointer;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.92);
  box-shadow: 0 18px 45px rgba(5, 150, 105, 0.35);
  font-size: 34px;
  padding-left: 5px;
}

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

.detail-content {
  padding: 30px;
}

.detail-content h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.detail-meta span,
.detail-meta a {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--slate-600);
  background: var(--slate-100);
  font-size: 13px;
  font-weight: 700;
}

.detail-meta a {
  color: var(--green-700);
  background: #dcfce7;
}

.detail-content section {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.detail-content h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.detail-content p {
  margin: 0 0 14px;
  color: var(--slate-600);
  line-height: 1.9;
  font-size: 16px;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.info-list div {
  padding: 14px;
  border-radius: 14px;
  background: var(--slate-50);
}

.info-list dt {
  color: var(--slate-500);
  font-size: 13px;
}

.info-list dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.detail-tags span {
  background: #dcfce7;
  color: var(--green-700);
}

.site-footer {
  color: rgba(255, 255, 255, 0.84);
  background: linear-gradient(135deg, #020617, #111827 55%, #0f172a);
  margin-top: 70px;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 20px;
}

.site-footer p,
.site-footer li {
  line-height: 1.8;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--teal-600));
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s ease;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

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

  .hero-slide,
  .two-column,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    height: 330px;
  }

  .side-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-carousel {
    min-height: 690px;
  }

  .hero-slide {
    align-content: center;
    gap: 24px;
    padding: 28px 0 70px;
  }

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

  .hero-copy p,
  .page-hero p {
    font-size: 16px;
  }

  .page-hero {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .movie-grid,
  .featured-grid,
  .category-grid,
  .quick-panel,
  .footer-grid,
  .filter-box,
  .search-box-large {
    grid-template-columns: 1fr;
  }

  .movie-card-compact {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .movie-card-compact .poster-wrap {
    min-height: 170px;
  }

  .catalog-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .catalog-row em,
  .catalog-row b {
    grid-column: 2;
  }

  .detail-content {
    padding: 22px;
  }

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

@media (max-width: 460px) {
  .top-nav,
  .quick-panel,
  .content-section,
  .detail-shell,
  .page-hero,
  .footer-grid {
    width: min(100% - 22px, 1180px);
  }

  .hero-carousel {
    width: min(100% - 22px, 1180px);
  }

  .brand {
    font-size: 17px;
  }

  .hero-poster {
    height: 280px;
    border-radius: 24px;
  }

  .poster-wrap {
    height: 205px;
  }
}
