:root {
  --bg: #0a0d24;
  --bg-deep: #06081a;
  --panel: rgba(255, 255, 255, 0.1);
  --panel-strong: rgba(255, 255, 255, 0.16);
  --line: rgba(255, 255, 255, 0.18);
  --text: #f3f4f6;
  --muted: #b9bfd1;
  --soft: #7d9aff;
  --accent: #9d8df9;
  --accent-strong: #6d3eed;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(93, 119, 255, 0.6) rgba(10, 13, 36, 0.5);
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 0%, rgba(109, 62, 237, 0.32), transparent 28%), linear-gradient(180deg, #0a0d24 0%, #1a1a3e 52%, #0a0d24 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.glass-effect {
  border: 1px solid var(--line);
  background: var(--panel);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.text-glow,
.nav-link.active {
  text-shadow: 0 0 10px rgba(93, 119, 255, 0.85);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 13, 36, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--accent), var(--soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand {
  font-size: 22px;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: rgba(157, 141, 249, 0.14);
  color: var(--accent);
  box-shadow: 0 0 24px rgba(157, 141, 249, 0.36);
  animation: twinkle 3s ease-in-out infinite;
}

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

.nav-link {
  color: #d8dceb;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 13, 36, 0.82);
}

.mobile-nav a {
  padding: 12px 8px;
  text-align: center;
  color: #d8dceb;
  font-size: 13px;
}

main {
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: 680px;
  padding: 42px 0 72px;
}

.star-field span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(157, 141, 249, 0.82);
  box-shadow: 0 0 18px rgba(157, 141, 249, 0.9);
  animation: twinkle 3s ease-in-out infinite;
}

.star-field span:nth-child(1) { top: 10%; left: 12%; }
.star-field span:nth-child(2) { top: 18%; right: 18%; animation-delay: 0.8s; }
.star-field span:nth-child(3) { bottom: 28%; left: 8%; animation-delay: 1.4s; }
.star-field span:nth-child(4) { bottom: 18%; right: 10%; animation-delay: 2.1s; }
.star-field span:nth-child(5) { top: 52%; left: 52%; animation-delay: 2.8s; }

.hero-carousel {
  position: relative;
  width: min(1280px, calc(100% - 32px));
  min-height: 600px;
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 36px;
  padding: 72px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5, 7, 23, 0.94), rgba(5, 7, 23, 0.7), rgba(5, 7, 23, 0.4)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
  transform: scale(1.08);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 28%, rgba(157, 141, 249, 0.28), transparent 28%), radial-gradient(circle at 82% 18%, rgba(125, 154, 255, 0.2), transparent 24%);
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-heading span,
.page-hero span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(157, 141, 249, 0.45);
  border-radius: 999px;
  color: #c9c2ff;
  background: rgba(109, 62, 237, 0.2);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hero-content h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #ffffff, var(--accent) 55%, var(--soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  max-width: 760px;
  margin: 0 0 24px;
  color: #d8dceb;
  font-size: 18px;
  line-height: 1.8;
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent-strong), var(--soft));
  color: #fff;
  box-shadow: 0 12px 30px rgba(109, 62, 237, 0.34);
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ghost-btn.small {
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 14px;
}

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

.hero-poster {
  width: min(360px, 100%);
  justify-self: center;
  border-radius: 26px;
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(7, 10, 30, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-controls button {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

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

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.45;
}

.hero-dot.active {
  width: 28px;
  opacity: 1;
  background: var(--accent);
}

.content-section,
.page-main {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

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

.page-main {
  padding: 36px 0 60px;
}

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

.section-heading.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.compact {
  display: block;
}

.section-heading h2,
.page-hero h1,
.article-section h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
}

.section-heading p,
.page-hero p {
  color: var(--muted);
  line-height: 1.8;
}

.section-heading a {
  color: var(--accent);
  font-weight: 700;
}

.site-search {
  max-width: 860px;
  margin: 26px auto 0;
  padding: 22px;
  border-radius: 22px;
}

.site-search label,
.filter-panel span {
  display: block;
  margin-bottom: 8px;
  color: #d8dceb;
  font-weight: 700;
}

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

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

select option {
  color: #111827;
}

input:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(157, 141, 249, 0.12);
}

.search-line button {
  border: 0;
  border-radius: 14px;
  padding: 0 18px;
  color: #fff;
  background: rgba(109, 62, 237, 0.65);
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.search-result-item img {
  width: 54px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
}

.search-result-item strong,
.search-result-item small {
  display: block;
}

.search-result-item small {
  color: var(--muted);
}

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

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

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

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

.movie-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(157, 141, 249, 0.45);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.36);
}

.movie-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.movie-card figure img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card.large figure img {
  aspect-ratio: 16 / 9;
}

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

