*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fafaf9;
  color: #292524;
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Noto Serif SC", Georgia, serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e7e5e4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

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

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f0641f;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(240, 100, 31, 0.24);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  color: #1c1917;
  font-size: 20px;
  line-height: 1.1;
}

.brand-text small {
  color: #78716c;
  font-size: 12px;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.nav-link:hover,
.nav-link.active {
  color: #e14915;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f5f5f4;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #292524;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 10px 16px 18px;
  border-top: 1px solid #e7e5e4;
  background: #ffffff;
}

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

.mobile-nav .nav-link {
  padding: 10px 12px;
  border-radius: 10px;
  background: #fafaf9;
}

.hero-carousel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #1c1917;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 25, 23, 0.88), rgba(28, 25, 23, 0.42), rgba(28, 25, 23, 0.70)),
    linear-gradient(0deg, rgba(28, 25, 23, 0.88), rgba(28, 25, 23, 0.05) 50%, rgba(28, 25, 23, 0.45));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 700px;
  color: #ffffff;
  padding-top: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #fed7aa;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.96;
  margin-bottom: 24px;
}

.hero-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.tag-row span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span,
.detail-tags span {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.tag-row span {
  background: #f5f5f4;
  color: #57534e;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn.primary {
  background: #f0641f;
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(240, 100, 31, 0.26);
}

.btn.primary:hover {
  background: #e14915;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.btn.outline {
  background: #ffffff;
  color: #e14915;
  border-color: #fdd8bd;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-controls button {
  border: 0;
  color: #ffffff;
  background: transparent;
}

.hero-controls > button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 26px;
  line-height: 1;
}

.hero-controls > button:hover {
  background: rgba(255, 255, 255, 0.18);
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.55;
  background: #ffffff !important;
}

.hero-dot.active {
  width: 28px;
  opacity: 1;
}

.section {
  padding: 72px 0;
}

.white-section {
  background: #ffffff;
}

.neutral-section {
  background: #fafaf9;
}

.light-gradient {
  background: linear-gradient(135deg, #fef6ee, #ffffff 48%, #ecfdf5);
}

.section-head {
  margin-bottom: 32px;
}

.section-head.center {
  max-width: 720px;
  text-align: center;
}

.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.section-head h2 {
  color: #1c1917;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  margin-bottom: 10px;
}

.section-head p {
  color: #78716c;
  font-size: 16px;
}

.text-link {
  color: #e14915;
  font-weight: 800;
}

.grid {
  display: grid;
}

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

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

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

.movie-card {
  min-width: 0;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px -3px rgba(0, 0, 0, 0.15), 0 20px 30px -10px rgba(0, 0, 0, 0.10);
}

.card-link {
  display: block;
  height: 100%;
}

.poster {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e7e5e4;
}

.poster-wide {
  aspect-ratio: 16 / 9;
}

.poster img,
.category-tile img,
.movie-cover img,
.movie-backdrop img,
.player-poster img,
.ranking-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.poster img {
  transition: transform 0.5s ease;
}

.type-badge,
.year-badge,
.rank-badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(240, 100, 31, 0.92);
  backdrop-filter: blur(8px);
}

.type-badge {
  left: 12px;
}

.year-badge {
  right: 12px;
  background: rgba(0, 0, 0, 0.66);
}

.rank-badge {
  left: 12px;
  background: rgba(28, 25, 23, 0.78);
}

.card-body {
  padding: 20px;
}

.card-body.compact {
  padding: 16px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.meta-row span {
  border-radius: 999px;
  padding: 5px 10px;
  color: #bb3513;
  background: #fde9d7;
  font-size: 12px;
  font-weight: 700;
}

.meta-row span:nth-child(2) {
  color: #0f766e;
  background: #ccfbef;
}

.card-body h3 {
  color: #1c1917;
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.featured-card .card-body h3 {
  font-size: 22px;
}

.movie-card:hover h3 {
  color: #e14915;
}

.card-body p {
  color: #57534e;
  font-size: 14px;
}

.tiny-meta {
  margin-bottom: 8px;
  color: #78716c;
  font-size: 12px;
}

.muted {
  color: #78716c !important;
}

.line-2,
.line-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.line-2 {
  -webkit-line-clamp: 2;
}

.line-3 {
  -webkit-line-clamp: 3;
}

.tag-row {
  margin-top: 14px;
}

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

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #f0641f, #14b8a6);
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
}

.category-tile:hover img {
  transform: scale(1.07);
}

.category-tile img {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  transition: transform 0.5s ease;
}

.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 100, 31, 0.92), rgba(20, 184, 166, 0.82));
}

.category-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 22px;
  color: #ffffff;
}

.category-content strong {
  font-size: 24px;
}

.category-content em {
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-size: 14px;
}

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

.ranking-panel {
  position: sticky;
  top: 88px;
  border-radius: 24px;
  padding: 24px;
  background: #fafaf9;
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: #ffffff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  background: #fff7ed;
}

.rank-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #f0641f;
  color: #ffffff;
  font-weight: 900;
}

.rank-row strong {
  display: block;
  overflow: hidden;
  color: #1c1917;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  display: block;
  color: #78716c;
  font-size: 12px;
  font-style: normal;
}

