:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-strong: rgba(15, 23, 42, 0.95);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(34, 211, 238, 0.28);
  --text: #e5edf8;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #22d3ee;
  --blue: #38bdf8;
  --green: #34d399;
  --shadow: 0 24px 80px rgba(2, 8, 23, 0.45);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 211, 238, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.12), transparent 34rem),
    linear-gradient(180deg, #020617 0%, #07111f 48%, #020617 100%);
}

img {
  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(2, 6, 23, 0.82);
  backdrop-filter: blur(22px);
}

.site-header-inner {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #001019;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 10px 28px rgba(34, 211, 238, 0.24);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--soft);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: rgba(34, 211, 238, 0.12);
  transform: translateY(-1px);
}

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

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

.home-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-background,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) brightness(0.72);
}

.hero-shade,
.detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.76) 42%, rgba(2, 6, 23, 0.35) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 32px));
  min-height: 78vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.48fr);
  align-items: center;
  gap: 56px;
  padding: 76px 0 94px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero-copy h1,
.sub-hero h1,
.detail-info h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 8vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-copy p,
.sub-hero p,
.detail-info .lead {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--soft);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.85;
}

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

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  color: #dffbff;
  background: rgba(34, 211, 238, 0.08);
  font-size: 12px;
}

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

.primary-button,
.ghost-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #00121a;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 18px 34px rgba(34, 211, 238, 0.24);
}

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

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

.hero-cover {
  position: relative;
  width: min(380px, 100%);
  justify-self: end;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(-7deg);
}

.hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-cover:hover img {
  transform: scale(1.06);
}

.hero-cover span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #00121a;
  background: rgba(34, 211, 238, 0.92);
  box-shadow: 0 0 50px rgba(34, 211, 238, 0.44);
}

.hero-control {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(16px);
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-prev,
.hero-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(148, 163, 184, 0.16);
  font-size: 26px;
  line-height: 1;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.36);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 26px;
  background: var(--cyan);
}

.hero-glow {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
}

.hero-glow-a {
  width: 360px;
  height: 360px;
  left: 8%;
  top: 18%;
  background: var(--cyan);
}

.hero-glow-b {
  width: 460px;
  height: 460px;
  right: 3%;
  bottom: 6%;
  background: #2563eb;
}

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

.section-lift {
  margin-top: -22px;
  position: relative;
  z-index: 3;
}

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

.section-title.small {
  align-items: center;
}

.section-title h2,
.content-card h2,
.site-footer h2 {
  margin: 0;
  color: #ffffff;
}

.section-title h2 {
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -0.04em;
}

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

.category-strip a,
.category-chip,
.category-card-large a,
.content-card,
.rank-panel,
.fresh-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(18px);
}

.category-strip a {
  padding: 20px;
  min-height: 132px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.category-strip a:hover,
.category-chip:hover,
.category-card-large a:hover,
.movie-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
}

.category-strip span {
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}

.category-strip em {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.54);
}

.wide-toolbar {
  align-items: stretch;
}

.search-box {
  flex: 1 1 280px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.64);
}

.search-box span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.search-box input {
  flex: 1;
  min-width: 0;
  color: #ffffff;
  border: 0;
  outline: 0;
  background: transparent;
}

.filter-button {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(15, 23, 42, 0.72);
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  color: #00121a;
  background: var(--cyan);
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(59, 130, 246, 0.08));
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.3s ease;
}

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

.card-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.card-badge {
  left: 10px;
  background: rgba(34, 211, 238, 0.78);
}

.rank-badge {
  right: 10px;
  background: rgba(2, 6, 23, 0.72);
}

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.95), transparent);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
  border-radius: 50%;
  color: #00121a;
  background: rgba(34, 211, 238, 0.94);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.movie-card-body {
  padding: 15px 15px 17px;
}

.movie-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.movie-meta a {
  color: var(--cyan);
}

.movie-card h2 {
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.35;
}

