:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --blue-50: #eff6ff;
  --blue-700: #1d4ed8;
  --red-600: #dc2626;
  --white: #ffffff;
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 24px 70px rgba(15, 23, 42, 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f3f4f6 100%);
  color: var(--gray-900);
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #f8fafc;
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.24);
}

.nav-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #083344;
  background: linear-gradient(135deg, var(--cyan-400), #67e8f9, #d9f99d);
  box-shadow: 0 12px 24px rgba(34, 211, 238, 0.22);
}

.brand-text {
  color: #ffffff;
  font-size: 20px;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 650;
  font-size: 15px;
}

.desktop-nav a,
.mobile-nav a {
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--cyan-400);
}

.search-box {
  position: relative;
}

.desktop-search {
  margin-left: auto;
  width: min(300px, 28vw);
}

.search-input,
.filter-input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  padding: 12px 18px;
  color: #0f172a;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus,
.filter-input:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
}

.search-results {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(420px, 92vw);
  max-height: 460px;
  overflow: auto;
  background: rgba(255, 255, 255, 0.98);
  color: var(--gray-900);
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(148, 163, 184, 0.24);
  padding: 10px;
  display: none;
}

.search-results.is-open {
  display: block;
}

.search-result-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.search-result-item:hover {
  background: var(--cyan-50);
}

.search-result-item img {
  width: 48px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--gray-200);
}

.search-result-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.search-result-item span {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.45;
}

.menu-button {
  display: none;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 10px 12px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 0 20px 18px;
  background: var(--slate-800);
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

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

.mobile-search {
  margin: 14px 0;
}

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

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 46px 20px 34px;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(6, 182, 212, 0.35), transparent 36%), linear-gradient(135deg, #020617 0%, #0f172a 48%, #164e63 100%);
}

.hero-shell {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.28;
  pointer-events: none;
}

.hero-glow.one {
  top: 8%;
  left: 6%;
  background: #22d3ee;
}

.hero-glow.two {
  right: 6%;
  bottom: 4%;
  background: #60a5fa;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 44px;
  align-items: center;
  min-height: 520px;
}

.hero-slide.is-active {
  display: grid;
}

.hero-image {
  position: relative;
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: rotate(-1.2deg);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.35), rgba(2, 6, 23, 0.03));
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.hero-label,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 16px;
  color: #083344;
  background: linear-gradient(135deg, #67e8f9, #cffafe);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero-one-line {
  margin: 20px 0 12px;
  color: #e0f2fe;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 700;
  line-height: 1.45;
}

.hero-summary {
  margin: 0 0 22px;
  max-width: 620px;
  color: #cbd5e1;
  line-height: 1.85;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-list span {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  color: #bae6fd;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.primary-button {
  color: #083344;
  background: linear-gradient(135deg, #67e8f9, #a7f3d0);
  box-shadow: 0 14px 30px rgba(6, 182, 212, 0.28);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.36);
}

.hero-dot.is-active {
  width: 34px;
  background: #67e8f9;
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.035em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-more {
  color: var(--cyan-700);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

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

.channel-card,
.category-tile {
  position: relative;
  min-height: 180px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--slate-900);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.channel-card:hover,
.category-tile:hover,
.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.channel-card img,
.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 0.45s ease;
}

.channel-card:hover img,
.category-tile:hover img,
.movie-card:hover img {
  transform: scale(1.06);
}

.channel-card span,
.tile-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), transparent);
}

.channel-card strong,
.tile-overlay strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.channel-card em,
.tile-overlay em,
.tile-overlay b {
  display: block;
  color: #cbd5e1;
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
}

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

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

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