.score,
.card-badge {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(109, 62, 237, 0.86);
}

.score {
  top: 12px;
  right: 12px;
  padding: 5px 9px;
}

.card-badge {
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(10, 13, 36, 0.74);
}

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

.movie-meta {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.movie-card h3 {
  min-height: 2.65em;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.32;
}

.movie-card p {
  min-height: 3.6em;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

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

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

.tag-row span {
  padding: 5px 8px;
  border-radius: 999px;
  color: #d9d4ff;
  background: rgba(157, 141, 249, 0.16);
  font-size: 12px;
}

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

.category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 22px;
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  opacity: 0.52;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
  opacity: 0.72;
}

.category-tile div {
  position: absolute;
  inset: auto 0 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(4, 6, 22, 0.92));
}

.category-tile h3,
.category-tile p {
  margin: 0;
}

.category-tile p {
  margin-top: 8px;
  color: #d8dceb;
  line-height: 1.6;
  font-size: 13px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  align-items: start;
}

.rank-list {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
}

.rank-item {
  display: grid;
  grid-template-columns: 46px 58px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.13);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-strong), var(--soft));
}

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

.rank-item strong,
.rank-item small {
  display: block;
}

.rank-item small {
  color: var(--muted);
  margin-top: 4px;
}

.rank-item em {
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

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

.page-hero,
.detail-hero,
.article-section {
  border-radius: 28px;
}

.page-hero {
  padding: 48px;
  margin-bottom: 24px;
  background: radial-gradient(circle at 20% 20%, rgba(157, 141, 249, 0.24), transparent 34%), rgba(255, 255, 255, 0.1);
}

.page-hero p {
  max-width: 820px;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.category-overview-grid {
  display: grid;
  gap: 22px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: center;
  padding: 22px;
  border-radius: 26px;
}

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

.category-cover-stack img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 16px;
}

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

.category-overview-card p {
  color: var(--muted);
  line-height: 1.8;
}

.category-preview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.category-preview-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: #d9d4ff;
  background: rgba(157, 141, 249, 0.15);
  font-size: 13px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.is-hidden-card {
  display: none !important;
}

.ranking-page .rank-item {
  grid-template-columns: 54px 72px 1fr auto;
}

.ranking-page .rank-item img {
  width: 72px;
  height: 96px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
}

.lead {
  color: #d8dceb;
  font-size: 18px;
  line-height: 1.8;
}

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

.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 16px;
  border-radius: 20px;
  box-shadow: none;
}

.detail-meta div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.detail-meta dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.detail-meta dd {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.site-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
}

.play-mask {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: radial-gradient(circle at center, rgba(109, 62, 237, 0.42), rgba(0, 0, 0, 0.5));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-mask span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--soft));
  box-shadow: 0 0 40px rgba(157, 141, 249, 0.48);
  font-size: 34px;
  text-indent: 4px;
}

.play-mask.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.article-section {
  padding: 32px;
}

.article-section h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 26px;
}

.article-section p {
  color: #d8dceb;
  line-height: 2;
  font-size: 17px;
}

.site-footer {
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 13, 36, 0.72);
}

.footer-grid {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
}

.footer-brand {
  margin-bottom: 12px;
  font-size: 20px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 17px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 9px;
  color: var(--muted);
  line-height: 1.7;
}

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

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@media (max-width: 1180px) {
  .full-grid,
  .movie-grid,
  .category-grid,
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-section,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    max-width: 340px;
  }
}

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

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

  .mobile-nav.open {
    display: grid;
  }

  .hero-section {
    min-height: 760px;
    padding-top: 22px;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 34px 24px 82px;
  }

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

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

  .hero-poster {
    width: 220px;
  }

  .large-grid,
  .full-grid,
  .movie-grid,
  .category-grid,
  .related-grid,
  .mini-card-grid,
  .footer-grid,
  .category-overview-card,
  .filter-panel,
  .detail-meta {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

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

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

  .rank-item,
  .ranking-page .rank-item {
    grid-template-columns: 42px 58px 1fr;
  }

  .rank-item em {
    grid-column: 3;
  }

  .page-hero,
  .detail-hero,
  .article-section {
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 18px;
  }

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

  .hero-section {
    min-height: 700px;
  }

  .hero-carousel {
    width: min(100% - 20px, 1280px);
    min-height: 680px;
    border-radius: 24px;
  }

  .hero-slide {
    padding: 28px 18px 78px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .content-section,
  .page-main,
  .footer-grid,
  .footer-bottom,
  .nav-shell {
    width: min(100% - 20px, 1280px);
  }

  .movie-grid,
  .full-grid,
  .related-grid {
    gap: 16px;
  }

  .player-card {
    border-radius: 20px;
  }

  .play-mask span {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }
}
