:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --green-50: #f0fdf4;
  --green-700: #15803d;
  --blue-50: #eff6ff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--gray-800);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, var(--amber-50) 0%, var(--green-50) 50%, var(--blue-50) 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(240, 253, 244, 0.96));
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--gray-900);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--green-700));
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.3);
  transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
  transform: rotate(12deg) scale(1.04);
}

.brand-name {
  font-size: 20px;
}

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

.nav-link {
  position: relative;
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 650;
  transition: color 0.2s ease;
}

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

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

.nav-search,
.mobile-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.nav-search input,
.mobile-search input {
  width: 210px;
  border: 0;
  outline: 0;
  padding: 11px 14px;
  background: transparent;
  color: var(--gray-800);
}

.nav-search button,
.mobile-search button {
  border: 0;
  padding: 11px 18px;
  color: var(--white);
  background: var(--amber-500);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--amber-100);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--amber-600);
}

.mobile-panel {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

.mobile-brand {
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--amber-600);
}

.mobile-link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
  color: var(--gray-700);
  font-weight: 650;
}

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

.mobile-search input {
  width: 100%;
}

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(120, 53, 15, 0.96), rgba(20, 83, 45, 0.94));
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-bg.image-off,
.detail-bg.image-off,
.poster-frame img.image-off,
.detail-poster img.image-off,
.category-card img.image-off,
.category-cover-stack img.image-off {
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(120, 53, 15, 0.92), rgba(20, 83, 45, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.hero-kicker,
.detail-kicker,
.page-hero p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #fde68a;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-kicker::before,
.detail-kicker::before,
.page-hero p::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.18);
  content: "";
}

.hero-content h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  width: min(760px, 100%);
  margin: 0 auto 22px;
  color: #fef3c7;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.7;
}

.hero-tags,
.detail-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.tag-row {
  justify-content: flex-start;
}

.tag-row span {
  border-color: rgba(217, 119, 6, 0.14);
  color: var(--amber-600);
  background: var(--amber-50);
  backdrop-filter: none;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.primary-btn,
.ghost-btn,
.section-more,
.panel-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
  min-width: 138px;
  padding: 14px 28px;
  color: var(--white);
  background: var(--amber-500);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.35);
}

.ghost-btn {
  min-width: 138px;
  padding: 13px 26px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.panel-link:hover,
.text-link:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dots button {
  width: 34px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--amber-500);
}

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

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

.section-heading p {
  margin: 0 0 6px;
  color: var(--amber-600);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.section-more,
.panel-link,
.text-link {
  color: var(--amber-600);
}

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

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

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

.video-card {
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.3), transparent 32%),
    linear-gradient(135deg, var(--amber-100), #bbf7d0);
}

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

.video-card:hover .poster-frame img {
  transform: scale(1.06);
}

.quality-badge,
.duration-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  background: rgba(17, 24, 39, 0.76);
  backdrop-filter: blur(8px);
}

.quality-badge {
  top: 12px;
  right: 12px;
  background: rgba(217, 119, 6, 0.86);
}

.duration-badge {
  right: 12px;
  bottom: 12px;
}

.rank-badge {
  top: 12px;
  left: 12px;
  background: rgba(220, 38, 38, 0.86);
}

.card-body {
  padding: 18px;
}

.card-meta,
.card-foot,
.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gray-500);
  font-size: 13px;
}

.card-meta span:not(:last-child)::after,
.detail-stats span:not(:last-child)::after {
  margin-left: 10px;
  color: rgba(107, 114, 128, 0.5);
  content: "·";
}

.card-body h3 {
  display: -webkit-box;
  min-height: 56px;
  margin: 10px 0 8px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 850;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.card-foot {
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-weight: 700;
}

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

.category-card {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(120, 53, 15, 0.9), rgba(21, 128, 61, 0.88));
  box-shadow: var(--soft-shadow);
}

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

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

.category-card span,
.category-card p {
  position: relative;
  z-index: 2;
}

.category-card span {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 900;
}

.category-card p {
  max-width: 260px;
  margin: 0;
  color: #fef3c7;
  line-height: 1.7;
}

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

.rank-panel {
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: var(--radius-xl);
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.sticky-panel {
  position: sticky;
  top: 92px;
}

.panel-title {
  margin-bottom: 18px;
  color: var(--gray-900);
  font-size: 24px;
  font-weight: 900;
}

.rank-list {
  display: grid;
  gap: 8px;
}

.rank-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 10px;
  color: var(--gray-700);
  background: rgba(254, 243, 199, 0.48);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  background: var(--amber-100);
}

