:root {
  --primary-50: #f4f7f5;
  --primary-100: #e3ece5;
  --primary-500: #4a7c54;
  --primary-600: #3d6744;
  --primary-800: #233d26;
  --accent-50: #fef7ed;
  --accent-500: #e88f1a;
  --text-900: #111827;
  --text-700: #374151;
  --text-600: #4b5563;
  --text-400: #9ca3af;
  --line: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 12px 30px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner,
.category-strip-inner,
.section-wrap,
.footer-inner,
.detail-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--text-900);
  white-space: nowrap;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--primary-500);
  box-shadow: 0 10px 22px rgba(74, 124, 84, 0.28);
}

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

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

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

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

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

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

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 310px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.header-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 8px 10px 8px 14px;
  background: transparent;
  color: var(--text-700);
}

.header-search button,
.primary-button,
.ghost-button {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-search button,
.primary-button {
  background: var(--primary-500);
  color: var(--white);
  font-weight: 750;
}

.header-search button {
  padding: 8px 16px;
  border-radius: 999px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  box-shadow: 0 14px 28px rgba(74, 124, 84, 0.24);
}

.primary-button.small {
  padding: 10px 18px;
  font-size: 14px;
}

.header-search button:hover,
.primary-button:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

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

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--primary-800);
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 12px;
  padding: 12px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text-700);
  font-weight: 700;
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

.category-strip {
  border-top: 1px solid rgba(229, 231, 235, 0.6);
  background: rgba(249, 250, 251, 0.86);
}

.category-strip-inner {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 0;
}

.category-strip a {
  flex: 0 0 auto;
  color: var(--text-600);
  font-size: 14px;
  font-weight: 650;
}

.category-strip a:hover {
  color: var(--primary-600);
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: #111827;
}

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

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

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1180px) / 2));
  right: 32px;
  bottom: 118px;
  max-width: 760px;
  color: var(--white);
}

.hero-label,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--white);
  background: var(--primary-500);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-label {
  padding: 6px 16px;
  margin-bottom: 18px;
}

.hero h1,
.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 650px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-meta span,
.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  backdrop-filter: blur(10px);
}

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

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

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 76px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.active {
  width: 34px;
  background: var(--white);
}

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 5;
  display: flex;
  width: min(680px, calc(100% - 32px));
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 14px 16px;
  background: transparent;
  color: var(--text-900);
}

.hero-search button {
  border: 0;
  border-radius: 14px;
  padding: 0 24px;
  color: var(--white);
  background: var(--primary-500);
  font-weight: 800;
  cursor: pointer;
}

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

.white-block,
.category-overview-card,
.content-card,
.side-card,
.filter-panel,
.category-card-panel,
.ranking-block {
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-soft);
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: 34px;
  align-items: center;
}

.intro-panel h2,
.section-heading h2,
.category-card-panel h2,
.page-hero h1,
.detail-info h1,
.player-section h2,
.content-card h2,
.side-card h2 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.intro-panel h2,
.section-heading h2,
.category-card-panel h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.intro-panel p {
  margin: 18px 0 0;
  color: var(--text-600);
}

.section-kicker {
  padding: 5px 12px;
  margin-bottom: 12px;
  color: var(--primary-600);
  background: var(--primary-50);
}

.intro-links,
.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.intro-links a,
.category-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 2px solid var(--line);
  border-radius: 999px;
  color: var(--text-700);
  background: var(--white);
  font-weight: 750;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.intro-links a:hover,
.category-buttons a:hover {
  color: var(--primary-600);
  border-color: var(--primary-500);
  background: var(--primary-50);
  transform: translateY(-1px);
}

.section-heading,
.category-overview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.compact-heading {
  margin-bottom: 22px;
}

.text-link {
  color: var(--primary-600);
  font-weight: 800;
}

.text-link:hover {
  color: var(--primary-800);
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.poster-link img,
.wide-poster img,
.ranking-thumb img,
.detail-poster img,
.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .poster-link img,
.movie-card:hover .wide-poster img,
.ranking-item:hover .ranking-thumb img {
  transform: scale(1.08);
}

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(74, 124, 84, 0.86);
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
  padding: 18px;
}

.card-body h3,
.wide-info h3,
.ranking-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h3 a:hover,
.wide-info h3 a:hover,
.ranking-item h3 a:hover {
  color: var(--primary-600);
}

.card-body p,
.wide-info p,
.ranking-item p {
  margin: 0 0 14px;
  color: var(--text-600);
  font-size: 14px;
}

.card-meta,
.ranking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-400);
  font-size: 13px;
}

.wide-grid,
.latest-list {
  display: grid;
  gap: 22px;
}

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