.movie-card {
  position: relative;
  display: block;
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

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

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

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

.rank-badge {
  left: auto;
  right: 12px;
  background: var(--red-600);
}

.card-body {
  display: block;
  padding: 15px;
}

.card-body strong {
  display: block;
  color: var(--gray-900);
  font-size: 16px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.movie-card:hover .card-body strong {
  color: var(--cyan-700);
}

.card-desc {
  display: -webkit-box;
  min-height: 40px;
  margin: 8px 0 12px;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.55;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--gray-500);
  font-size: 12px;
}

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

.rank-panel {
  position: sticky;
  top: 96px;
  border-radius: 24px;
  padding: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.rank-panel h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.rank-list,
.rank-lines {
  display: grid;
  gap: 10px;
}

.rank-row,
.rank-line {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #f8fafc;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover,
.rank-line:hover {
  transform: translateX(3px);
  background: var(--cyan-50);
}

.rank-num {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan-600), var(--blue-700));
  font-weight: 900;
}

.rank-title {
  min-width: 0;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-title em {
  display: block;
  margin-top: 4px;
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-extra {
  color: var(--gray-500);
  font-size: 12px;
  white-space: nowrap;
}

.rank-line {
  grid-template-columns: 42px 64px minmax(0, 1fr) auto;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.rank-cover img {
  width: 54px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 44px;
  border-radius: 32px;
  color: #ffffff;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.32), transparent 30%), linear-gradient(135deg, var(--slate-900), var(--slate-800));
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.045em;
}

.page-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #cbd5e1;
  line-height: 1.75;
}

.category-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.category-stats {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.category-stats strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.category-stats span {
  color: #cbd5e1;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--gray-700);
  background: var(--gray-100);
  cursor: pointer;
}

.filter-chip.is-active {
  color: #ffffff;
  background: var(--cyan-600);
}

.filter-count {
  color: var(--gray-600);
  font-weight: 800;
  white-space: nowrap;
}

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

.breadcrumb {
  max-width: 1280px;
  margin: 28px auto 16px;
  padding: 0 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--gray-600);
  font-size: 14px;
}

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

.detail-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

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

.video-box {
  position: relative;
  background: #000000;
  aspect-ratio: 16 / 9;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0.24));
}

.video-overlay.is-hidden {
  display: none;
}

.play-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #083344;
  background: #ffffff;
  font-size: 32px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.player-message {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.72);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  display: none;
}

.player-message.is-open {
  display: block;
}

.detail-copy {
  padding: 28px;
}

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

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.detail-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 13px;
  font-weight: 700;
}

.detail-copy .tag-list span {
  color: var(--blue-700);
  background: #dbeafe;
  border: 0;
}

.text-block {
  margin-top: 26px;
}

.text-block h2,
.side-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.text-block p {
  margin: 0 0 12px;
  color: var(--gray-700);
  line-height: 1.9;
}

.lead-text {
  color: var(--gray-900) !important;
  font-weight: 800;
}

.detail-side {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 18px;
}

.detail-poster {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  background: var(--gray-200);
}

.side-card {
  padding: 22px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px 12px;
  margin: 0;
  color: var(--gray-700);
}

.side-card dt {
  font-weight: 800;
  color: var(--gray-900);
}

.side-card dd {
  margin: 0;
  min-width: 0;
}

.related-section {
  padding-top: 20px;
}

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

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

.site-footer {
  margin-top: 36px;
  color: #cbd5e1;
  background: linear-gradient(90deg, var(--slate-950), var(--slate-900), var(--slate-950));
}

.footer-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-brand p {
  margin: 0;
  max-width: 520px;
  color: #94a3b8;
  line-height: 1.8;
}

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

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 14px;
}

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

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

  .menu-button {
    display: inline-flex;
    margin-left: 0;
  }

  .desktop-search {
    margin-left: auto;
    width: min(360px, 42vw);
  }

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

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

  .rank-panel,
  .detail-side {
    position: static;
  }

  .detail-side {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    gap: 12px;
  }

  .desktop-search {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    min-height: 360px;
  }

  .hero-image img {
    min-height: 360px;
  }

  .channel-grid,
  .category-tile-grid,
  .compact-grid,
  .hot-grid,
  .movie-grid,
  .category-grid,
  .related-grid,
  .top-rank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .category-hero,
  .filter-bar {
    display: block;
  }

  .section-more {
    margin-top: 14px;
  }

  .category-stats {
    width: 120px;
    height: 120px;
    margin-top: 24px;
  }

  .filter-chips,
  .filter-count {
    margin-top: 12px;
  }

  .detail-side {
    grid-template-columns: 1fr;
  }

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

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .rank-line {
    grid-template-columns: 36px 48px minmax(0, 1fr);
  }

  .rank-line .rank-extra {
    grid-column: 3;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 17px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero-image,
  .hero-image img {
    min-height: 300px;
  }

  .content-section {
    padding: 34px 14px;
  }

  .page-hero {
    margin: 16px 14px 0;
    padding: 28px 22px;
    border-radius: 24px;
  }

  .movie-grid,
  .channel-grid,
  .category-tile-grid,
  .compact-grid,
  .hot-grid,
  .category-grid,
  .related-grid {
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .card-desc {
    display: none;
  }

  .detail-layout,
  .breadcrumb {
    padding-left: 14px;
    padding-right: 14px;
  }

  .detail-copy {
    padding: 20px;
  }

  .side-card dl {
    grid-template-columns: 1fr;
  }
}
