:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --soft: #ecfeff;
  --line: #e5e7eb;
  --text: #111827;
  --muted: #64748b;
  --teal: #0d9488;
  --cyan: #0891b2;
  --blue: #2563eb;
  --amber: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #f8fafc 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.30);
}

.logo-text {
  font-size: 25px;
  line-height: 1;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  color: #334155;
  font-weight: 650;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

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

.header-search {
  width: 248px;
  position: relative;
}

.header-search input,
.mobile-search input,
.hero-search input,
.filter-bar input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 11px 16px;
  outline: none;
  color: #0f172a;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.filter-bar input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.13);
}

.header-search button,
.mobile-search button,
.hero-search button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: 999px;
  padding: 11px 17px;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.20);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  color: #0f172a;
  padding: 9px 12px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 16px 18px;
  background: #ffffff;
}

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

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

.mobile-link {
  padding: 10px 12px;
  border-radius: 12px;
  color: #334155;
  font-weight: 650;
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--teal);
  background: #ecfeff;
}

.home-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  min-height: 720px;
  background: #0f172a;
}

.hero-pattern,
.page-hero::before,
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-slider,
.hero-slide,
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg {
  background-size: cover;
  background-position: center;
}

.hero-bg::after,
.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(20, 184, 166, 0.45), transparent 32%),
    radial-gradient(circle at 82% 15%, rgba(37, 99, 235, 0.38), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 122px;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a7f3d0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 13px;
}

.hero-content h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #dffafe;
  font-size: 19px;
}

.hero-tags {
  margin-top: 22px;
}

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

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

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--teal);
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(255, 255, 255, 0.18);
}

.btn.ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn.full {
  width: 100%;
  margin-top: 16px;
}

.hero-nav {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 225px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

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

.hero-search-panel {
  position: relative;
  z-index: 6;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  transform: translateY(515px);
  border-radius: 28px;
  padding: 26px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-search-panel h1 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.hero-search-panel p {
  max-width: 850px;
  margin: 10px 0 18px;
  color: var(--muted);
}

.hero-search {
  max-width: 800px;
}

.hero-search input {
  min-height: 52px;
}

.quick-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.quick-cats a {
  display: grid;
  gap: 2px;
  padding: 16px;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  color: #0f172a;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-cats a:hover,
.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: 0 18px 35px rgba(13, 148, 136, 0.12);
}

.quick-cats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.featured-panel {
  position: relative;
  z-index: 3;
  margin-top: -76px;
}

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

.soft-section {
  background: linear-gradient(135deg, #f8fafc, #ecfeff);
}

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

.section-heading h2,
.rank-sidebar h2,
.detail-article h2,
.detail-sidebox h2,
.footer-col h2 {
  margin: 0;
  color: #0f172a;
  font-size: 31px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.04em;
}

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

.section-more,
.text-link {
  color: var(--teal);
  font-weight: 800;
  white-space: nowrap;
}

.section-more span {
  transition: transform 0.2s ease;
}

.section-more:hover span {
  transform: translateX(4px);
}

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

.featured-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 26px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 148, 136, 0.38);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.13);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.18;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #0d9488);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(15, 23, 42, 0.82));
}

.play-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(8, 145, 178, 0.32);
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
}

.movie-card-body {
  padding: 17px;
}

