:root {
  --bg: #f9fafb;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --dark: #0f172a;
  --amber: #d97706;
  --amber-dark: #b45309;
  --amber-soft: #fef3c7;
  --blue: #2563eb;
  --green: #16a34a;
  --purple: #7c3aed;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-solid,
.site-header.is-scrolled {
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

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

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

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: var(--amber);
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.28);
}

.logo-text {
  font-size: 20px;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: var(--amber);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.site-header.is-solid .header-search,
.site-header.is-scrolled .header-search,
.mobile-search {
  border-color: var(--line);
  background: #f3f4f6;
}

.header-search input,
.mobile-search input {
  width: 150px;
  border: 0;
  outline: 0;
  color: inherit;
  background: transparent;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: currentColor;
  opacity: 0.65;
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 7px 13px;
  color: #ffffff;
  background: var(--amber);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: inherit;
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-solid .mobile-toggle,
.site-header.is-scrolled .mobile-toggle {
  background: #f3f4f6;
}

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

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

.mobile-nav {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.mobile-nav .nav-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
}

.hero-carousel {
  position: relative;
  height: 500px;
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 46px 0 72px;
}

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

.hero-tags,
.detail-tags,
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-tags span,
.detail-tags span,
.category-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-tags span:nth-child(1) {
  background: var(--amber);
}

.hero-tags span:nth-child(2) {
  background: rgba(37, 99, 235, 0.88);
}

.hero-tags span:nth-child(3) {
  background: rgba(22, 163, 74, 0.88);
}

.hero-tags span:nth-child(4) {
  background: rgba(124, 58, 237, 0.88);
}

.hero-title {
  margin: 0 0 10px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-movie-title {
  margin: 0 0 12px;
  font-size: clamp(25px, 4vw, 44px);
  line-height: 1.18;
  font-weight: 850;
}

.hero-summary {
  max-width: 680px;
  margin: 0 0 28px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
}

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

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

.btn-primary {
  color: #ffffff;
  background: var(--amber);
  box-shadow: 0 15px 35px rgba(217, 119, 6, 0.32);
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--amber);
  background: var(--amber-soft);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

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

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

.hero-dot.is-active {
  width: 36px;
  background: #ffffff;
}

.section {
  padding: 72px 0;
}

.section-white {
  background: #ffffff;
}

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

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-size: 24px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.26);
}

.section h2,
.page-hero h1,
.detail-main h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-subtitle,
.page-hero p {
  margin: 8px 0 0;
  color: var(--muted);
}

.underline-bar {
  width: 86px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f59e0b, #f97316);
}

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

.category-tile {
  position: relative;
  display: block;
  min-height: 180px;
  overflow: hidden;
  border-radius: 24px;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #374151);
  box-shadow: var(--soft-shadow);
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.45), transparent 34%), linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.06));
}

.category-tile h3,
.category-tile p,
.category-tile span {
  position: relative;
  z-index: 1;
}

.category-tile h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 850;
}

.category-tile p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.category-tile span {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #374151);
}

.movie-card-large .poster-wrap {
  aspect-ratio: 16 / 10;
}

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

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 58%);
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-wrap::after {
  opacity: 1;
}

.year-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.72);
}

.rank-badge {
  left: 10px;
  right: auto;
  background: var(--amber);
}

.poster-hover {
  position: absolute;
  z-index: 3;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.poster-hover span {
  border-radius: 7px;
  padding: 5px 8px;
  color: #ffffff;
  font-size: 12px;
  background: var(--amber);
}

.poster-hover span:nth-child(2) {
  background: var(--blue);
}

.movie-card:hover .poster-hover {
  opacity: 1;
  transform: translateY(0);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 850;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--amber);
}

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

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

.card-meta span:first-child {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 4px 9px;
  color: #92400e;
  background: var(--amber-soft);
}

.card-meta span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-tags {
  margin-top: 10px;
  overflow: hidden;
  color: #9ca3af;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: start;
}

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