.movie-card-wide {
  display: grid;
  grid-template-columns: 42% 1fr;
}

.wide-poster {
  display: block;
  min-height: 230px;
  overflow: hidden;
  background: #111827;
}

.wide-info {
  padding: 22px;
}

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

.tag-list span {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--primary-600);
  background: var(--primary-50);
  font-size: 12px;
  font-weight: 750;
}

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

.ranking-block,
.category-card-panel {
  border-radius: 24px;
  padding: 28px;
}

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

.ranking-list-large {
  gap: 18px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 58px 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: var(--bg);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-item:hover {
  background: var(--primary-50);
  transform: translateX(2px);
}

.ranking-rank {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent-500);
  font-weight: 900;
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
}

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

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

.page-hero p {
  color: var(--text-600);
  font-size: 18px;
}

.category-overview-list {
  display: grid;
  gap: 28px;
}

.category-overview-card {
  padding: 28px;
  border-radius: 24px;
}

.category-overview-head p {
  max-width: 760px;
  color: var(--text-600);
}

.filter-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 44px auto 74px;
  padding: 24px;
  border-radius: 24px;
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px 160px 180px;
  gap: 16px;
  margin-bottom: 28px;
}

.filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--text-700);
  font-weight: 800;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  border: 1px solid var(--line);
  outline: 0;
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text-700);
  background: var(--bg);
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(74, 124, 84, 0.12);
}

.empty-state {
  padding: 24px;
  border-radius: 18px;
  color: var(--text-600);
  text-align: center;
  background: var(--bg);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #111827;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  filter: blur(4px);
  transform: scale(1.02);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.42));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 42px;
  align-items: end;
  padding: 78px 0;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 3 / 4.2;
  box-shadow: var(--shadow);
  background: #111827;
}

.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: var(--white);
}

.category-hero .breadcrumb {
  color: var(--text-600);
}

.category-hero .breadcrumb a:hover {
  color: var(--primary-600);
}

.detail-info h1 {
  font-size: clamp(36px, 6vw, 64px);
}

.detail-one-line {
  max-width: 760px;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.detail-tags {
  margin-bottom: 26px;
}

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

.detail-main {
  display: grid;
  gap: 24px;
}

.player-section,
.content-card,
.side-card {
  border-radius: 24px;
  padding: 26px;
}

.player-section {
  background: #111827;
  color: var(--white);
  box-shadow: var(--shadow);
}

.player-section h2,
.content-card h2,
.side-card h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000000;
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  gap: 12px;
  place-items: center;
  align-content: center;
  border: 0;
  color: var(--white);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.16));
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.player-overlay[hidden] {
  display: none;
}

.play-circle {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-500);
  box-shadow: 0 16px 38px rgba(74, 124, 84, 0.32);
}

.content-card p {
  margin: 0;
  color: var(--text-700);
  font-size: 17px;
}

.side-card dl,
.side-card dd,
.side-card dt {
  margin: 0;
}

.side-card dl {
  display: grid;
  gap: 14px;
}

.side-card dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.side-card dt {
  color: var(--text-400);
}

.side-card dd {
  color: var(--text-700);
  font-weight: 750;
}

.side-card a {
  color: var(--primary-600);
}

.site-footer {
  margin-top: 40px;
  color: #d1d5db;
  background: #111827;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 42px;
  padding: 54px 0;
}

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

.footer-brand p {
  color: #9ca3af;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

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

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

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

.footer-bottom {
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  text-align: center;
}

@media (max-width: 1120px) {
  .header-search {
    display: none;
  }

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

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

  .category-card-panel {
    order: -1;
  }

  .filter-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

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

  .hero {
    min-height: 620px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 140px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-search {
    flex-direction: column;
    border-radius: 18px;
  }

  .hero-search button {
    min-height: 46px;
  }

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

  .detail-poster {
    width: min(260px, 78vw);
  }

  .section-heading,
  .category-overview-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .wide-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-wide {
    grid-template-columns: 1fr;
  }

  .filter-grid {
    grid-template-columns: 1fr;
  }

  .ranking-item {
    grid-template-columns: 46px 74px minmax(0, 1fr);
  }

  .ranking-thumb {
    height: 92px;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .category-strip-inner,
  .section-wrap,
  .footer-inner,
  .detail-hero-inner,
  .page-hero > div,
  .filter-panel {
    width: min(100% - 24px, 1180px);
  }

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

  .hero h1,
  .hero h2,
  .detail-info h1 {
    font-size: 36px;
  }

  .movie-grid,
  .full-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .player-section,
  .content-card,
  .side-card,
  .ranking-block,
  .category-card-panel,
  .category-overview-card,
  .filter-panel {
    padding: 20px;
    border-radius: 20px;
  }

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