:root {
  color-scheme: light;
  --page-bg: #fff7ed;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: rgba(148, 163, 184, 0.32);
  --amber: #d97706;
  --amber-dark: #b45309;
  --orange: #ea580c;
  --slate: #0f172a;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.13);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(251, 191, 36, 0.26), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(249, 115, 22, 0.15), transparent 26rem),
    linear-gradient(135deg, #fffbeb 0%, #fff7ed 45%, #f8fafc 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.32);
}

.brand-text {
  font-size: 24px;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link,
.nav-button {
  border: 0;
  background: transparent;
  color: #374151;
  font-weight: 650;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.nav-dropdown {
  position: relative;
  padding: 20px 0;
}

.dropdown-panel {
  position: absolute;
  top: 58px;
  left: 0;
  width: 180px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #4b5563;
  font-size: 14px;
}

.dropdown-panel a:hover {
  color: var(--amber);
  background: #fffbeb;
}

.header-search,
.mobile-search,
.big-search,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.big-search input,
.search-page-form input,
.filter-box input {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 210px;
  padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.search-page-form input:focus,
.filter-box input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.header-search button,
.mobile-search button,
.big-search button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  cursor: pointer;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #f3f4f6;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #1f2937;
  border-radius: 99px;
}

.mobile-panel {
  padding: 14px 24px 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.mobile-link {
  display: block;
  padding: 11px 0;
  color: #374151;
  font-weight: 650;
}

.mobile-link.muted {
  color: var(--muted);
  font-weight: 500;
}

.mobile-divider {
  height: 1px;
  margin: 8px 0;
  background: var(--line);
}

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

.mobile-search input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
}

main {
  min-height: 60vh;
}

.hero-shell,
.section-wrap,
.page-hero,
.detail-hero {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-shell {
  padding: 32px 0 22px;
}

.hero-carousel {
  position: relative;
  height: 610px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: var(--slate);
}

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

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

.hero-slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.55) 45%, rgba(15, 23, 42, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68) 0%, transparent 45%);
}

.hero-content {
  position: absolute;
  left: clamp(28px, 7vw, 84px);
  bottom: clamp(48px, 10vw, 92px);
  max-width: 720px;
  color: white;
}

.eyebrow {
  margin: 0 0 10px;
  color: #f59e0b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.hero-meta,
.detail-meta {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-desc {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-actions,
.detail-copy .primary-button {
  margin-top: 26px;
}

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

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 34px rgba(217, 119, 6, 0.28);
}

.ghost-button {
  margin-left: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

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

.hero-controls {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 28px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dot.active {
  width: 28px;
  background: #f59e0b;
}

.section-wrap {
  padding: 48px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 28px;
  align-items: center;
}

.intro-copy,
.page-hero,
.ranking-panel,
.detail-content article {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.intro-copy {
  padding: 34px;
}

.intro-copy h2,
.section-heading h2,
.page-hero h1,
.detail-content h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.intro-copy h2,
.section-heading h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.intro-copy p:last-child,
.page-hero p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.big-search,
.search-page-form {
  padding: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.big-search input,
.search-page-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
}

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

.section-heading a,
.text-link {
  color: var(--amber);
  font-weight: 800;
}

.compact-heading {
  align-items: center;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111827;
}

.poster-link img,
.list-poster img,
.category-card img,
.category-thumb img,
.detail-poster img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover img,
.list-card:hover img,
.category-card:hover img,
.category-overview-card:hover img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.58));
  opacity: 0;
  transition: opacity 0.2s ease;
}

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

.play-badge,
.score-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.play-badge {
  inset: 50% auto auto 50%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: white;
  background: rgba(217, 119, 6, 0.92);
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
  transition: 0.2s ease;
}

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

.score-badge {
  top: 12px;
  right: 12px;
  min-width: 44px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #78350f;
  background: #fef3c7;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.score-badge.large {
  top: 18px;
  right: 18px;
  height: 42px;
  min-width: 62px;
  font-size: 18px;
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.card-body h3 a:hover,
.list-info h3 a:hover,
.category-overview-card h2 a:hover {
  color: var(--amber);
}

.card-meta,
.card-desc,
.list-info p,
.detail-one,
.detail-content p {
  color: var(--muted);
}

.card-meta,
.card-desc {
  margin: 0;
  font-size: 14px;
}

.card-desc {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card.compact .card-body h3 {
  font-size: 15px;
}

.movie-card.compact .card-desc {
  display: none;
}

.band-section {
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.8), rgba(255, 237, 213, 0.8));
  border-top: 1px solid rgba(251, 191, 36, 0.25);
  border-bottom: 1px solid rgba(251, 191, 36, 0.25);
}

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

.category-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 24px;
  color: white;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.category-card img {
  position: absolute;
  inset: 0;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.82));
}

.category-name,
.category-desc {
  position: absolute;
  left: 18px;
  right: 18px;
}

.category-name {
  bottom: 58px;
  font-size: 22px;
  font-weight: 900;
}

.category-desc {
  bottom: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

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

.list-stack {
  display: grid;
  gap: 16px;
}

.list-card {
  display: grid;
  grid-template-columns: auto 86px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.list-card .rank-no {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 900;
}

.list-poster {
  display: block;
  height: 112px;
  border-radius: 14px;
  overflow: hidden;
  background: #111827;
}

.list-info h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.list-info p {
  margin: 2px 0;
  font-size: 14px;
}

.ranking-panel {
  padding: 22px;
}

.ranking-list .list-card {
  grid-template-columns: auto 64px minmax(0, 1fr);
}

.ranking-list .list-poster {
  height: 86px;
}

.ranking-list .list-info p:last-child {
  display: none;
}

.page-hero {
  margin-top: 32px;
  padding: clamp(32px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 28px;
  align-items: center;
}

.slim-hero h1,
.category-hero h1 {
  color: var(--text);
}

.filter-box input {
  width: 100%;
  padding: 15px 20px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 16px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.category-thumb {
  height: 190px;
  border-radius: 18px;
  overflow: hidden;
  background: #111827;
}

.category-overview-card h2 {
  margin: 10px 0;
}

.full-ranking .list-card {
  grid-template-columns: auto 92px minmax(0, 1fr);
}

.detail-hero {
  margin-top: 32px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--amber);
  font-weight: 750;
}

.detail-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 32px;
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.28), transparent 24rem),
    linear-gradient(135deg, #111827, #0f172a 60%, #1f2937);
  box-shadow: var(--shadow);
}

.detail-poster {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 440px;
  background: #020617;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.detail-copy {
  align-self: center;
}

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

.detail-copy .detail-meta,
.detail-copy .detail-one {
  max-width: 780px;
  font-size: 18px;
}

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

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  color: #fde68a;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.player-wrap {
  padding-bottom: 22px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.movie-player {
  display: block;
  width: 100%;
  height: 100%;
  background: #020617;
}

.player-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at center, rgba(217, 119, 6, 0.28), transparent 18rem),
    rgba(2, 6, 23, 0.44);
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-icon {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 20px 44px rgba(217, 119, 6, 0.42);
  font-size: 34px;
}

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

.detail-content article {
  padding: clamp(24px, 4vw, 42px);
}

.detail-content h2 {
  margin-top: 0;
  font-size: 28px;
}

.detail-content h2:not(:first-child) {
  margin-top: 34px;
}

.detail-content p {
  font-size: 17px;
}

.search-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.is-filter-hidden {
  display: none !important;
}

.site-footer {
  margin-top: 44px;
  color: #d1d5db;
  background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(220px, 1fr);
  gap: 34px;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 30px;
}

.footer-brand strong {
  color: white;
  font-size: 22px;
}

.footer-about p,
.footer-column a {
  color: #9ca3af;
}

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

.footer-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
  columns: 2;
}

