:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --red: #ef4444;
  --pink: #ec4899;
  --gray-950: #030712;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--gray-900);
  background: var(--gray-50);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.12);
}

.site-header-inner {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.site-logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.32);
}

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

.nav-link,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--gray-700);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-dropdown:hover > a,
.nav-dropdown > a.is-active {
  color: var(--orange);
  background: #fff7ed;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 190px;
  padding: 10px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 650;
}

.nav-dropdown-panel a:hover {
  color: var(--orange);
  background: #fff7ed;
}

.header-search,
.mobile-search,
.search-panel form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.search-panel input {
  width: 240px;
  height: 42px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.search-panel input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.header-search button,
.mobile-search button,
.search-panel button,
.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.header-search button,
.mobile-search button,
.search-panel button,
.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.22);
}

.header-search button:hover,
.mobile-search button:hover,
.search-panel button:hover,
.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.32);
}

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

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff7ed;
  padding: 10px;
}

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

.mobile-panel {
  display: none;
  padding: 16px 24px 22px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

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

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

.mobile-panel nav a {
  padding: 12px;
  border-radius: 12px;
  background: var(--gray-50);
  color: var(--gray-700);
  font-weight: 700;
}

main,
.page-main,
.detail-main {
  padding-top: 68px;
}

.hero-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange), var(--red), var(--pink));
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(2px) saturate(1.15);
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(3, 7, 18, 0.88), rgba(17, 24, 39, 0.58), rgba(249, 115, 22, 0.34));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: 650px;
  margin: 0 auto;
  padding: 72px 24px 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  color: var(--white);
}

.hero-tags,
.detail-tags,
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.detail-tags span,
.filter-chips button,
.movie-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.75;
}

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

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

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

.hero-cover span,
.movie-play {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.34);
}

.hero-cover span {
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  font-size: 26px;
}

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

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

.hero-controls > button {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  font-size: 30px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--white);
}

.section-block,
.search-panel,
.detail-content,
.dark-section,
.orange-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}

.dark-section {
  max-width: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--gray-950), var(--gray-800));
}

.dark-section > .section-title,
.dark-section > .ranking-grid,
.dark-section > .ranking-list {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.orange-section {
  max-width: none;
  background: #fff7ed;
}

.orange-section > .section-title,
.orange-section > .movie-grid {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-title h2,
.search-panel h2,
.detail-content h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 950;
  color: var(--gray-900);
  letter-spacing: -0.04em;
}

.section-title p,
.search-panel p,
.detail-content p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.75;
}

.light-title h2,
.light-title p,
.dark-section .section-title h2,
.dark-section .section-title p {
  color: var(--white);
}

.section-title a {
  color: var(--orange);
  font-weight: 850;
  white-space: nowrap;
}

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

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card-link:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 54px rgba(17, 24, 39, 0.16);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-200);
}

.movie-poster img,
.compact-poster img,
.category-card img,
.detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card-link:hover .movie-poster img,
.compact-card:hover .compact-poster img,
.category-card:hover img {
  transform: scale(1.08);
}

.movie-duration {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.movie-play {
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: 0.25s ease;
}

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

.movie-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.movie-kicker {
  align-self: flex-start;
  margin-bottom: 12px;
  color: var(--orange);
  background: #fff7ed;
}

.movie-info h3 {
  margin: 0 0 10px;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.movie-info p {
  flex: 1;
  margin: 0 0 14px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.movie-meta {
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 650;
}

.movie-card-wide .movie-card-link {
  display: grid;
  grid-template-columns: 42% 1fr;
}

.movie-card-wide .movie-poster {
  aspect-ratio: auto;
  min-height: 260px;
}

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

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

.compact-card {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 18px;
  min-width: 0;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 0.25s ease, background 0.25s ease;
}

.compact-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.11);
}

.compact-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: var(--gray-700);
}

.rank-badge {
  position: absolute;
  left: 9px;
  top: 9px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-size: 12px;
  font-weight: 900;
}

.compact-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.compact-body strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.compact-body em {
  margin: 8px 0;
  color: #fdba74;
  font-style: normal;
  font-size: 13px;
  font-weight: 750;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.compact-body small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

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

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

.category-card {
  position: relative;
  min-height: 210px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.12);
}

.category-card img {
  position: absolute;
  inset: 0;
}

.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(3, 7, 18, 0.82));
}

.category-content {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  color: var(--white);
}

.category-content strong {
  display: block;
  margin-bottom: 9px;
  font-size: 24px;
  font-weight: 950;
}

.category-content em {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.6;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, var(--gray-950), var(--gray-800) 48%, var(--orange));
}

.page-hero {
  min-height: 330px;
  padding: 90px 24px 70px;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 950;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  max-width: 1280px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

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

.search-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(320px, 1fr);
  align-items: center;
  gap: 24px;
  padding-top: 44px;
  padding-bottom: 30px;
}

.search-panel form {
  justify-content: flex-end;
}

.search-panel input {
  width: min(100%, 520px);
}

.filter-chips {
  grid-column: 1 / -1;
}

.filter-chips button {
  border: 0;
  color: var(--orange-dark);
  background: #ffedd5;
  cursor: pointer;
}

.empty-result {
  grid-column: 1 / -1;
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  color: var(--gray-700);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.detail-hero {
  padding: 44px 24px 64px;
}

.detail-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 46px;
  align-items: center;
}

.detail-cover {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

.detail-intro h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.75;
}

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

.detail-meta span {
  padding: 8px 12px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  font-weight: 750;
}

.detail-tags {
  margin-bottom: 28px;
}

.detail-tags span {
  color: #fdba74;
  background: rgba(249, 115, 22, 0.16);
  border: 1px solid rgba(253, 186, 116, 0.24);
}

.player-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 20px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.25);
}

.player-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.6));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-overlay span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-size: 34px;
  box-shadow: 0 24px 48px rgba(249, 115, 22, 0.38);
}

.detail-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 28px;
}

.detail-content article {
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.related-block {
  padding-top: 30px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--gray-950);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  max-width: 620px;
  margin: 14px 0 0;
  line-height: 1.75;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-weight: 750;
}

.footer-links a:hover {
  color: #fdba74;
}

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

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

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

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

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

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

  .hero-cover {
    max-width: 340px;
    margin: 0 auto;
  }

  .movie-grid,
  .wide-grid,
  .category-grid,
  .ranking-grid,
  .ranking-list,
  .detail-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movie-card-wide .movie-card-link,
  .detail-layout,
  .search-panel {
    grid-template-columns: 1fr;
  }

  .search-panel form {
    justify-content: stretch;
  }

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

@media (max-width: 640px) {
  .site-header-inner {
    height: 62px;
    padding: 0 16px;
  }

  .site-logo,
  .footer-logo {
    font-size: 22px;
  }

  main,
  .page-main,
  .detail-main {
    padding-top: 62px;
  }

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

  .hero-copy h1 {
    font-size: 40px;
  }

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

  .hero-actions,
  .detail-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions a,
  .detail-intro .primary-btn {
    width: 100%;
  }

  .section-block,
  .search-panel,
  .detail-content,
  .dark-section,
  .orange-section {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .movie-grid,
  .wide-grid,
  .category-grid,
  .ranking-grid,
  .ranking-list,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .compact-card {
    grid-template-columns: 128px 1fr;
  }

  .compact-body small {
    -webkit-line-clamp: 1;
  }

  .mobile-search {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-search input {
    width: 100%;
  }

  .page-hero {
    padding-top: 62px;
  }

  .detail-hero {
    padding: 32px 16px 44px;
  }

  .player-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