.movie-meta {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.movie-card h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.26;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.movie-card h2 a:hover {
  color: var(--teal);
}

.movie-desc {
  min-height: 46px;
  margin: 9px 0 12px;
  color: #475569;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span,
.tag-cloud a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  color: #0f766e;
  background: #ccfbf1;
  font-size: 12px;
  font-weight: 750;
}

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

.rank-sidebar,
.detail-sidebox,
.category-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

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

.rank-sidebar h2,
.detail-sidebox h2,
.footer-col h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.mini-list {
  display: grid;
  gap: 12px;
}

.mini-movie {
  display: grid;
  grid-template-columns: 34px 54px 1fr;
  align-items: center;
  gap: 12px;
  padding: 9px;
  border-radius: 16px;
  color: #0f172a;
  background: #f8fafc;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mini-movie:hover {
  transform: translateX(3px);
  background: #ecfeff;
}

.mini-movie img {
  width: 54px;
  height: 72px;
  object-fit: cover;
  border-radius: 11px;
}

.mini-rank {
  color: var(--teal);
  font-weight: 900;
  text-align: center;
}

.mini-movie b,
.mini-movie em {
  display: block;
}

.mini-movie b {
  font-size: 14px;
  line-height: 1.28;
}

.mini-movie em {
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(120deg, #0f766e, #0891b2 55%, #2563eb);
}

.compact-hero {
  padding: 76px 0 70px;
}

.page-hero .container,
.detail-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #dffafe;
  font-size: 18px;
}

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

.category-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-title {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.category-title span {
  color: var(--teal);
  font-weight: 800;
}

.category-title b {
  color: #0f172a;
  font-size: 24px;
  line-height: 1.2;
}

.category-card p {
  color: var(--muted);
  margin: 0 0 16px;
}

.category-mini {
  margin-bottom: 16px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud a {
  padding: 8px 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.tag-cloud a:hover {
  transform: translateY(-2px);
  background: #99f6e4;
}

.filter-bar {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
  padding: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

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

.filter-chip {
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 8px 14px;
  color: #334155;
  background: #ffffff;
  cursor: pointer;
  font-weight: 750;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.empty-result {
  display: none;
  margin: 32px 0 0;
  padding: 22px;
  border-radius: 18px;
  color: var(--muted);
  background: #ffffff;
  text-align: center;
}

.empty-result.show {
  display: block;
}

.detail-hero {
  min-height: 560px;
  background: #0f172a;
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.detail-hero-inner {
  padding: 34px 0 58px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: #dffafe;
  font-weight: 700;
  font-size: 14px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4.18;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.34);
}

.detail-copy {
  max-width: 790px;
}

.detail-one {
  color: #e0f2fe;
  font-size: 20px;
  margin: 20px 0 0;
}

.detail-tags {
  margin-top: 22px;
}

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

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020617;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.28), rgba(2, 6, 23, 0.65));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--teal);
  background: #ffffff;
  font-size: 34px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.32);
}

.play-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.detail-article {
  padding: 30px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.detail-article h2 {
  margin-top: 0;
  margin-bottom: 14px;
}

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

.detail-article p {
  margin: 0;
  color: #334155;
  font-size: 17px;
}

.detail-sidebox dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.detail-sidebox dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.detail-sidebox dd {
  margin: -8px 0 0;
  color: #0f172a;
  font-weight: 750;
}

.detail-sidebox a {
  color: var(--teal);
}

.related-grid .movie-card.compact .movie-desc {
  min-height: auto;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

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

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

.footer-brand p {
  max-width: 460px;
  color: #94a3b8;
}

.footer-col h2 {
  color: #ffffff;
}

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

.footer-col a:hover {
  color: #5eead4;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  padding: 18px 16px;
  color: #94a3b8;
  text-align: center;
  font-size: 14px;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .header-search {
    width: min(42vw, 300px);
  }

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

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

  .rank-sidebar,
  .sticky-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: 62px;
  }

  .logo-text {
    font-size: 21px;
  }

  .header-search {
    display: none;
  }

  .home-hero {
    min-height: 780px;
  }

  .hero-content {
    padding-top: 82px;
  }

  .hero-content h2,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 40px;
  }

  .hero-search-panel {
    transform: translateY(500px);
    padding: 20px;
  }

  .quick-cats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-nav {
    bottom: 280px;
  }

  .featured-panel {
    margin-top: -42px;
  }

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

  .section-heading {
    display: grid;
    gap: 10px;
  }

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

  .featured-grid {
    padding: 16px;
  }

  .movie-card-body {
    padding: 14px;
  }

  .movie-card h2 {
    font-size: 17px;
  }

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

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

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

@media (max-width: 520px) {
  .container,
  .header-inner,
  .footer-inner,
  .hero-content,
  .hero-search-panel {
    width: min(100% - 22px, 1180px);
  }

  .movie-grid,
  .featured-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .quick-cats {
    grid-template-columns: 1fr;
  }

  .hero-search {
    display: grid;
  }

  .mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .detail-article,
  .detail-sidebox,
  .rank-sidebar,
  .category-card {
    padding: 18px;
  }
}