.rank-no {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--amber-500);
  font-weight: 900;
}

.rank-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 750;
}

.rank-score {
  color: var(--amber-600);
  font-weight: 900;
  text-align: right;
}

.panel-link {
  margin-top: 18px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(120, 53, 15, 0.96), rgba(20, 83, 45, 0.94));
}

.page-hero {
  padding: 92px 0;
  color: var(--white);
}

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

.page-hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 900;
}

.page-hero span {
  display: block;
  max-width: 760px;
  color: #fef3c7;
  font-size: 18px;
  line-height: 1.8;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 22px;
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: var(--radius-xl);
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--amber-100);
}

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

.category-overview-card h2 {
  margin: 8px 0 12px;
  color: var(--gray-900);
  font-size: 26px;
  font-weight: 900;
}

.category-overview-card p {
  margin: 0 0 18px;
  color: var(--gray-500);
  line-height: 1.75;
}

.filter-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: var(--radius-xl);
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--soft-shadow);
}

.filter-search input {
  width: 100%;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 999px;
  outline: 0;
  padding: 14px 18px;
  background: var(--white);
  color: var(--gray-800);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-buttons button {
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
}

.filter-buttons button.is-active {
  border-color: var(--amber-500);
  color: var(--white);
  background: var(--amber-500);
}

.empty-state {
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  color: var(--gray-500);
  background: rgba(255, 255, 255, 0.78);
}

.detail-hero {
  min-height: 640px;
  color: var(--white);
}

.detail-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(120, 53, 15, 0.95), rgba(20, 83, 45, 0.9));
}

.detail-shell {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 60px;
}

.breadcrumb,
.breadcrumb-separator {
  color: #fef3c7;
  font-weight: 700;
}

.breadcrumb:hover {
  color: var(--white);
}

.detail-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  margin-top: 52px;
}

.detail-poster {
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--amber-100), #bbf7d0);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

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

.detail-info h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 950;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 24px;
  color: #fef3c7;
  font-size: 21px;
  line-height: 1.75;
}

.detail-tags {
  justify-content: flex-start;
  margin-bottom: 24px;
}

.detail-stats {
  margin-bottom: 30px;
  color: #fde68a;
  font-weight: 800;
}

.detail-content {
  padding-top: 48px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: var(--shadow);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  cursor: pointer;
  transition: opacity 0.25s ease;
}

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

.play-icon {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: var(--white);
  background: var(--amber-500);
  box-shadow: 0 0 0 16px rgba(245, 158, 11, 0.2);
  font-size: 32px;
}

.player-overlay strong {
  display: block;
  font-size: 22px;
}

.player-line {
  position: absolute;
  right: 18px;
  bottom: 16px;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(17, 24, 39, 0.78);
  font-size: 13px;
  font-weight: 800;
  pointer-events: none;
}

.detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  margin-top: 28px;
}

.detail-card {
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: var(--radius-xl);
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.detail-card h2 {
  margin: 0 0 16px;
  color: var(--gray-900);
  font-size: 26px;
  font-weight: 900;
}

.detail-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.9;
}

.meta-card dl {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px 16px;
  margin: 0;
}

.meta-card dt {
  color: var(--gray-500);
}

.meta-card dd {
  margin: 0;
  color: var(--gray-800);
  font-weight: 800;
}

.site-footer {
  margin-top: 40px;
  color: #fef3c7;
  background: linear-gradient(90deg, #78350f, #14532d);
}

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

.footer-brand {
  color: var(--white);
  font-size: 24px;
}

.site-footer p {
  margin: 14px 0 0;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.footer-links a {
  color: #fef3c7;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
  text-align: center;
  color: rgba(254, 243, 199, 0.82);
}

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

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

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

  .sticky-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero-carousel {
    height: 560px;
  }

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

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

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

  .detail-poster {
    width: min(320px, 100%);
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .brand-name {
    font-size: 18px;
  }

  .hero-carousel {
    height: 620px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-tags,
  .hero-actions {
    justify-content: flex-start;
  }

  .content-section {
    padding: 42px 0;
  }

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

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

  .card-body {
    padding: 14px;
  }

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

  .card-body p,
  .card-foot,
  .card-meta {
    font-size: 12px;
  }

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

  .detail-shell {
    padding-bottom: 42px;
  }

  .detail-info h1 {
    font-size: 38px;
  }

  .detail-one-line {
    font-size: 17px;
  }

  .play-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }
}

@media (max-width: 430px) {
  .video-grid,
  .compact-grid,
  .listing-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }
}
