:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.18);
  --emerald: #34d399;
  --cyan: #22d3ee;
  --amber: #f59e0b;
  --danger: #fb7185;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.18), transparent 32rem),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 28rem),
    linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  background: rgba(52, 211, 153, 0.35);
  color: #ffffff;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  color: #04111f;
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.25);
}

.brand-text,
.footer-brand {
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.45rem;
}

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

.nav-link {
  color: #cbd5e1;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--emerald);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.8);
  color: #dbeafe;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.icon-button:hover {
  border-color: rgba(52, 211, 153, 0.5);
  color: var(--emerald);
  transform: translateY(-1px);
}

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

.header-search {
  display: none;
  padding: 0 0 18px;
}

.header-search.is-open {
  display: block;
}

.header-search-form,
.quick-search-form,
.filter-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.header-search input,
.quick-search-form input,
.filter-panel input,
.filter-panel select {
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.86);
  color: #e2e8f0;
  padding: 0 16px;
  outline: none;
}

.header-search input:focus,
.quick-search-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(52, 211, 153, 0.65);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12);
}

.header-search button,
.quick-search-form button {
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  color: #04111f;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 24px 22px;
  background: rgba(2, 6, 23, 0.96);
}

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

.mobile-nav a {
  color: #cbd5e1;
  font-weight: 700;
  padding: 10px 0;
}

.hero-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-image,
.detail-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  filter: saturate(1.15) contrast(1.08);
}

.hero-shade,
.detail-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.74), rgba(2, 6, 23, 0.3)),
    linear-gradient(0deg, rgba(2, 6, 23, 1), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: center;
  gap: 64px;
  min-height: 720px;
  padding-top: 34px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--emerald);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 6.9rem);
}

.hero-copy h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 4.5rem);
}

.hero-copy p,
.page-hero p,
.featured-inner p,
.detail-one-line {
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 1.09rem;
  line-height: 1.85;
}

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

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

.hero-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 999px;
  background: rgba(6, 78, 59, 0.3);
  color: #a7f3d0;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  color: #04111f;
  box-shadow: 0 18px 34px rgba(34, 211, 238, 0.2);
}

.ghost-button {
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.74);
  color: #dbeafe;
}

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

.ghost-button:hover {
  border-color: rgba(52, 211, 153, 0.55);
}

.hero-poster {
  position: relative;
  display: block;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.5));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 26px;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  right: 28px;
  bottom: 28px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.8);
  color: var(--emerald);
  padding: 10px 16px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

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

.hero-controls button {
  cursor: pointer;
}

.hero-controls > button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  font-size: 1.5rem;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.4);
}

.hero-dot.is-active {
  width: 36px;
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
}

.quick-search-panel,
.section-block {
  padding: 72px 0;
}

.quick-search-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  align-items: center;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.76);
  padding: 28px;
  box-shadow: var(--shadow);
}

.quick-search-card h2,
.section-heading h2,
.featured-inner h2,
.category-overview-head h2,
.player-card h2,
.text-section h2,
.side-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.section-heading,
.category-overview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-heading a,
.category-overview-head a {
  color: var(--emerald);
  font-weight: 900;
}

.compact-heading {
  align-items: center;
  margin-bottom: 18px;
}

.slate-panel {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(2, 6, 23, 0.2));
}

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

.category-grid-large {
  margin-bottom: 54px;
}

.category-tile {
  position: relative;
  min-height: 156px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.62));
  padding: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
  border-color: rgba(52, 211, 153, 0.5);
  transform: translateY(-4px);
}

.category-glow {
  position: absolute;
  right: -42px;
  top: -42px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.16);
  filter: blur(2px);
}

.category-tile strong {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
}

.category-tile em {
  position: relative;
  display: block;
  margin-top: 12px;
  color: #94a3b8;
  font-style: normal;
  line-height: 1.65;
}

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

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

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

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

.movie-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  border-color: rgba(52, 211, 153, 0.42);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: rgba(15, 23, 42, 0.9);
  transform: scale(1.001);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.movie-card:hover .poster-link img {
  filter: brightness(1.1);
  transform: scale(1.05);
}

.poster-badge,
.poster-play {
  position: absolute;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.75);
  color: #d1fae5;
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.poster-badge {
  left: 12px;
  top: 12px;
  padding: 7px 10px;
}

.poster-play {
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--emerald);
}

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.movie-meta-row,
.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 700;
}

.movie-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.35;
}

.movie-card p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.68;
}

.featured-band {
  padding: 86px 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(52, 211, 153, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(6, 78, 59, 0.34), rgba(15, 23, 42, 0.74));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 48px;
}