.footer-column li {
  margin-bottom: 9px;
}

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

.footer-bottom {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #9ca3af;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .cards-5,
  .cards-6,
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .two-column {
    grid-template-columns: 1fr;
  }
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-carousel {
    height: 540px;
  }

  .cards-4,
  .cards-5,
  .cards-6,
  .category-grid,
  .overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .intro-grid,
  .page-hero,
  .search-hero,
  .detail-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    max-width: 360px;
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .hero-shell,
  .section-wrap,
  .page-hero,
  .detail-hero,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1280px);
    padding-left: 0;
    padding-right: 0;
  }

  .header-inner {
    height: 62px;
  }

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

  .hero-carousel {
    height: 500px;
    border-radius: 24px;
  }

  .hero-content {
    left: 22px;
    right: 22px;
    bottom: 76px;
  }

  .hero-controls {
    left: 22px;
    right: auto;
    bottom: 24px;
  }

  .ghost-button {
    margin-left: 0;
    margin-top: 12px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .cards-4,
  .cards-5,
  .cards-6,
  .category-grid,
  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .list-card,
  .full-ranking .list-card,
  .ranking-list .list-card {
    grid-template-columns: auto 70px minmax(0, 1fr);
    gap: 10px;
  }

  .list-poster,
  .ranking-list .list-poster {
    height: 94px;
  }

  .category-overview-card {
    grid-column: 1 / -1;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .category-thumb {
    height: 142px;
  }

  .page-hero,
  .detail-grid,
  .intro-copy,
  .detail-content article {
    padding: 24px;
  }

  .detail-poster {
    max-width: none;
    min-height: auto;
    aspect-ratio: 3 / 4;
  }

  .player-shell {
    border-radius: 22px;
  }

  .footer-column ul {
    columns: 1;
  }
}

@media (max-width: 420px) {
  .cards-4,
  .cards-5,
  .cards-6,
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-body {
    padding: 12px;
  }

  .card-desc {
    display: none;
  }
}
