:root {
  color-scheme: dark;
  --bg: #030712;
  --bg-soft: #07111f;
  --panel: rgba(17, 24, 39, 0.78);
  --panel-strong: #111827;
  --line: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --accent: #10b981;
  --accent-2: #14b8a6;
  --accent-3: #34d399;
  --danger: #fb7185;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% -10%, rgba(16, 185, 129, 0.20), transparent 28rem),
    radial-gradient(circle at 100% 0%, rgba(20, 184, 166, 0.14), transparent 26rem),
    var(--bg);
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.28);
}

.brand-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-link,
.mobile-link {
  color: #cbd5e1;
  font-size: 15px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.mobile-link:hover {
  color: var(--accent-3);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
}

.header-search input,
.mobile-search input,
.listing-search input {
  width: 210px;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 11px 16px;
  color: var(--text);
  background: transparent;
}

.header-search button,
.mobile-search button {
  border: 0;
  padding: 11px 17px;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.88);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: #e2e8f0;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
}

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

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
}

.mobile-link:hover {
  background: rgba(16, 185, 129, 0.10);
}

.hero-slider {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  background-image:
    linear-gradient(90deg, rgba(3, 7, 18, 0.98) 0%, rgba(3, 7, 18, 0.82) 44%, rgba(3, 7, 18, 0.35) 72%, rgba(3, 7, 18, 0.92) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, var(--bg));
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 72vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px 0 110px;
}

.hero-kicker,
.detail-kicker,
.page-hero span,
.section-heading span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(16, 185, 129, 0.24);
  border-radius: 999px;
  color: var(--accent-3);
  background: rgba(16, 185, 129, 0.09);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 740px;
  margin: 18px 0 12px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #d1fae5 0%, var(--accent-3) 48%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 710px;
  margin: 0 0 34px;
  color: #cbd5e1;
  font-size: clamp(18px, 2.2vw, 25px);
}

.hero-feature {
  max-width: 680px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 6, 23, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-feature h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.hero-feature p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.8;
}

.hero-meta,
.detail-meta,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.hero-meta span,
.detail-meta span,
.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta span:not(:last-child)::after,
.detail-meta span:not(:last-child)::after,
.meta-row span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 2px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
}

.hero-tags,
.tag-row,
.genre-strip,
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-tags span,
.tag-row span,
.genre-chip,
.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.72);
  font-size: 13px;
}

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

.primary-button,
.ghost-button,
.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, border-color 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.23);
}

.ghost-button,
.section-link {
  border: 1px solid var(--line);
  color: #d1fae5;
  background: rgba(15, 23, 42, 0.64);
}

.primary-button:hover,
.ghost-button:hover,
.section-link:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.5);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-arrow,
.hero-dot {
  border: 1px solid var(--line);
  color: white;
  background: rgba(15, 23, 42, 0.72);
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 28px;
  line-height: 1;
}

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

.hero-dot {
  width: 28px;
  height: 8px;
  border-radius: 99px;
  padding: 0;
}

.hero-dot.is-active {
  width: 46px;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

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

.dark-band {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  background: rgba(15, 23, 42, 0.34);
}

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

.section-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.featured-card {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(2, 6, 23, 0.10), rgba(2, 6, 23, 0.88)),
    var(--feature-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.featured-card:first-child {
  grid-row: span 2;
  min-height: 520px;
}

.featured-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.featured-card strong {
  margin-top: 14px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.featured-card em {
  margin-top: 8px;
  color: #dbeafe;
  font-style: normal;
  line-height: 1.7;
}

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

.movie-card {
  min-width: 0;
}

.card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card-link:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.poster-shell {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.24), transparent 42%),
    linear-gradient(135deg, #111827, #020617);
}

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

.poster-shell img.is-missing {
  opacity: 0;
}

.card-link:hover .poster-shell img,
.featured-card:hover {
  transform: scale(1.03);
}

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.86));
}

.type-badge,
.rank-badge,
.play-mark {
  position: absolute;
  z-index: 2;
}

.type-badge {
  left: 10px;
  top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.86);
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  right: 10px;
  top: 10px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #031414;
  background: linear-gradient(135deg, #a7f3d0, #14b8a6);
  font-weight: 900;
}

.play-mark {
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: rgba(16, 185, 129, 0.84);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  padding: 14px;
}

