:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --shadow-hover: 0 26px 70px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gray-50);
  color: var(--gray-900);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0;
  color: var(--gray-600);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 10px rgba(15, 23, 42, 0.04);
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--sky-500), var(--cyan-500));
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.28);
}

.logo-copy {
  display: grid;
  gap: 2px;
}

.logo-copy strong {
  font-size: 1.35rem;
  color: var(--gray-900);
}

.logo-copy small {
  color: var(--gray-500);
  font-size: 0.76rem;
}

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

.nav-link,
.mobile-nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--gray-700);
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-link:hover,
.mobile-nav-link:hover,
.nav-link.active,
.mobile-nav-link.active {
  color: var(--white);
  background: var(--sky-500);
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.22);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--sky-50);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-button span {
  width: 20px;
  height: 2px;
  background: var(--sky-700);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
}

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

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--gray-900);
}

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

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

.hero-bg,
.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #0f172a, #0369a1);
}

.hero-overlay,
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.88)),
    linear-gradient(90deg, rgba(17, 24, 39, 0.78), rgba(17, 24, 39, 0.22));
}

.hero-content {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 84px;
}

.hero-copy {
  width: min(760px, 100%);
  animation: fadeUp 0.7s ease both;
}

.hero-copy h1 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 5rem);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hero-copy p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 1.12rem;
  max-width: 700px;
}

.hero-meta,
.meta-row,
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  gap: 14px;
}

.badge,
.tag-link,
.live-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sky-700);
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
}

.hero .badge,
.detail-hero .badge {
  color: var(--white);
  background: rgba(14, 165, 233, 0.78);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn,
.outline-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 13px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--sky-500), var(--cyan-500));
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(14, 165, 233, 0.32);
}

.btn-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.outline-button {
  color: var(--sky-700);
  background: var(--white);
  border: 1px solid var(--sky-100);
}

.outline-button:hover,
.text-link:hover {
  color: var(--white);
  background: var(--sky-500);
}

.full {
  width: 100%;
  margin-top: 10px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 2rem;
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 18px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: 0.2s ease;
}

.hero-dot.active {
  width: 38px;
  background: var(--white);
}

.search-section {
  margin-top: -38px;
  position: relative;
  z-index: 2;
}

.search-panel {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.search-panel.compact {
  margin-top: 26px;
  width: min(760px, 100%);
}

.search-panel input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 0 18px;
  color: var(--gray-900);
  background: var(--gray-50);
  outline: none;
}

.search-panel input:focus {
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.search-panel button {
  border: 0;
  border-radius: 16px;
  padding: 0 24px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--sky-500), var(--cyan-500));
}

.section-block {
  padding: 72px 0;
}

.tinted-section {
  background: linear-gradient(135deg, var(--sky-50), #ecfeff);
}

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

.section-kicker {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky-500), var(--cyan-500));
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gray-900);
}

.section-header p {
  margin-top: 8px;
}

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

.card,
.content-card,
.side-card,
.ranking-card,
.category-overview-card,
.prose-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 231, 235, 0.78);
}

.movie-card {
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 15%, rgba(34, 211, 238, 0.45), transparent 34%),
    linear-gradient(135deg, #0f172a, #0369a1);
}

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

.poster-wrap.image-missing img,
.hero-slide.image-missing .hero-bg,
.detail-hero.image-missing .detail-bg {
  opacity: 0;
}

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

.poster-type {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.66);
  font-size: 0.74rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.poster-play,
.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--sky-600);
  background: rgba(255, 255, 255, 0.90);
  opacity: 0;
  transition: 0.24s ease;
}

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

.card-body {
  padding: 15px;
}

.movie-title {
  display: -webkit-box;
  min-height: 2.7em;
  overflow: hidden;
  color: var(--gray-900);
  font-weight: 800;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-title:hover {
  color: var(--sky-600);
}

.card-body p,
.list-content p,
.rank-info p {
  display: -webkit-box;
  margin: 8px 0 12px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--gray-900);
  box-shadow: var(--shadow);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transition: transform 0.45s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.88));
}

.category-tile span,
.category-tile strong,
.category-tile small {
  position: relative;
  z-index: 1;
}

.category-tile span {
  font-size: 1.25rem;
  font-weight: 900;
}

.category-tile strong {
  margin-top: 5px;
}

.category-tile small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  padding: 72px 0;
}

.list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.movie-card-list {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 16px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.list-poster {
  border-radius: 14px;
}

.list-content {
  align-self: center;
}

.ranking-card {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 24px;
}

.ranking-card h2 {
  font-size: 1.6rem;
}

.ranking-card p {
  margin: 8px 0 18px;
}

.rank-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid var(--gray-200);
}