.movie-card p {
  margin: 0 0 12px;
  min-height: 3.5em;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

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

.compact-card p {
  min-height: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: start;
}

.rank-panel,
.fresh-panel {
  padding: 26px;
}

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

.mini-rank-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.38);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mini-rank-card:hover {
  transform: translateX(4px);
  background: rgba(34, 211, 238, 0.08);
}

.mini-rank-card img {
  width: 64px;
  height: 88px;
  border-radius: 12px;
  object-fit: cover;
}

.mini-rank-card strong,
.mini-rank-card em {
  display: block;
}

.mini-rank-card strong {
  color: #ffffff;
  line-height: 1.45;
}

.mini-rank-card em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.sub-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding-top: 96px;
}

.sub-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(34, 211, 238, 0.26), transparent 24rem),
    radial-gradient(circle at 78% 35%, rgba(37, 99, 235, 0.20), transparent 28rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
}

.sub-hero-content {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 64px;
}

.sub-hero h1 {
  font-size: clamp(42px, 7vw, 72px);
}

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

.category-card-large a {
  display: block;
  min-height: 280px;
  padding: 20px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.category-card-images img {
  height: 120px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.category-card-large h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 26px;
}

.category-card-large p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.detail-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.detail-wrap {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 22px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

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

.breadcrumb strong {
  color: #ffffff;
  font-weight: 700;
}

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

.detail-poster {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.detail-info {
  max-width: 820px;
}

.detail-info h1 {
  font-size: clamp(42px, 7vw, 76px);
}

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

.detail-meta span {
  padding: 7px 11px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.44);
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: #000000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.movie-video,
.player-cover,
.player-cover img {
  width: 100%;
  height: 100%;
}

.movie-video {
  display: block;
  object-fit: contain;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  color: #ffffff;
  cursor: pointer;
  background: #000000;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
  object-fit: cover;
  opacity: 0.62;
  filter: brightness(0.72);
}

.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #00121a;
  background: var(--cyan);
  box-shadow: 0 0 60px rgba(34, 211, 238, 0.56);
  font-size: 28px;
}

.player-cover strong {
  position: absolute;
  left: 50%;
  top: calc(50% + 64px);
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 18px;
}

.player-shell.is-playing .player-cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 34px;
}

.content-card {
  padding: 28px;
}

.content-card h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.content-card p {
  margin: 0;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.95;
}

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

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.74);
}

.footer-grid {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 32px;
}

.footer-brand {
  color: #ffffff;
  font-size: 22px;
}

.site-footer p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
}

.footer-links a:hover {
  color: var(--cyan);
  border-color: var(--line-strong);
}

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

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

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

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

@media (max-width: 920px) {
  .site-header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(2, 6, 23, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 14px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 86px;
  }

  .hero-cover {
    justify-self: start;
    width: min(260px, 64vw);
    transform: none;
  }

  .home-hero,
  .hero-content {
    min-height: 900px;
  }

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

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

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

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

@media (max-width: 680px) {
  .site-header-inner,
  .section,
  .sub-hero-content,
  .detail-wrap,
  .footer-grid,
  .footer-bottom,
  .hero-content {
    width: min(100% - 24px, 1320px);
  }

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

  .movie-grid,
  .category-movie-grid,
  .ranking-grid,
  .small-grid,
  .related-grid,
  .category-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .category-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 46px 0;
  }

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

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

  .movie-card h2 {
    font-size: 15px;
  }

  .movie-card p {
    font-size: 12px;
  }

  .hero-copy h1,
  .sub-hero h1,
  .detail-info h1 {
    letter-spacing: -0.04em;
  }

  .home-hero,
  .hero-content {
    min-height: 820px;
  }

  .hero-control {
    bottom: 16px;
  }

  .detail-wrap {
    padding-top: 74px;
  }

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

  .content-card,
  .rank-panel,
  .fresh-panel {
    padding: 20px;
  }
}