.compact-card a {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card a:hover {
  background: #fffbeb;
  transform: translateX(4px);
}

.compact-card img {
  width: 118px;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
  background: #111827;
}

.compact-card h3 {
  margin: 0 0 4px;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.compact-card p {
  display: -webkit-box;
  margin: 0 0 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.compact-card span {
  color: #92400e;
  font-size: 12px;
}

.page-hero {
  padding: 128px 0 56px;
  color: #ffffff;
  background: radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.46), transparent 30%), linear-gradient(135deg, #111827, #020617 66%);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.category-tags span {
  color: #92400e;
  background: var(--amber-soft);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 190px));
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.search-panel input,
.search-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text);
  background: #f9fafb;
  outline: 0;
}

.search-empty {
  display: none;
  padding: 42px;
  border-radius: 22px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.search-empty.is-visible {
  display: block;
}

.detail-page {
  padding: 110px 0 72px;
}

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

.detail-main,
.detail-side-card {
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.player-card {
  position: relative;
  overflow: hidden;
  background: #000000;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  color: #ffffff;
  background: #000000;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.16));
}

.player-icon {
  position: relative;
  z-index: 3;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  padding-left: 5px;
  color: #ffffff;
  font-size: 34px;
  background: var(--amber);
  box-shadow: 0 16px 34px rgba(217, 119, 6, 0.36);
  transition: transform 0.2s ease;
}

.player-cover:hover .player-icon {
  transform: scale(1.08);
}

.detail-content {
  padding: 28px;
}

.detail-tags span {
  color: #92400e;
  background: var(--amber-soft);
}

.detail-tags span:nth-child(2) {
  color: #1d4ed8;
  background: #dbeafe;
}

.detail-tags span:nth-child(3) {
  color: #15803d;
  background: #dcfce7;
}

.detail-tags span:nth-child(4) {
  color: #6d28d9;
  background: #ede9fe;
}

.lead-box {
  margin: 22px 0;
  border-left: 5px solid var(--amber);
  border-radius: 16px;
  padding: 18px 20px;
  color: #713f12;
  background: #fffbeb;
  font-weight: 700;
}

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

.content-block h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 850;
}

.content-block p {
  margin: 0;
  color: #374151;
  white-space: pre-line;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag-list span {
  border-radius: 999px;
  padding: 6px 12px;
  color: #374151;
  background: #f3f4f6;
}

.review-box {
  border-radius: 18px;
  padding: 22px;
  background: #fffbeb;
}

.detail-side {
  position: sticky;
  top: 92px;
}

.detail-side-card {
  padding: 20px;
}

.detail-side-card > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  object-fit: cover;
  background: #111827;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.meta-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 10px;
  color: var(--muted);
}

.meta-list strong {
  color: var(--text);
  text-align: right;
}

.related-wrap {
  margin-top: 24px;
}

.related-wrap h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, #111827, #000000);
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr;
  gap: 30px;
}

.footer-logo {
  color: #ffffff;
  font-size: 20px;
}

.site-footer p {
  max-width: 360px;
  color: #9ca3af;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 18px;
}

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

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

.footer-bottom {
  width: min(100% - 32px, 1280px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 40px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  color: #6b7280;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.back-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  width: 48px;
  height: 48px;
  display: none;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--amber);
  box-shadow: var(--shadow);
}

.back-top.is-visible {
  display: block;
}

.about-card {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 28px;
  padding: clamp(24px, 5vw, 48px);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.about-card h2 {
  margin: 28px 0 10px;
  font-size: 24px;
}

.about-card p {
  color: #4b5563;
}

@media (min-width: 768px) {
  .hero-carousel {
    height: 600px;
  }
}

@media (min-width: 1100px) {
  .hero-carousel {
    height: 700px;
  }
}

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

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

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

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

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

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

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

  .detail-side {
    position: static;
  }

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

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

  .hero-carousel {
    height: 560px;
  }

  .hero-content {
    padding-bottom: 66px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-summary {
    font-size: 16px;
  }

  .section {
    padding: 52px 0;
  }

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

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

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

  .card-body {
    padding: 13px;
  }

  .card-body h3 {
    min-height: 44px;
    font-size: 15px;
  }

  .card-body p,
  .card-tags {
    display: none;
  }

  .compact-card a {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .compact-card img {
    width: 96px;
    height: 66px;
  }

  .detail-page {
    padding-top: 96px;
  }

  .detail-content {
    padding: 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