.featured-stack,
.rank-list {
  display: grid;
  gap: 12px;
}

.rank-item {
  display: grid;
  grid-template-columns: 38px 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.74);
  padding: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  border-color: rgba(52, 211, 153, 0.45);
  transform: translateX(3px);
}

.rank-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--emerald);
  font-weight: 900;
}

.rank-item img {
  width: 58px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-text strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
}

.rank-text small {
  display: block;
  margin-top: 5px;
  color: #94a3b8;
  line-height: 1.45;
}

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

.rank-panel,
.side-card,
.player-card,
.text-section,
.category-overview-block {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.rank-panel,
.side-card,
.text-section,
.category-overview-block {
  padding: 22px;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  padding: 96px 0 54px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(52, 211, 153, 0.18), transparent 28rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(2, 6, 23, 0.3));
}

.compact-page-hero {
  padding-bottom: 70px;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.page-hero p {
  max-width: 760px;
}

.filter-panel {
  grid-template-columns: minmax(220px, 1fr) 180px 180px 180px;
  margin-bottom: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.68);
  padding: 14px;
}

.category-overview-block + .category-overview-block {
  margin-top: 30px;
}

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

.ranking-card {
  display: grid;
  grid-template-columns: 64px 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  padding: 14px;
}

.ranking-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.18), rgba(34, 211, 238, 0.12));
  color: var(--emerald);
  font-size: 1.3rem;
  font-weight: 900;
}

.ranking-poster img {
  width: 96px;
  height: 132px;
  border-radius: 16px;
  object-fit: cover;
}

.ranking-card h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.25rem;
}

.ranking-card p {
  margin: 0 0 12px;
  color: #94a3b8;
  line-height: 1.7;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #020617;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 44px 0 60px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #cbd5e1;
  font-weight: 700;
  margin-bottom: 34px;
}

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

.detail-top {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  width: 270px;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  font-size: clamp(2.5rem, 5vw, 5.2rem);
}

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

.detail-meta span {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #dbeafe;
  padding: 8px 12px;
  font-weight: 800;
}

.large-tags {
  margin-top: 18px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.detail-content {
  display: grid;
  gap: 22px;
}

.player-card {
  overflow: hidden;
}

.player-shell {
  position: relative;
  background: #000000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.6));
  color: #04111f;
  cursor: pointer;
}

.player-overlay.is-hidden {
  display: none;
}

.player-button {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: 0 24px 60px rgba(34, 211, 238, 0.28);
  font-size: 2.2rem;
  font-weight: 900;
  padding-left: 6px;
}

.player-card h2,
.player-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.player-card h2 {
  margin-top: 22px;
}

.player-card p {
  margin-bottom: 24px;
  color: #94a3b8;
  line-height: 1.75;
}

.text-section p {
  color: #cbd5e1;
  line-height: 1.9;
  font-size: 1.03rem;
}

.detail-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 92px;
}

.side-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.side-card dt {
  color: #94a3b8;
  font-weight: 800;
}

.side-card dd {
  margin: -8px 0 0;
  color: #ffffff;
  line-height: 1.65;
}

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

.footer-links a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--emerald);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.82);
  padding: 54px 0 24px;
}

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

.site-footer p {
  max-width: 440px;
  color: #94a3b8;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
}

.footer-bottom {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: #64748b;
  text-align: center;
}

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

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

  .hero-content,
  .featured-inner,
  .two-column-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

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

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

  .header-inner {
    height: 64px;
  }

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

  .hero-content {
    display: flex;
    align-items: center;
  }

  .quick-search-card,
  .quick-search-form,
  .header-search-form,
  .filter-panel,
  .footer-grid,
  .detail-top {
    grid-template-columns: 1fr;
  }

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

  .ranking-card {
    grid-template-columns: 46px 80px minmax(0, 1fr);
  }

  .ranking-poster img {
    width: 80px;
    height: 112px;
  }

  .detail-poster {
    width: min(240px, 70vw);
  }
}

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

  .brand-text {
    font-size: 1.2rem;
  }

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

  .hero-copy h1 {
    font-size: 2.72rem;
  }

  .hero-copy h2,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 2.2rem;
  }

  .hero-copy p,
  .page-hero p,
  .featured-inner p,
  .detail-one-line {
    font-size: 1rem;
  }

  .section-heading,
  .category-overview-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-grid,
  .movie-grid,
  .movie-grid-three,
  .movie-grid-six,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

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

  .ranking-number {
    width: 44px;
    height: 44px;
  }

  .player-button {
    width: 74px;
    height: 74px;
    font-size: 1.8rem;
  }
}
