:root {
  --bg: #f9fafb;
  --surface: #ffffff;
  --surface-soft: #fff7f7;
  --text: #111827;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --line: #e5e7eb;
  --primary: #dc2626;
  --primary-dark: #7f1d1d;
  --primary-soft: #fee2e2;
  --shadow: 0 18px 40px rgba(17, 24, 39, 0.10);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #991b1b);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.28);
}

.brand-name {
  font-size: 20px;
  color: var(--text);
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #374151;
  font-size: 15px;
}

.desktop-nav a,
.nav-dropdown > button {
  color: #374151;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.nav-dropdown > button:hover {
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-dropdown-menu {
  position: absolute;
  top: 28px;
  left: 0;
  display: grid;
  width: 220px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  padding: 9px 12px;
  border-radius: 10px;
}

.nav-dropdown-menu a:hover {
  background: var(--primary-soft);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-search input,
.hero-search input,
.filter-panel input,
.filter-panel select {
  border: 1px solid var(--line);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 230px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #ffffff;
}

.header-search input:focus,
.hero-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.header-search button,
.hero-search button,
.watch-button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button {
  padding: 10px 16px;
  border-radius: 999px;
}

.header-search button:hover,
.hero-search button:hover,
.watch-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(220, 38, 38, 0.30);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 12px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  background: #111827;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid #f3f4f6;
  color: #374151;
}

.mobile-nav.is-open {
  display: block;
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(248, 113, 113, 0.36), transparent 30%),
    radial-gradient(circle at 88% 26%, rgba(251, 146, 60, 0.24), transparent 34%),
    linear-gradient(135deg, #7f1d1d 0%, #991b1b 42%, #dc2626 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 52%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 36px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #fee2e2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: #fee2e2;
  font-size: 19px;
  line-height: 1.8;
}

.hero-search {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin-top: 28px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  color: #111827;
  background: #ffffff;
  border-radius: 999px;
}

.hero-search button {
  padding: 0 22px;
  border-radius: 999px;
  white-space: nowrap;
}

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

.hero-stats span {
  padding: 8px 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 155px;
  gap: 16px;
}

.hero-card {
  position: relative;
  min-height: 155px;
  overflow: hidden;
  border-radius: 18px;
  background: #111827;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.hero-card-large {
  grid-column: span 3;
  grid-row: span 2;
}

.hero-card:not(.hero-card-large) {
  grid-column: span 2;
}

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

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

.hero-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent 62%);
}

.hero-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 20px;
}

.hero-card-content strong {
  font-size: 20px;
  line-height: 1.3;
}

.hero-card-content em {
  display: -webkit-box;
  overflow: hidden;
  color: #e5e7eb;
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.section-block.muted {
  width: 100%;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  background: #ffffff;
}

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

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

.section-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

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

.section-heading a {
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}

.section-kicker {
  color: var(--primary);
}

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

.category-card {
  position: relative;
  min-height: 152px;
  padding: 24px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #991b1b);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(153, 27, 27, 0.24);
}

.category-card h3 {
  margin: 28px 0 8px;
  font-size: 23px;
}

.category-card p {
  margin: 0;
  color: #fee2e2;
  line-height: 1.6;
}

.category-count {
  position: absolute;
  top: 18px;
  left: 20px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
}

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

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

.horizontal-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scroll-snap-type: x mandatory;
}

.horizontal-scroll .movie-card {
  scroll-snap-align: start;
}

.movie-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(229, 231, 235, 0.76);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.30);
  box-shadow: var(--shadow);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(127, 29, 29, 0.92), rgba(239, 68, 68, 0.76)),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.26), transparent 32%);
}

.poster-frame::before {
  content: attr(data-title);
  position: absolute;
  inset: auto 18px 18px;
  z-index: 0;
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.poster-img,
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-img {
  transition: transform 0.36s ease, opacity 0.2s ease;
}

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

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

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 800;
}

