:root {
  --red-900: #7f1d1d;
  --red-800: #991b1b;
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --amber-500: #f59e0b;
  --gray-950: #030712;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 10px 25px rgba(15, 23, 42, 0.09);
  --radius: 18px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 48%, #ffffff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--red-900), var(--red-700));
  box-shadow: 0 12px 30px rgba(127, 29, 29, 0.26);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--red-800);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  transition: transform 0.25s ease, background 0.25s ease;
}

.brand:hover .brand-icon {
  transform: translateY(-2px);
  background: #fee2e2;
}

.brand-text strong,
.brand-text em {
  display: block;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-text em {
  margin-top: 4px;
  font-size: 12px;
  color: #fecaca;
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fee2e2;
  font-weight: 600;
}

.desktop-nav > a,
.nav-dropdown > button {
  border: 0;
  padding: 8px 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 210px;
  padding: 10px;
  border-radius: 14px;
  background: var(--white);
  color: var(--gray-700);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.dropdown-menu a:hover {
  color: var(--red-800);
  background: #fef2f2;
}

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

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
  border-top: 1px solid rgba(254, 202, 202, 0.24);
}

.mobile-panel a {
  display: block;
  padding: 10px 4px;
  color: #fee2e2;
  font-weight: 600;
}

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

.hero {
  position: relative;
  color: var(--white);
  background: var(--gray-900);
}

.hero-viewport {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 122px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.eyebrow {
  color: var(--red-700);
  background: #fee2e2;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.03;
  font-weight: 900;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.55);
}

.hero p {
  max-width: 650px;
  margin: 0 0 26px;
  color: #e5e7eb;
  font-size: 19px;
  line-height: 1.8;
}

.hero-meta,
.detail-meta,
.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-meta span,
.detail-meta span,
.movie-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #f9fafb;
  font-size: 13px;
  font-weight: 700;
}

.movie-meta span {
  color: var(--gray-600);
  background: var(--gray-100);
}

.hero-tags,
.chip-row,
.tag-cloud,
.related-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 18px 0 30px;
}

.hero-tags a,
.chip-row a,
.tag-cloud a,
.related-text-links a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--red-700);
  background: #fee2e2;
  font-size: 13px;
  font-weight: 700;
}

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

.primary-btn,
.ghost-btn,
.quick-search button,
.panel-more,
.side-card a,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.quick-search button,
.panel-more,
.side-card a {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 12px 26px rgba(220, 38, 38, 0.28);
}

.primary-btn:hover,
.quick-search button:hover,
.panel-more:hover,
.side-card a:hover {
  transform: translateY(-2px);
  background: var(--red-700);
  box-shadow: 0 18px 36px rgba(220, 38, 38, 0.36);
}

.ghost-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

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

.hero-arrow {
  position: absolute;
  z-index: 3;
  bottom: 36px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.hero-prev {
  right: 92px;
}

.hero-next {
  right: 36px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 51px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

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

.hero-dot.is-active {
  width: 34px;
  background: var(--red-500);
}

.hero-mini-row {
  position: absolute;
  z-index: 3;
  right: max(36px, calc((100vw - 1180px) / 2));
  top: 92px;
  display: grid;
  gap: 12px;
  width: 220px;
}

.hero-mini-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 14px;
  color: var(--white);
  background: rgba(17, 24, 39, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.hero-mini-card img {
  width: 54px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.hero-mini-card span {
  display: -webkit-box;
  overflow: hidden;
  color: #f9fafb;
  font-weight: 800;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: 26px;
  margin-top: -44px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.intro-strip h2,
.section-head h2,
.panel-title h2,
.page-hero h1,
.detail-main h1 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.intro-strip h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.intro-strip p,
.section-head p,
.page-hero p,
.detail-main p,
.category-body p,
.side-card p,
.footer-brand p {
  color: var(--gray-600);
  line-height: 1.8;
}

.quick-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.quick-search input,
.filter-input,
.catalog-tools select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0 14px;
  outline: none;
  background: var(--white);
  color: var(--gray-800);
}

.quick-search input:focus,
.filter-input:focus,
.catalog-tools select:focus {
  border-color: var(--red-500);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

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

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
}

.section-link {
  color: var(--red-700);
  background: #fee2e2;
}

.section-link:hover {
  transform: translateY(-2px);
  background: #fecaca;
}

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

.compact-grid {
  gap: 16px;
}

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #1f2937, #7f1d1d);
}

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

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

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.74));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-gradient {
  opacity: 1;
}

.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.score-badge,
.rank-number {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  min-width: 42px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-500);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.rank-number {
  left: 10px;
  right: auto;
  background: var(--red-600);
}

.movie-info {
  padding: 14px;
}

.movie-info h2,
.movie-info h3 {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-info h2 a:hover,
.movie-info h3 a:hover {
  color: var(--red-700);
}

.movie-info p {
  display: -webkit-box;
  min-height: 42px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.chip-row {
  margin-top: 12px;
}

.chip-row a {
  min-height: 24px;
  padding: 3px 8px;
  font-size: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

.ranking-panel,
.side-card {
  position: sticky;
  top: 92px;
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.ranking-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.ranking-row span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--red-600);
  font-weight: 900;
}

.ranking-row strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-row em {
  display: block;
  margin-top: 2px;
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}

.panel-more {
  width: 100%;
  margin-top: 16px;
}

.page-hero {
  color: var(--white);
  background: linear-gradient(110deg, var(--red-800), var(--red-600));
}

.page-hero > div {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.page-hero .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
}

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

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #fee2e2;
  font-size: 14px;
}

.crumbs a:hover {
  text-decoration: underline;
}

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

.category-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card > a {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 230px;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 8px;
  background: linear-gradient(135deg, var(--gray-900), var(--red-800));
}

.category-thumbs img {
  width: 100%;
  height: 104px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.category-body {
  padding: 28px;
}

.category-body h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.category-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red-700);
  font-weight: 900;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--gray-700);
  font-weight: 800;
}