.cta-section {
  background: linear-gradient(135deg, #fef6ee, #ecfdf5);
}

.cta-card {
  border-radius: 28px;
  padding: 56px 32px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 10px 40px -3px rgba(0, 0, 0, 0.12);
}

.cta-card h2 {
  font-size: clamp(30px, 5vw, 52px);
}

.cta-card p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #78716c;
}

.cta-actions {
  justify-content: center;
}

.page-hero,
.movie-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fef6ee, #ffffff 48%, #ecfdf5);
}

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

.page-hero-inner h1 {
  color: #1c1917;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 18px;
}

.page-hero-inner p {
  max-width: 760px;
  color: #78716c;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #78716c;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: #e14915;
}

.filter-bar {
  display: grid;
  gap: 24px;
}

.search-box {
  display: grid;
  gap: 10px;
}

.search-box span {
  color: #57534e;
  font-weight: 800;
}

.search-box input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  background: #ffffff;
  padding: 0 18px;
  color: #292524;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box.large input {
  min-height: 60px;
  font-size: 18px;
}

.search-box input:focus {
  border-color: #f0641f;
  box-shadow: 0 0 0 4px rgba(240, 100, 31, 0.12);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-buttons button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: #f5f5f4;
  color: #57534e;
  font-weight: 800;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: #f0641f;
  color: #ffffff;
}

.large-list {
  margin-top: 8px;
}

.empty-state {
  display: none;
  padding: 44px;
  border-radius: 22px;
  background: #fafaf9;
  color: #78716c;
  text-align: center;
  font-weight: 700;
}

.empty-state.show {
  display: block;
}

[data-search-item].hidden {
  display: none;
}

.ranking-list-page {
  display: grid;
  gap: 16px;
}

.ranking-item a {
  display: grid;
  grid-template-columns: 64px 140px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-radius: 22px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px -3px rgba(0, 0, 0, 0.14);
}

.ranking-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #f0641f;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.ranking-item img {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
}

.ranking-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.ranking-copy strong {
  color: #1c1917;
  font-size: 22px;
}

.ranking-copy em,
.ranking-copy span {
  color: #78716c;
  font-style: normal;
}

.ranking-copy small {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ranking-copy small span {
  border-radius: 999px;
  padding: 4px 9px;
  background: #f5f5f4;
  font-size: 12px;
}

.movie-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #1c1917;
}

.movie-backdrop {
  position: absolute;
  inset: 0;
}

.movie-backdrop span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 25, 23, 0.94), rgba(28, 25, 23, 0.55), rgba(28, 25, 23, 0.86)),
    linear-gradient(0deg, rgba(28, 25, 23, 0.95), rgba(28, 25, 23, 0.16));
}

.movie-backdrop img {
  filter: blur(2px);
  transform: scale(1.03);
}

.movie-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 72px 0;
}

.movie-cover {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.movie-headline h1 {
  max-width: 900px;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.04;
  margin-bottom: 20px;
}

.movie-headline p {
  max-width: 880px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

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

.detail-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-weight: 700;
}

.player-section {
  padding-top: 58px;
}

.movie-player {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  background: #000000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.movie-player video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-poster img {
  position: absolute;
  inset: 0;
  opacity: 0.58;
}

.player-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08));
}

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

.player-start {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 999px;
  padding-left: 6px;
  background: #f0641f;
  color: #ffffff;
  font-size: 34px;
  box-shadow: 0 20px 40px rgba(240, 100, 31, 0.35);
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.content-card {
  border-radius: 24px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
}

.content-card h2 {
  margin-bottom: 16px;
  color: #1c1917;
  font-size: 28px;
}

.content-card p {
  color: #57534e;
  font-size: 16px;
  line-height: 1.9;
}

.info-card dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0;
}

.info-card dt {
  color: #78716c;
  font-weight: 800;
}

.info-card dd {
  margin: 0;
  color: #292524;
}

.info-card a {
  color: #e14915;
  font-weight: 800;
}

.site-footer {
  background: #1c1917;
  color: #d6d3d1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 54px 0 34px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 20px;
}

.site-footer p,
.footer-links a,
.footer-bottom {
  color: #a8a29e;
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid #292524;
  font-size: 14px;
}

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

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

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

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

  .two-column,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .ranking-panel {
    position: static;
  }
}

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

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

  .hero-content {
    align-items: flex-end;
    padding-bottom: 92px;
  }

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

  .section {
    padding: 52px 0;
  }

  .section-head.split {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-grid,
  .movie-grid,
  .compact-grid,
  .category-grid,
  .category-grid.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body,
  .card-body.compact {
    padding: 13px;
  }

  .featured-card .card-body h3,
  .card-body h3 {
    font-size: 16px;
  }

  .category-tile {
    min-height: 160px;
  }

  .movie-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .movie-cover {
    width: min(72vw, 280px);
  }

  .article-grid {
    gap: 18px;
  }

  .ranking-item a {
    grid-template-columns: 44px 100px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .ranking-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 18px;
  }

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

  .ranking-copy span {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-text small {
    display: none;
  }

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

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .featured-grid,
  .movie-grid,
  .compact-grid,
  .category-grid,
  .category-grid.wide {
    grid-template-columns: 1fr;
  }

  .poster {
    aspect-ratio: 16 / 9;
  }

  .movie-player {
    border-radius: 18px;
  }

  .player-start {
    width: 74px;
    height: 74px;
    font-size: 28px;
  }
}
