:root {
  --night-950: #0d0d10;
  --night-900: #1a1a1f;
  --night-850: #23232a;
  --night-800: #2c2c34;
  --night-700: #4a4a52;
  --night-400: #888893;
  --night-300: #b0b0b8;
  --night-100: #e7e7ea;
  --gold-500: #eab308;
  --gold-400: #facc15;
  --ember-500: #ef4444;
  --ember-400: #f87171;
  --shadow-glow: 0 0 28px rgba(234, 179, 8, 0.25);
  --card-border: rgba(250, 204, 21, 0.12);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  color: var(--night-100);
  background:
    radial-gradient(circle at 20% 0%, rgba(234, 179, 8, 0.14), transparent 32rem),
    radial-gradient(circle at 90% 20%, rgba(239, 68, 68, 0.12), transparent 30rem),
    var(--night-950);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 16, 0.86);
  border-bottom: 1px solid rgba(250, 204, 21, 0.08);
  backdrop-filter: blur(14px);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--gold-400), var(--ember-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--night-950);
  background: linear-gradient(135deg, var(--gold-400), var(--ember-500));
  box-shadow: var(--shadow-glow);
  font-size: 15px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--night-100);
  padding: 10px 13px;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover {
  color: var(--gold-400);
  background: rgba(44, 44, 52, 0.72);
}

.header-search {
  margin-left: auto;
  display: flex;
  width: min(330px, 30vw);
  border: 1px solid rgba(250, 204, 21, 0.12);
  border-radius: 14px;
  background: rgba(44, 44, 52, 0.72);
  overflow: hidden;
}

.header-search input,
.big-search input,
.filter-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--night-100);
  background: transparent;
}

.header-search input {
  padding: 11px 13px;
}

.header-search button,
.big-search button {
  border: 0;
  padding: 0 16px;
  color: var(--night-950);
  background: linear-gradient(135deg, var(--gold-400), var(--ember-500));
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(250, 204, 21, 0.14);
  border-radius: 12px;
  color: var(--night-100);
  background: rgba(44, 44, 52, 0.8);
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
  border-top: 1px solid rgba(250, 204, 21, 0.08);
}

.mobile-nav.open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

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

.hero-stage,
.hero-slide {
  min-height: 600px;
}

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

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.1);
}

