:root {
  --site-slate-950: #020617;
  --site-slate-900: #0f172a;
  --site-slate-800: #1e293b;
  --site-slate-700: #334155;
  --site-slate-600: #475569;
  --site-slate-500: #64748b;
  --site-slate-200: #e2e8f0;
  --site-slate-100: #f1f5f9;
  --site-slate-50: #f8fafc;
  --site-emerald: #059669;
  --site-emerald-soft: #d1fae5;
  --site-rose: #e11d48;
  --site-orange: #f97316;
  --site-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  --site-radius: 24px;
}

html {
  scroll-behavior: smooth;
}

.site-body {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--site-slate-50), #ffffff 28%, var(--site-slate-50));
  color: var(--site-slate-800);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--site-slate-800), var(--site-slate-700), var(--site-slate-800));
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.24);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--site-emerald), #14b8a6);
  box-shadow: 0 12px 28px rgba(5, 150, 105, 0.3);
  font-size: 18px;
}

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

.brand-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  margin-top: 5px;
  color: #cbd5e1;
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link,
.mobile-link {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #34d399;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.header-search input {
  width: 210px;
  padding: 9px 14px;
  color: #ffffff;
  background: transparent;
  outline: none;
}

.header-search input::placeholder {
  color: #cbd5e1;
}

.header-search button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search button,
.button-primary {
  background: var(--site-emerald);
  box-shadow: 0 14px 30px rgba(5, 150, 105, 0.25);
}

.header-search button:hover,
.button-primary:hover {
  background: #047857;
  transform: translateY(-2px);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  color: #ffffff;
  background: var(--site-slate-900);
}

.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-tile {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease, filter 0.4s ease;
}

.hero-tile:hover img,
.hero-tile.active img {
  transform: scale(1.1);
  filter: saturate(1.08) contrast(1.04);
}

.hero-tile span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  max-width: calc(100% - 48px);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.54);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.5), rgba(2, 6, 23, 0.26) 42%, rgba(2, 6, 23, 0.76)), radial-gradient(circle at center, rgba(5, 150, 105, 0.2), transparent 45%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 0 72px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.16);
  color: #a7f3d0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 1.04;
  font-weight: 900;
  text-shadow: 0 18px 36px rgba(2, 6, 23, 0.28);
}

.hero p {
  max-width: 760px;
  margin: 24px auto 0;
  color: #e2e8f0;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.7;
}

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

.hero-feature-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(930px, 100%);
  margin-top: 32px;
}

.hero-feature {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.46);
  color: #ffffff;
  text-align: left;
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-feature:hover,
.hero-feature.active {
  transform: translateY(-4px);
  background: rgba(5, 150, 105, 0.28);
}

.hero-feature strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.hero-feature span {
  display: block;
  color: #dbeafe;
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: 76px 0;
  background: #ffffff;
}

.section-light {
  background: linear-gradient(180deg, #ffffff, var(--site-slate-50));
}

.section-slate {
  background: linear-gradient(135deg, var(--site-slate-100), var(--site-slate-50));
}

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

.section-head.compact {
  margin-bottom: 20px;
}

.section-head h2,
.content-box h2,
.site-footer h2 {
  margin: 0;
  color: var(--site-slate-800);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
}

.section-head p,
.content-box p {
  margin-top: 10px;
  color: var(--site-slate-600);
  line-height: 1.8;
}

.text-link {
  color: var(--site-emerald);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: #047857;
}

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

.category-card,
.category-overview-card {
  display: block;
  min-height: 146px;
  padding: 22px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  color: var(--site-slate-800);
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  border-color: #a7f3d0;
  box-shadow: var(--site-shadow);
}

.category-card strong,
.category-overview-head strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 900;
}

.category-card span,
.category-overview-card p {
  color: var(--site-slate-600);
  line-height: 1.7;
}

.category-overview-card {
  min-height: 230px;
}

.category-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--site-slate-800);
  text-decoration: none;
}

.category-overview-head span {
  color: var(--site-emerald);
  font-weight: 900;
}

.category-samples {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.category-samples a {
  color: var(--site-slate-700);
  text-decoration: none;
  font-size: 14px;
}

.category-samples a:hover {
  color: var(--site-emerald);
}

.filter-bar {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 12px;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.filter-input,
.filter-select,
.search-panel input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
  color: var(--site-slate-800);
  outline: none;
}

.filter-input:focus,
.filter-select:focus,
.search-panel input:focus {
  border-color: var(--site-emerald);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.12);
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: #a7f3d0;
  box-shadow: var(--site-shadow);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--site-slate-800), var(--site-slate-600));
  color: #ffffff;
}

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

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

.year-badge,
.rank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--site-emerald);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.rank-badge {
  left: 12px;
  right: auto;
  background: var(--site-rose);
}

.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.9);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.card-body {
  padding: 18px;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--site-slate-500);
  font-size: 12px;
  font-weight: 800;
}

.movie-card h2 {
  margin: 10px 0 8px;
  color: var(--site-slate-800);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
}

.movie-card h2 a {
  color: inherit;
  text-decoration: none;
}

.movie-card h2 a:hover {
  color: var(--site-emerald);
}

.movie-card p {
  min-height: 46px;
  color: var(--site-slate-600);
  font-size: 14px;
  line-height: 1.65;
}

.card-tags,
.detail-tags,
.genre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.card-tags span,
.detail-tags span,
.genre-pills span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--site-slate-100);
  color: var(--site-slate-600);
  font-size: 12px;
  font-weight: 800;
}

