:root {
  --green-950: #052e16;
  --green-900: #14532d;
  --green-800: #166534;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-300: #86efac;
  --gray-950: #030712;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 22px rgba(15, 23, 42, 0.10);
  --shadow-xl: 0 28px 70px rgba(15, 23, 42, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-900), var(--green-800));
  box-shadow: 0 10px 30px rgba(5, 46, 22, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--green-950);
  background: var(--green-300);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong {
  font-size: 20px;
  line-height: 1.1;
}

.brand-copy em {
  color: #bbf7d0;
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  color: #dcfce7;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

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

.header-search input,
.mobile-search input,
.large-search input,
.page-filter input {
  color: var(--white);
  background: rgba(20, 83, 45, 0.8);
  border: 1px solid rgba(134, 239, 172, 0.22);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 230px;
  padding: 10px 14px;
}

.header-search input::placeholder,
.mobile-search input::placeholder,
.large-search input::placeholder,
.page-filter input::placeholder {
  color: rgba(220, 252, 231, 0.78);
}

.header-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.page-filter input:focus {
  border-color: var(--green-300);
  box-shadow: 0 0 0 3px rgba(134, 239, 172, 0.18);
}

.header-search button,
.mobile-search button,
.large-search button {
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-700);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.large-search button:hover {
  background: var(--green-600);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.mobile-panel {
  border-top: 1px solid rgba(134, 239, 172, 0.2);
}

.mobile-panel-inner {
  display: grid;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.mobile-nav {
  display: grid;
  gap: 12px;
}

.mobile-link {
  color: #dcfce7;
  font-weight: 600;
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--green-300);
}

.mobile-search input {
  width: 100%;
  padding: 12px 14px;
}

.hero {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 16% 18%, rgba(34, 197, 94, 0.35), transparent 33%), linear-gradient(135deg, #03180d, #064e3b 50%, #052e16);
}

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

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

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 7, 18, 0.92), rgba(5, 46, 22, 0.73) 48%, rgba(3, 7, 18, 0.28)), linear-gradient(0deg, rgba(3, 7, 18, 0.8), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding-top: 62px;
  padding-bottom: 132px;
}

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

.hero-kicker {
  margin: 0 0 16px;
  color: var(--green-300);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-summary {
  max-width: 640px;
  margin: 0 0 22px;
  color: #e5e7eb;
  font-size: 19px;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--green-700);
  background: #dcfce7;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: #dcfce7;
  background: rgba(22, 101, 52, 0.72);
  border: 1px solid rgba(134, 239, 172, 0.24);
}

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

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

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

.btn.primary {
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 12px 26px rgba(22, 163, 74, 0.34);
}

.btn.primary:hover {
  background: var(--green-700);
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn.wide {
  width: 100%;
  margin-top: 18px;
}

.hero-control {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  min-height: 0;
  margin-top: -190px;
  padding-bottom: 36px;
}

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

.hero-dot {
  width: 38px;
  height: 6px;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 58px;
  background: var(--green-300);
}

.hero-side {
  width: 360px;
  padding: 20px;
  background: rgba(5, 46, 22, 0.72);
  border: 1px solid rgba(134, 239, 172, 0.18);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-xl);
}

.hero-side h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.hero-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.hero-mini:hover {
  background: rgba(255, 255, 255, 0.10);
}

.hero-mini img {
  width: 78px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-mini span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.hero-mini strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.hero-rank-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 11px;
  color: var(--green-950);
  background: var(--green-300);
  border-radius: 14px;
  font-weight: 800;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0 0;
}

.category-chips a {
  padding: 10px 15px;
  color: var(--green-700);
  background: var(--white);
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.category-chips a:hover {
  color: var(--white);
  background: var(--green-600);
}

.section-block {
  padding-top: 62px;
  padding-bottom: 62px;
}

.white-section {
  background: var(--white);
}

.latest-section {
  background: linear-gradient(180deg, var(--gray-100), var(--white));
}

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

.section-title.left-only {
  align-items: start;
  justify-content: start;
}

.section-title h2,
.strip-title h3,
.rank-panel h2,
.side-card h2,
.detail-section h2,
.review-box h2,
.category-card h2 {
  margin: 0;
  color: var(--gray-900);
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
}

.section-title p,
.rank-panel p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section-title a,
.text-link {
  color: var(--green-600);
  font-weight: 800;
}

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

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

.small-grid {
  gap: 20px;
}

.movie-card,
.featured-card,
.category-card,
.detail-card,
.side-card,
.player-card,
.rank-panel {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.movie-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-200);
}