.hero-shade,
.detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 16, 0.95) 0%, rgba(13, 13, 16, 0.72) 44%, rgba(13, 13, 16, 0.38) 100%),
    linear-gradient(0deg, var(--night-950), transparent 40%, rgba(13, 13, 16, 0.7));
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 32px));
  min-height: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: center;
  gap: 56px;
  padding: 68px 0 56px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(250, 204, 21, 0.24);
  border-radius: 999px;
  color: var(--gold-400);
  background: rgba(250, 204, 21, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  color: white;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-desc,
.page-hero p,
.detail-copy p,
.search-panel p,
.section-heading p {
  color: var(--night-300);
  line-height: 1.75;
}

.hero-desc {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 20px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.hero-meta span,
.tag-row span {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--night-100);
  background: rgba(44, 44, 52, 0.72);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

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

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

.btn.primary {
  color: var(--night-950);
  background: linear-gradient(135deg, var(--gold-400), var(--ember-500));
  box-shadow: var(--shadow-glow);
}

.btn.ghost {
  border: 1px solid rgba(250, 204, 21, 0.18);
  color: var(--night-100);
  background: rgba(44, 44, 52, 0.62);
}

.btn.text {
  color: var(--gold-400);
  padding: 0 8px;
}

.hero-poster {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: var(--night-800);
  border: 1px solid rgba(250, 204, 21, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46), var(--shadow-glow);
}

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

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 16px;
  border-radius: 16px;
  text-align: center;
  color: var(--night-950);
  background: linear-gradient(135deg, var(--gold-400), var(--ember-500));
  font-weight: 900;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-controls > button,
.hero-dots button {
  border: 0;
  color: white;
  background: rgba(44, 44, 52, 0.78);
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.active {
  width: 28px;
  background: var(--gold-400);
}

.band {
  border-top: 1px solid rgba(250, 204, 21, 0.08);
  border-bottom: 1px solid rgba(250, 204, 21, 0.08);
  background: rgba(26, 26, 31, 0.7);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 30px;
  align-items: center;
  padding: 34px 0;
}

.search-panel h2 {
  margin: 0 0 8px;
  color: white;
  font-size: 28px;
}

.big-search {
  display: flex;
  min-height: 58px;
  border: 1px solid rgba(250, 204, 21, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(13, 13, 16, 0.68);
}

.big-search input {
  padding: 0 18px;
  font-size: 16px;
}

.big-search button {
  padding: 0 24px;
}

.page-section {
  padding: 70px 0 0;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  color: white;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
}

.heading-line {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(250, 204, 21, 0.58), transparent);
}

.section-more {
  color: var(--gold-400);
  font-weight: 800;
}

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

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

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

.cover-link,
.cover-wrap {
  display: block;
}

.cover-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  background: var(--night-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.movie-card:hover .cover-wrap img {
  transform: scale(1.08);
  filter: brightness(0.82);
}

.quality-badge,
.play-badge {
  position: absolute;
  z-index: 2;
}

.quality-badge {
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  color: white;
  background: rgba(13, 13, 16, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.play-badge {
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night-950);
  background: linear-gradient(135deg, var(--gold-400), var(--ember-500));
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  box-shadow: var(--shadow-glow);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-info {
  padding: 13px 2px 0;
}

.movie-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 7px;
  color: var(--night-400);
  font-size: 12px;
}

.movie-info h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.movie-info h3 a:hover {
  color: var(--gold-400);
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

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

.rank-list,
.ranking-page-list,
.content-card {
  border: 1px solid rgba(250, 204, 21, 0.1);
  border-radius: 24px;
  background: rgba(26, 26, 31, 0.74);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.rank-list {
  padding: 14px;
}

.rank-item {
  display: grid;
  grid-template-columns: 44px 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: rgba(44, 44, 52, 0.72);
  transform: translateX(4px);
}

.rank-num {
  color: var(--gold-400);
  font-size: 22px;
  font-weight: 900;
}

.rank-item img {
  width: 72px;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  object-fit: cover;
}

.rank-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.rank-copy strong {
  color: white;
  font-size: 17px;
}

.rank-copy em,
.rank-copy small {
  color: var(--night-300);
  font-style: normal;
  line-height: 1.5;
}

.rank-copy small {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tab-buttons,
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tab-buttons button,
.filter-buttons button {
  border: 1px solid rgba(250, 204, 21, 0.12);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--night-100);
  background: rgba(44, 44, 52, 0.64);
}

.tab-buttons button.active,
.filter-buttons button.active {
  color: var(--night-950);
  background: linear-gradient(135deg, var(--gold-400), var(--ember-500));
  font-weight: 800;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.page-shell {
  padding: 48px 0 76px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
}

.slim-hero {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
  padding: 48px;
  border: 1px solid rgba(250, 204, 21, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 15%, rgba(250, 204, 21, 0.16), transparent 26rem),
    linear-gradient(135deg, rgba(26, 26, 31, 0.92), rgba(13, 13, 16, 0.92));
}

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

.slim-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 18px;
}

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

.category-card {
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.1);
  border-radius: 24px;
  background: rgba(26, 26, 31, 0.78);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 204, 21, 0.32);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 170px;
  overflow: hidden;
}

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

.category-card-body {
  padding: 22px;
}

.category-card-body span {
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 800;
}

.category-card-body h2 {
  margin: 6px 0 10px;
  color: white;
  font-size: 24px;
}

.category-card-body p {
  margin: 0;
  color: var(--night-300);
  line-height: 1.7;
}

.filter-bar {
  margin-bottom: 30px;
  padding: 18px;
  border: 1px solid rgba(250, 204, 21, 0.1);
  border-radius: 24px;
  background: rgba(26, 26, 31, 0.74);
}

.filter-search {
  margin-bottom: 14px;
  border: 1px solid rgba(250, 204, 21, 0.12);
  border-radius: 16px;
  background: rgba(13, 13, 16, 0.76);
}

.filter-search input {
  padding: 15px 16px;
}

.movie-card.hidden-by-filter {
  display: none;
}

.ranking-page-list {
  padding: 12px;
}

.ranking-page-list .rank-item {
  grid-template-columns: 54px 84px minmax(0, 1fr);
}

.detail-hero {
  min-height: 560px;
}

.detail-inner {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 70px 0;
}

.detail-poster {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46), var(--shadow-glow);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--night-300);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--gold-400);
}

.detail-copy h1 {
  font-size: clamp(34px, 5vw, 62px);
}

.detail-copy p {
  max-width: 800px;
  margin: 20px 0 0;
  font-size: 18px;
}

.large-tags span {
  padding: 7px 12px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  padding: 70px 0 84px;
}

.player-column,
.side-column {
  display: grid;
  gap: 24px;
  align-content: start;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  border: 1px solid rgba(250, 204, 21, 0.14);
  background: black;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.player-box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: black;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(180deg, rgba(13, 13, 16, 0.2), rgba(13, 13, 16, 0.72));
  transition: opacity 0.25s ease;
}

.player-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.player-button {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night-950);
  background: linear-gradient(135deg, var(--gold-400), var(--ember-500));
  box-shadow: var(--shadow-glow);
  font-size: 32px;
  transform: translateX(2px);
}

.content-card {
  padding: 28px;
}

.content-card h2 {
  margin: 0 0 16px;
  color: white;
  font-size: 24px;
}

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

.info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.info-card li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-card span {
  color: var(--night-400);
}

.info-card strong {
  color: var(--night-100);
  text-align: right;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.mini-card:hover {
  background: rgba(44, 44, 52, 0.72);
}

.mini-card img {
  width: 58px;
  aspect-ratio: 2 / 3;
  border-radius: 10px;
  object-fit: cover;
}

.mini-card span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.mini-card strong {
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-card em {
  color: var(--night-300);
  font-style: normal;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-footer {
  border-top: 1px solid rgba(250, 204, 21, 0.08);
  background: rgba(13, 13, 16, 0.86);
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 30px;
}

.footer-inner p {
  margin: 12px 0 0;
  color: var(--night-300);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
  color: var(--night-300);
}

.footer-links a:hover {
  color: var(--gold-400);
}

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

  .header-search {
    width: min(420px, 44vw);
  }

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

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

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

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

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

  .hero-poster {
    display: none;
  }

  .search-panel,
  .rank-grid,
  .detail-inner,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .side-column {
    grid-row: auto;
  }
}

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

  .site-logo {
    font-size: 18px;
  }

  .hero,
  .hero-stage,
  .hero-slide {
    min-height: 560px;
  }

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

  .hero-desc {
    font-size: 17px;
  }

  .hero-controls {
    bottom: 18px;
  }

  .page-section {
    padding-top: 52px;
  }

  .section-heading,
  .slim-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .slim-hero {
    padding: 30px;
  }

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

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

  .rank-item,
  .ranking-page-list .rank-item {
    grid-template-columns: 38px 64px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-item img {
    width: 64px;
  }

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

  .detail-inner {
    padding: 42px 0;
  }

  .detail-layout {
    padding: 44px 0 60px;
  }

  .content-card {
    padding: 22px;
  }
}