.home-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.rank-list,
.rank-card-list {
  display: grid;
  gap: 10px;
}

.rank-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--site-slate-700);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.rank-row:hover {
  color: var(--site-emerald);
}

.rank-row span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--site-emerald-soft);
  color: var(--site-emerald);
  font-weight: 900;
}

.rank-row em {
  color: var(--site-slate-500);
  font-style: normal;
  font-size: 13px;
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.compact-link {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  min-height: 86px;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--site-slate-800);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.compact-link img {
  width: 86px;
  height: 66px;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.compact-link strong,
.compact-link em {
  display: block;
}

.compact-link strong {
  margin-top: 4px;
  line-height: 1.35;
}

.compact-link em {
  margin-top: 6px;
  color: var(--site-slate-500);
  font-style: normal;
  font-size: 12px;
}

.page-shell {
  background: var(--site-slate-50);
}

.page-hero {
  color: #ffffff;
  background: radial-gradient(circle at 15% 0%, rgba(20, 184, 166, 0.35), transparent 34%), linear-gradient(135deg, var(--site-slate-900), var(--site-slate-700));
}

.small-hero {
  padding: 64px 0;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
}

.page-hero p {
  max-width: 720px;
  margin-top: 16px;
  color: #dbeafe;
  line-height: 1.8;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #cbd5e1;
  font-size: 14px;
}

.breadcrumb a {
  color: #a7f3d0;
  text-decoration: none;
}

.rank-card {
  display: grid;
  grid-template-columns: 54px 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  color: var(--site-slate-800);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--site-emerald-soft);
  color: var(--site-emerald);
  font-weight: 900;
}

.rank-card img {
  width: 150px;
  height: 92px;
  border-radius: 18px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rank-card-copy strong,
.rank-card-copy em,
.rank-card-copy small {
  display: block;
}

.rank-card-copy strong {
  font-size: 20px;
  font-weight: 900;
}

.rank-card-copy em {
  margin-top: 6px;
  color: var(--site-slate-500);
  font-style: normal;
}

.rank-card-copy small {
  margin-top: 8px;
  color: var(--site-slate-600);
  line-height: 1.6;
}

.search-panel {
  width: min(720px, 100%);
  margin-top: 26px;
}

.search-panel input {
  min-height: 58px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.94);
  font-size: 17px;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.search-result-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: 20px;
  background: #ffffff;
  color: var(--site-slate-800);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.search-result-card img {
  width: 118px;
  height: 78px;
  border-radius: 14px;
  object-fit: cover;
}

.search-result-card strong,
.search-result-card span {
  display: block;
}

.search-result-card strong {
  font-size: 17px;
  font-weight: 900;
}

.search-result-card span {
  margin-top: 8px;
  color: var(--site-slate-500);
  font-size: 13px;
  line-height: 1.45;
}

.detail-hero {
  padding: 42px 0 60px;
  color: #ffffff;
  background: radial-gradient(circle at 10% 10%, rgba(5, 150, 105, 0.25), transparent 32%), linear-gradient(135deg, var(--site-slate-950), var(--site-slate-800));
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: stretch;
}

.player-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  aspect-ratio: 16 / 9;
}

.player-video {
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.55));
  border: 0;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-large {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: var(--site-emerald);
  box-shadow: 0 20px 46px rgba(5, 150, 105, 0.34);
  font-size: 30px;
}

.play-overlay strong {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.66);
  font-size: 18px;
}

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

.detail-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.detail-panel h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 900;
}

.detail-one-line {
  margin-top: 18px;
  color: #e2e8f0;
  font-size: 17px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.detail-meta span,
.detail-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: #ecfdf5;
}

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

.detail-content-section {
  background: #ffffff;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.content-box {
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.content-box.full-width {
  grid-column: 1 / -1;
}

.site-footer {
  padding-top: 58px;
  background: linear-gradient(180deg, var(--site-slate-800), var(--site-slate-950));
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
  padding-bottom: 42px;
}

.footer-brand {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 900;
}

.site-footer p {
  max-width: 460px;
  line-height: 1.8;
}

.site-footer h2 {
  color: #ffffff;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}

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

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #94a3b8;
}

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

  .menu-button {
    display: grid;
    place-items: center;
  }

  .cards-grid,
  .category-grid,
  .category-overview-grid,
  .search-results {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 820px) {
  .hero,
  .hero-content {
    min-height: 86vh;
  }

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

  .hero-tile-2,
  .hero-tile-3 {
    display: none;
  }

  .hero-feature-panel,
  .filter-bar,
  .detail-content-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .category-grid,
  .category-overview-grid,
  .search-results {
    grid-template-columns: repeat(2, 1fr);
  }

  .rank-row {
    grid-template-columns: 36px 1fr;
  }

  .rank-row em {
    grid-column: 2;
  }

  .rank-card {
    grid-template-columns: 46px 92px 1fr;
  }

  .rank-card img {
    width: 92px;
    height: 70px;
  }
}

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

  .nav-wrap {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-title {
    font-size: 18px;
  }

  .brand-subtitle {
    display: none;
  }

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

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    display: inline-flex;
    margin-top: 14px;
  }

  .cards-grid,
  .category-grid,
  .category-overview-grid,
  .search-results {
    grid-template-columns: 1fr;
  }

  .movie-card p {
    min-height: auto;
  }

  .rank-card,
  .search-result-card {
    grid-template-columns: 1fr;
  }

  .rank-number {
    width: 38px;
    height: 38px;
  }

  .rank-card img,
  .search-result-card img {
    width: 100%;
    height: 150px;
  }

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