.card-body strong {
  display: -webkit-box;
  overflow: hidden;
  color: #f8fafc;
  font-size: 16px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.meta-row {
  margin-top: auto;
  gap: 7px;
  font-size: 12px;
}

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

.category-tile {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 16%, rgba(16, 185, 129, 0.28), transparent 8rem),
    rgba(15, 23, 42, 0.82);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.5);
}

.category-tile span {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.category-tile strong {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.6;
}

.genre-strip {
  margin-top: 22px;
}

.genre-chip:hover,
.filter-chip:hover,
.filter-chip.is-active {
  border-color: rgba(16, 185, 129, 0.55);
  color: white;
  background: rgba(16, 185, 129, 0.18);
}

.page-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(3, 7, 18, 0.94), rgba(3, 7, 18, 0.82)),
    radial-gradient(circle at 74% 16%, rgba(20, 184, 166, 0.28), transparent 24rem);
}

.page-hero.slim {
  min-height: 280px;
}

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

.page-hero h1 {
  margin: 16px 0 10px;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.listing-search {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.listing-search input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
}

.filter-chip {
  cursor: pointer;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}

.pagination a,
.pagination span {
  min-width: 42px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.72);
}

.pagination .is-current,
.pagination a:hover {
  border-color: rgba(16, 185, 129, 0.55);
  color: white;
  background: rgba(16, 185, 129, 0.18);
}

.detail-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(90deg, rgba(3, 7, 18, 0.98), rgba(3, 7, 18, 0.72), rgba(3, 7, 18, 0.96)),
    var(--detail-image);
  background-size: cover;
  background-position: center;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  padding: 80px 0;
}

.poster-shell.large {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.detail-info h1 {
  margin: 18px 0 14px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.detail-info p {
  max-width: 780px;
  margin: 0;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.85;
}

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

.detail-main,
.related-panel,
.article-block {
  min-width: 0;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: black;
  box-shadow: var(--shadow);
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: white;
  cursor: pointer;
  background:
    radial-gradient(circle, rgba(16, 185, 129, 0.22), rgba(0, 0, 0, 0.72)),
    rgba(0, 0, 0, 0.42);
}

.player-cover span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 50px rgba(16, 185, 129, 0.32);
  font-size: 30px;
}

.player-card.is-playing .player-cover {
  opacity: 0;
  pointer-events: none;
}

.player-status {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 3;
  min-height: 26px;
  color: #fecdd3;
  font-size: 14px;
}

.player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-card:hover .player-controls,
.player-card:focus-within .player-controls {
  opacity: 1;
  transform: translateY(0);
}

.player-controls button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  color: white;
  background: rgba(15, 23, 42, 0.72);
  cursor: pointer;
}

.article-block,
.related-panel {
  margin-top: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
}

.article-block h2,
.related-panel h2 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.article-block p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.9;
}

.related-panel {
  position: sticky;
  top: 98px;
}

.related-list {
  display: grid;
  gap: 14px;
}

.movie-card.compact .card-link {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 150px;
}

.movie-card.compact .poster-shell {
  height: 100%;
  aspect-ratio: auto;
}

.movie-card.compact .card-body strong {
  font-size: 15px;
}

.movie-card.compact .card-body em {
  -webkit-line-clamp: 3;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.7);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding: 46px 0;
}

.footer-inner h2 {
  margin: 0 0 14px;
  color: var(--accent-3);
  font-size: 18px;
}

.footer-inner p,
.footer-links a,
.footer-bottom {
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 34px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
}

.is-hidden-by-search {
  display: none;
}

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

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .related-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-search input {
    width: 100%;
  }

  .featured-grid,
  .category-grid,
  .footer-inner,
  .detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .featured-card:first-child {
    min-height: 380px;
  }

  .detail-poster {
    width: min(260px, 72vw);
  }
}

@media (max-width: 700px) {
  .header-inner {
    height: 64px;
  }

  .brand-text {
    font-size: 19px;
  }

  .hero-content {
    min-height: 78vh;
    padding-top: 56px;
  }

  .hero-feature {
    padding: 20px;
  }

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

  .section-heading {
    display: block;
  }

  .section-link {
    margin-top: 18px;
  }

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

  .card-body {
    padding: 12px;
  }

  .card-body em {
    display: none;
  }

  .detail-hero {
    min-height: auto;
  }

  .detail-hero-inner {
    padding: 46px 0;
    gap: 24px;
  }

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

  .article-block,
  .related-panel {
    padding: 20px;
  }

  .player-controls {
    opacity: 1;
    transform: none;
  }
}
