:root {
  --amber-950: #431407;
  --amber-900: #78350f;
  --amber-800: #92400e;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-300: #fcd34d;
  --amber-100: #fef3c7;
  --orange-900: #7c2d12;
  --orange-700: #c2410c;
  --slate-950: #0f172a;
  --slate-900: #111827;
  --slate-800: #1f2937;
  --slate-600: #4b5563;
  --slate-500: #6b7280;
  --slate-200: #e5e7eb;
  --slate-100: #f3f4f6;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(120, 53, 15, 0.18);
  --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 34%, #fffaf0 100%);
  color: var(--slate-900);
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-900), var(--orange-900), var(--amber-900));
  box-shadow: 0 8px 24px rgba(67, 20, 7, 0.24);
}

.site-header__inner {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--amber-900);
  background: linear-gradient(135deg, #ffffff, var(--amber-100));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 10px 24px rgba(0, 0, 0, 0.18);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand__tagline {
  margin-top: 4px;
  color: var(--amber-200, #fde68a);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav-link {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 0;
  cursor: pointer;
  font-weight: 650;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.is-current {
  color: #fde68a;
}

.nav-menu {
  position: relative;
  display: inline-flex;
}

.nav-menu__panel {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  width: 180px;
  padding: 10px;
  border-radius: 16px;
  background: var(--white);
  color: var(--slate-900);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.nav-menu:hover .nav-menu__panel,
.nav-menu:focus-within .nav-menu__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu__panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--slate-800);
}

.nav-menu__panel a:hover {
  background: #fff7ed;
  color: var(--amber-800);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 260px;
}

.header-search input,
.mobile-search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  outline: none;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: #fde68a;
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--amber-950);
  background: #fde68a;
  cursor: pointer;
  font-weight: 700;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.mobile-panel {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.mobile-nav a {
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  background: var(--amber-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 48px;
  padding: 74px calc((100vw - min(1180px, calc(100vw - 48px))) / 2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(67, 20, 7, 0.96) 0%, rgba(124, 45, 18, 0.86) 44%, rgba(15, 23, 42, 0.56) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-slide__backdrop {
  position: absolute;
  inset: auto 8% 8% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.32), transparent 68%);
  filter: blur(4px);
}

.hero-slide__content,
.hero-poster {
  position: relative;
  z-index: 2;
}

.hero-kicker,
.page-hero span,
.detail-kicker,
.section-heading span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  padding: 7px 12px;
  color: #fde68a;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 20px 0 18px;
  max-width: 780px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.hero p {
  max-width: 780px;
  color: #ffedd5;
  font-size: 19px;
  line-height: 1.8;
}

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

.hero-tags span,
.tag-row span {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--amber-800);
  background: var(--amber-100);
  font-size: 12px;
  font-weight: 700;
}

.tag-row--light span {
  color: #ffedd5;
  background: rgba(255, 255, 255, 0.14);
}

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

.button {
  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, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button--primary {
  color: var(--amber-950);
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.36);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-poster {
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
  transform: rotate(2deg);
  transition: transform 0.35s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) scale(1.03);
}

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

.hero-poster span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  color: var(--amber-900);
  background: rgba(255, 255, 255, 0.88);
  font-size: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

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

.hero-controls button {
  border: 0;
  cursor: pointer;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 26px;
}

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

.hero-dots button {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 32px;
  background: #fde68a;
}

.stats-strip {
  max-width: 1180px;
  margin: -42px auto 28px;
  position: relative;
  z-index: 5;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stats-strip a {
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.stats-strip strong {
  display: block;
  color: var(--amber-900);
  font-size: 34px;
  line-height: 1;
}

.stats-strip span {
  display: block;
  margin-top: 8px;
  color: var(--slate-600);
  font-weight: 700;
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 24px;
}

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

.section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.03em;
}

.section-heading p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--slate-600);
  line-height: 1.7;
}

.section-action {
  min-width: max-content;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--amber-900);
  background: #fff7ed;
  font-weight: 800;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(120, 53, 15, 0.22);
}

.movie-card.is-hidden {
  display: none;
}

.movie-card__poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.movie-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.movie-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .movie-card__shade {
  opacity: 1;
}

.movie-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.86);
  color: var(--amber-900);
  background: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transition: all 0.25s ease;
}

.movie-card:hover .movie-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-card__type,
.movie-card__year,
.rank-badge {
  position: absolute;
  top: 12px;
  border-radius: 10px;
  padding: 6px 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  background: rgba(120, 53, 15, 0.86);
  backdrop-filter: blur(10px);
}

.movie-card__type {
  left: 12px;
}

.movie-card__year {
  right: 12px;
  background: rgba(15, 23, 42, 0.68);
}

.rank-badge {
  left: 12px;
  top: 48px;
  background: linear-gradient(135deg, #f59e0b, #b45309);
}

.movie-card__body {
  padding: 16px;
}

.movie-card__body h2 {
  margin: 0 0 8px;
  color: var(--slate-900);
  font-size: 18px;
  line-height: 1.35;
}

.movie-card__body h2 a:hover {
  color: var(--amber-800);
}

.movie-card__body p {
  min-height: 46px;
  margin: 0 0 12px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--slate-500);
  font-size: 12px;
}