.tool-selects {
  display: flex;
  gap: 10px;
}

.empty-state {
  display: none;
  margin: 18px 0;
  padding: 18px;
  border-radius: 16px;
  color: var(--gray-600);
  background: var(--white);
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.empty-state.is-visible {
  display: block;
}

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

.top-rank-card a {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  min-height: 165px;
  padding: 14px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.top-rank-card a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.top-rank-card img {
  width: 120px;
  height: 160px;
  border-radius: 15px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--gray-800), var(--red-800));
}

.top-rank-num {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--red-600);
  font-weight: 900;
}

.top-rank-card h2 {
  margin: 10px 0 8px;
  font-size: 20px;
}

.top-rank-card p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--gray-600);
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.top-rank-card span:not(.top-rank-num) {
  display: inline-flex;
  margin-top: 8px;
  color: var(--red-700);
  font-weight: 800;
}

.watch-stage {
  background: var(--gray-950);
}

.watch-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.watch-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.watch-frame video,
.player-cover,
.player-cover img,
.player-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.watch-frame video {
  z-index: 1;
  background: #000000;
}

.player-cover {
  z-index: 2;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #000000;
}

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

.player-cover img {
  object-fit: cover;
  opacity: 0.62;
}

.player-shade {
  background: radial-gradient(circle at center, rgba(220, 38, 38, 0.18), rgba(0, 0, 0, 0.72));
}

.player-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.38);
  font-size: 34px;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, background 0.22s ease;
}

.player-cover:hover .player-play {
  transform: translate(-50%, -50%) scale(1.07);
  background: var(--red-700);
}

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

.detail-main {
  padding: 30px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.detail-main .crumbs {
  margin: 0 0 18px;
  color: var(--gray-500);
}

.detail-main h1 {
  font-size: clamp(30px, 4vw, 48px);
}

.lead-text {
  font-size: 18px;
}

.detail-meta {
  margin: 22px 0;
}

.detail-meta span {
  color: var(--red-700);
  background: #fee2e2;
}

.detail-main h2 {
  margin: 30px 0 12px;
  font-size: 24px;
}

.detail-main p {
  font-size: 16px;
}

.tag-cloud {
  margin: 20px 0 8px;
}

.related-text-links {
  margin-top: 12px;
}

.detail-side {
  position: sticky;
  top: 92px;
}

.detail-side > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--gray-800), var(--red-800));
  box-shadow: var(--shadow);
}

.side-card {
  position: static;
  margin-top: 18px;
}

.side-card h2 {
  margin: 0 0 8px;
}

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

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 220px 260px;
  gap: 34px;
}

.footer-brand h2,
.footer-group h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-group a:hover {
  color: #fecaca;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  font-size: 14px;
}

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

  .hero-mini-row {
    display: none;
  }
}

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

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

  .intro-strip,
  .split-section,
  .detail-layout,
  .footer-shell,
  .category-card > a,
  .catalog-tools {
    grid-template-columns: 1fr;
  }

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

  .category-grid,
  .top-rank-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-viewport {
    min-height: 540px;
  }

  .hero-content {
    padding-bottom: 110px;
  }
}

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

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

  .hero-viewport {
    min-height: 520px;
  }

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

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

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 26px;
  }

  .content-section {
    padding: 34px 0;
  }

  .intro-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    padding: 24px 16px;
  }

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

  .movie-info {
    padding: 11px;
  }

  .movie-info h2,
  .movie-info h3 {
    font-size: 14px;
  }

  .tool-selects {
    flex-direction: column;
  }

  .quick-search {
    grid-template-columns: 1fr;
  }

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

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

  .watch-frame {
    aspect-ratio: 16 / 10;
  }

  .player-play {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }

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