.poster-link img,
.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.year-badge,
.type-badge,
.rank-badge,
.movie-type {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  color: var(--white);
  background: rgba(3, 7, 18, 0.78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.year-badge {
  top: 10px;
  right: 10px;
}

.type-badge {
  left: 10px;
  bottom: 10px;
  background: rgba(22, 163, 74, 0.9);
}

.rank-badge {
  top: 10px;
  left: 10px;
  width: 30px;
  justify-content: center;
  background: #f97316;
}

.movie-body {
  padding: 16px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-body h3 {
  min-height: 54px;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.45;
}

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

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

.featured-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.featured-card a,
.featured-card img,
.featured-shade {
  position: absolute;
  inset: 0;
}

.featured-shade {
  background: linear-gradient(0deg, rgba(3, 7, 18, 0.88), rgba(3, 7, 18, 0.20) 72%);
}

.movie-type {
  top: 14px;
  left: 14px;
  background: rgba(22, 163, 74, 0.9);
}

.featured-copy {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: var(--white);
}

.featured-copy p,
.featured-copy span {
  color: #d1d5db;
}

.featured-copy p {
  margin: 0 0 8px;
  font-size: 13px;
}

.featured-copy h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.22;
}

.featured-copy span {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-stack {
  display: grid;
  gap: 48px;
}

.strip-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 14px;
}

.strip-title h3 {
  font-size: 26px;
}

.strip-title a {
  color: var(--green-600);
  font-weight: 800;
}

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

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

.compact-card a {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card a:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
}

.compact-card img {
  width: 126px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.compact-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.compact-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-copy em,
.compact-copy small {
  overflow: hidden;
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-panel {
  position: sticky;
  top: 94px;
  padding: 22px;
}

.page-hero {
  color: var(--white);
  background: radial-gradient(circle at top left, rgba(134, 239, 172, 0.30), transparent 30%), linear-gradient(135deg, var(--green-950), var(--green-800));
}

.page-hero .container {
  padding-top: 78px;
  padding-bottom: 78px;
}

.page-hero p {
  margin: 0 0 10px;
  color: var(--green-300);
  font-weight: 800;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
}

.page-hero span {
  display: block;
  max-width: 760px;
  color: #dcfce7;
  font-size: 18px;
}

.toolbar-section {
  padding-top: 28px;
}

.page-filter {
  display: grid;
  max-width: 560px;
  gap: 8px;
  color: var(--gray-700);
  font-weight: 800;
}

.page-filter input {
  width: 100%;
  padding: 13px 16px;
  color: var(--white);
}

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

.category-card {
  overflow: hidden;
}

.category-cover {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 110px;
  overflow: hidden;
}

.category-cover img {
  width: 100%;
  height: 126px;
  object-fit: cover;
}

.category-card-body {
  padding: 20px;
}

.category-card h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

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

.category-card p {
  min-height: 52px;
  margin: 0 0 14px;
  color: var(--gray-600);
}

.category-card ul {
  display: grid;
  gap: 6px;
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--gray-700);
  font-size: 14px;
}

.search-panel {
  padding-top: 30px;
}

.large-search {
  max-width: 780px;
}

.large-search input {
  flex: 1;
  min-height: 54px;
  padding: 0 18px;
  color: var(--white);
}

.large-search button {
  min-height: 54px;
  padding: 0 28px;
}

.empty-state {
  padding: 30px;
  color: var(--gray-600);
  text-align: center;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--gray-600);
  font-size: 14px;
}

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

.breadcrumb em {
  color: var(--gray-900);
  font-style: normal;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 360px;
  gap: 28px;
  align-items: start;
  padding-top: 34px;
}

.player-card {
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--gray-950);
}

.player-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: radial-gradient(circle, rgba(3, 7, 18, 0.12), rgba(3, 7, 18, 0.50));
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  padding-left: 5px;
  color: var(--green-950);
  background: var(--green-300);
  border-radius: 999px;
  font-size: 32px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

.player-shell.is-playing .player-start {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-card {
  padding: 26px;
}

.detail-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gray-200);
}

.detail-heading p {
  margin: 0 0 8px;
  color: var(--green-600);
  font-weight: 800;
}

.detail-heading h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.detail-category {
  flex: 0 0 auto;
  padding: 7px 12px;
  color: var(--white);
  background: var(--green-600);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

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

.info-grid div {
  padding: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
}

.info-grid dt {
  color: var(--gray-500);
  font-size: 12px;
}

.info-grid dd {
  margin: 4px 0 0;
  color: var(--gray-900);
  font-weight: 800;
}

.detail-section {
  margin-top: 24px;
}

.detail-section h2,
.review-box h2 {
  margin-bottom: 10px;
  font-size: 23px;
}

.detail-section p,
.review-box p {
  margin: 0;
  color: var(--gray-700);
}

.detail-section p + p {
  margin-top: 12px;
}

.lead-text {
  font-weight: 800;
}

.large-tags span {
  min-height: 32px;
  padding-right: 13px;
  padding-left: 13px;
}

.review-box {
  margin-top: 26px;
  padding: 22px;
  background: linear-gradient(135deg, #f0fdf4, #eff6ff);
  border-radius: 18px;
}

.detail-side {
  position: relative;
}

.side-card {
  position: sticky;
  top: 94px;
  padding: 20px;
}

.side-card h2 {
  margin-bottom: 16px;
  font-size: 22px;
}

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

.site-footer {
  margin-top: 50px;
  color: #d1d5db;
  background: linear-gradient(180deg, var(--gray-900), #000000);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
  padding-top: 44px;
  padding-bottom: 32px;
}

.footer-logo .brand-mark {
  color: var(--green-950);
  background: var(--green-400, var(--green-300));
}

.footer-brand p {
  margin: 16px 0 0;
  color: #9ca3af;
}

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

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

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 26px;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-control {
    display: grid;
    margin-top: -174px;
  }

  .hero-side {
    width: 100%;
  }

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

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

  .rank-panel,
  .side-card {
    position: static;
  }

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

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

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy em {
    font-size: 11px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    align-items: start;
    min-height: 560px;
    padding-top: 64px;
  }

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

  .hero-actions {
    display: grid;
  }

  .hero-control {
    margin-top: -206px;
  }

  .hero-side {
    padding: 15px;
    border-radius: 18px;
  }

  .section-title,
  .strip-title,
  .footer-bottom,
  .detail-heading {
    display: grid;
    align-items: start;
  }

  .movie-grid,
  .featured-grid,
  .category-overview-grid,
  .double-list {
    grid-template-columns: 1fr;
  }

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

  .compact-card img {
    width: 104px;
    height: 74px;
  }

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

  .large-search {
    display: grid;
  }

  .large-search button {
    width: 100%;
  }
}