.movie-card__meta span:first-child {
  color: var(--amber-800);
  font-weight: 800;
}

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

.ranking-list {
  margin: 0;
  padding: 14px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  list-style: none;
}

.ranking-list--full {
  columns: 2;
  column-gap: 22px;
}

.ranking-item {
  break-inside: avoid;
  margin-bottom: 8px;
}

.ranking-item a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
  border-radius: 14px;
  padding: 12px;
  transition: background 0.2s ease;
}

.ranking-item a:hover {
  background: #fff7ed;
}

.ranking-item__rank {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-700), var(--orange-700));
  font-weight: 900;
}

.ranking-item__title {
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-item__meta {
  color: var(--slate-500);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-hero {
  min-height: 320px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: radial-gradient(circle at 20% 20%, rgba(252, 211, 77, 0.18), transparent 28%), linear-gradient(120deg, var(--amber-900), var(--orange-900));
  text-align: center;
  padding: 58px 24px;
}

.page-hero--compact {
  min-height: 260px;
}

.page-hero--search {
  min-height: 380px;
}

.page-hero h1 {
  margin: 16px auto;
  max-width: 860px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #ffedd5;
  font-size: 18px;
  line-height: 1.8;
}

.filter-bar,
.search-panel {
  margin-bottom: 26px;
}

.filter-bar label {
  display: grid;
  gap: 8px;
  max-width: 520px;
  color: var(--slate-600);
  font-weight: 800;
}

.filter-bar input,
.search-panel input {
  width: 100%;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 14px 18px;
  outline: none;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(120, 53, 15, 0.1);
}

.search-panel {
  max-width: 760px;
  margin: 28px auto 0;
}

.search-panel input {
  font-size: 17px;
}

.search-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.search-chips button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--amber-950);
  background: #fde68a;
  cursor: pointer;
  font-weight: 800;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.pagination a {
  min-width: 42px;
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
  color: var(--amber-900);
  background: #fff7ed;
  font-weight: 800;
}

.pagination a.is-current {
  color: var(--white);
  background: var(--amber-800);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--amber-950);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(67, 20, 7, 0.96), rgba(17, 24, 39, 0.72)), var(--detail-image);
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.04);
}

.detail-hero__shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 40%, rgba(245, 158, 11, 0.22), transparent 28%);
}

.detail-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-cover {
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

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

.detail-info h1 {
  margin: 18px 0 16px;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.08;
}

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

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

.detail-meta span {
  border-radius: 14px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffedd5;
  font-weight: 800;
}

.watch-section {
  max-width: 1180px;
  margin: 46px auto 0;
  padding: 0 24px;
}

.watch-player {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.3);
  aspect-ratio: 16 / 9;
}

.watch-player video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.watch-player__button {
  position: absolute;
  inset: 0;
  border: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.watch-player__button span {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--amber-900);
  background: rgba(255, 255, 255, 0.92);
  font-size: 38px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.watch-player.is-playing .watch-player__button {
  opacity: 0;
  visibility: hidden;
}

.watch-copy {
  margin-top: 18px;
  border-radius: 22px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.watch-copy h2 {
  margin: 0 0 8px;
}

.watch-copy p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.75;
}

.detail-content {
  padding-top: 36px;
}

.detail-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.detail-columns > div {
  border-radius: 24px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.detail-columns h2 {
  margin-top: 0;
  color: var(--amber-900);
}

.detail-columns p {
  margin-bottom: 0;
  color: var(--slate-700, #374151);
  line-height: 1.9;
}

.site-footer {
  margin-top: 50px;
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-900), var(--orange-900), var(--amber-900));
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 24px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.footer-brand__title {
  font-size: 24px;
  font-weight: 900;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #ffedd5;
  line-height: 1.7;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

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

.site-footer li {
  margin-bottom: 8px;
}

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

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 24px;
  text-align: center;
  color: #fde68a;
}

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

  .ranking-layout {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-menu-button {
    display: block;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 54px;
    padding-bottom: 86px;
  }

  .hero-poster {
    max-width: 310px;
    margin: 0 auto;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .movie-grid--four,
  .movie-grid--five,
  .movie-grid--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-hero__inner {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    max-width: 300px;
  }

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

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

@media (max-width: 720px) {
  .site-header__inner {
    height: 64px;
    padding: 0 16px;
  }

  .brand__name {
    font-size: 18px;
  }

  .hero {
    min-height: 720px;
  }

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

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

  .hero-slide {
    padding-left: 18px;
    padding-right: 18px;
  }

  .stats-strip,
  .movie-grid--four,
  .movie-grid--five,
  .movie-grid--six {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 34px 18px;
  }

  .section-heading {
    display: block;
  }

  .section-action {
    display: inline-flex;
    margin-top: 14px;
  }

  .ranking-list--full {
    columns: 1;
  }

  .detail-hero__inner,
  .watch-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .watch-player__button span {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