.play-chip {
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  color: #ffffff;
  background: rgba(220, 38, 38, 0.92);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.rank-badge {
  top: 12px;
  left: 12px;
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #dc2626);
}

.card-body {
  padding: 16px;
}

.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.category-pill {
  display: inline-flex;
  padding: 5px 9px;
  color: #991b1b;
  background: var(--primary-soft);
  border-radius: 999px;
  font-weight: 700;
}

.card-body h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 12px 0 8px;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body h3 a:hover {
  color: var(--primary);
}

.card-line {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-tags span,
.detail-tags span {
  padding: 5px 9px;
  color: #4b5563;
  background: #f3f4f6;
  border-radius: 999px;
  font-size: 12px;
}

.compact-card .poster-frame {
  aspect-ratio: 16 / 9;
}

.compact-card .card-body h3 {
  min-height: 0;
  font-size: 16px;
}

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

.page-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(248, 113, 113, 0.28), transparent 30%),
    linear-gradient(135deg, #991b1b, #7f1d1d);
}

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

.page-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: #fee2e2;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb strong {
  color: #ffffff;
}

.detail-breadcrumb {
  margin-bottom: 22px;
  color: var(--muted);
}

.detail-breadcrumb strong {
  color: var(--text);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 0.28fr));
  gap: 14px;
  align-items: end;
  margin-bottom: 28px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 700;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  padding: 12px 12px;
  color: var(--text);
  background: #ffffff;
  border-radius: 12px;
}

.filter-count {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

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

.category-overview-block {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.detail-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 60px;
}

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

.detail-main,
.aside-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
}

.detail-main {
  overflow: hidden;
}

.player-shell {
  position: relative;
  overflow: hidden;
  background: #050505;
}

.movie-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.66));
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.player-shell.is-ready .player-overlay {
  pointer-events: auto;
}

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

.player-play {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: #ffffff;
  border: 0;
  background: rgba(220, 38, 38, 0.94);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  font-size: 30px;
  pointer-events: auto;
}

.detail-content {
  padding: 28px;
}

.detail-content h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.detail-meta span {
  padding: 7px 11px;
  color: #4b5563;
  background: #f3f4f6;
  border-radius: 999px;
  font-size: 14px;
}

.lead-text {
  margin: 22px 0;
  color: #991b1b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.detail-content section {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.detail-content h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-content p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
}

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

.info-list div {
  padding: 14px;
  background: #f9fafb;
  border-radius: 12px;
}

.info-list dt {
  color: var(--muted);
  font-size: 13px;
}

.info-list dd {
  margin: 6px 0 0;
  font-weight: 700;
}

.detail-aside {
  display: grid;
  gap: 20px;
}

.aside-card {
  padding: 18px;
}

.poster-aside .poster-frame {
  border-radius: 14px;
}

.watch-button {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 800;
}

.aside-card h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

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

.aside-related .compact-card {
  box-shadow: none;
}

.sitemap-wrap {
  display: grid;
  gap: 26px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 50px 0;
}

.sitemap-group {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sitemap-group h2 {
  margin: 0 0 18px;
}

.sitemap-group h2 a {
  color: var(--primary);
}

.sitemap-group ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sitemap-group li {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.sitemap-group li a {
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sitemap-group li a:hover {
  color: var(--primary);
}

.sitemap-group li span {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

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

.footer-brand {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 20px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  line-height: 1.75;
}

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

.site-footer a:hover {
  color: #fca5a5;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: #9ca3af;
  text-align: center;
}

@media (max-width: 1100px) {
  .hero-inner,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-card-large {
    grid-column: span 4;
  }

  .hero-card:not(.hero-card-large) {
    grid-column: span 2;
  }

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

  .rank-grid,
  .footer-grid,
  .sitemap-group ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .header-inner {
    justify-content: space-between;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-inner {
    padding: 56px 0;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .hero-card-large,
  .hero-card:not(.hero-card-large) {
    grid-column: span 2;
  }

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

  .category-grid,
  .movie-grid,
  .rank-grid,
  .footer-grid,
  .sitemap-group ul,
  .info-list {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .brand-name {
    max-width: 9em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-search {
    flex-direction: column;
    border-radius: 20px;
  }

  .hero-search button {
    padding: 13px 18px;
  }

  .hero-grid {
    grid-auto-rows: 210px;
  }

  .section-block,
  .page-hero > div,
  .detail-wrap,
  .sitemap-wrap,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .detail-content,
  .aside-card {
    padding: 16px;
  }
}