.rank-num,
.rank-pos {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--sky-500), var(--cyan-500));
}

.rank-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--gray-900);
  font-weight: 800;
}

.rank-meta {
  grid-column: 2;
  color: var(--gray-500);
  font-size: 0.86rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(34, 211, 238, 0.24), transparent 30%),
    linear-gradient(135deg, #0f172a, #0369a1);
  color: var(--white);
}

.compact-hero .container {
  padding: 70px 0;
}

.compact-hero h1 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.compact-hero p {
  max-width: 820px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--sky-600);
  font-weight: 700;
}

.breadcrumbs.light,
.breadcrumbs.light a {
  color: rgba(255, 255, 255, 0.82);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.filters label {
  display: grid;
  gap: 6px;
  min-width: 180px;
  color: var(--gray-700);
  font-weight: 700;
}

.filters select {
  height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0 12px;
  color: var(--gray-800);
  background: var(--gray-50);
}

.no-results {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--gray-300);
}

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

.category-overview-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.category-cover-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  min-height: 240px;
  background: var(--gray-900);
}

.category-cover-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overview-body {
  padding: 24px;
}

.category-overview-body p {
  margin: 10px 0 18px;
}

.category-count {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--sky-700);
  background: var(--sky-50);
  font-weight: 800;
}

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

.ranking-list-card {
  display: grid;
  grid-template-columns: 54px 138px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.rank-thumb {
  border-radius: 14px;
}

.rank-info h2 {
  font-size: 1.18rem;
}

.detail-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--gray-900);
}

.detail-bg,
.detail-hero-overlay {
  position: absolute;
  inset: 0;
}

.detail-bg {
  filter: blur(1px);
  transform: scale(1.02);
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  padding: 66px 0;
}

.detail-title-block {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-top: 52px;
}

.detail-poster {
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.detail-title-block h1 {
  margin: 18px 0;
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.detail-title-block p {
  max-width: 760px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding: 56px 0 80px;
}

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card,
.content-card,
.side-card,
.prose-card {
  padding: 24px;
}

.player-card {
  border-radius: 24px;
  color: var(--white);
  background: #020617;
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.28);
}

.player-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.player-head h2 {
  color: var(--white);
}

.player-head p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #000;
}

.video-shell video {
  width: 100%;
  height: 100%;
  background: #000;
}

.player-status {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  font-size: 0.88rem;
  backdrop-filter: blur(8px);
}

.player-status.ready {
  display: none;
}

.player-status.error {
  background: rgba(220, 38, 38, 0.82);
}

.content-card h2,
.side-card h2,
.prose-card h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.content-card p,
.prose-card p {
  color: var(--gray-700);
  line-height: 1.85;
}

.detail-side {
  display: grid;
  align-self: start;
  gap: 18px;
  position: sticky;
  top: 100px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.info-list dt {
  color: var(--gray-500);
  font-weight: 700;
}

.info-list dd {
  margin: 0;
  color: var(--gray-900);
  font-weight: 700;
}

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

.prose-card {
  max-width: 960px;
}

.prose-card h2 + p {
  margin-bottom: 26px;
}

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

.site-footer {
  color: var(--gray-300);
  background: var(--gray-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding: 54px 0;
}

.site-footer h3,
.footer-logo strong {
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: var(--gray-300);
}

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

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

.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-500);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

  .mobile-menu-button {
    display: inline-flex;
  }

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

  .hero-arrow {
    display: none;
  }

  .split-section,
  .detail-layout,
  .detail-title-block,
  .footer-grid,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

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

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

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

  .header-inner {
    height: 66px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo-copy strong {
    font-size: 1.06rem;
  }

  .logo-copy small {
    display: none;
  }

  .search-panel {
    display: grid;
  }

  .search-panel input,
  .search-panel button {
    min-height: 48px;
  }

  .section-header {
    display: grid;
  }

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

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

  .movie-card-list,
  .ranking-list-card {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .movie-card-list .list-poster,
  .ranking-list-card .rank-thumb {
    grid-row: span 2;
  }

  .ranking-list-card .rank-pos {
    position: absolute;
    margin: 8px;
    z-index: 2;
  }

  .card-body {
    padding: 12px;
  }

  .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .detail-title-block {
    margin-top: 34px;
  }

  .player-card,
  .content-card,
  .side-card,
  .prose-card {
    padding: 18px;
  }
}
