:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.78);
  --panel: rgba(255, 255, 255, 0.08);
  --line: rgba(148, 163, 184, 0.24);
  --text: #f8fafc;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --blue: #2563eb;
  --pink: #f472b6;
  --yellow: #facc15;
  --shadow: 0 24px 80px rgba(2, 8, 23, 0.42);
  --radius: 24px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, rgba(34, 211, 238, 0.24), transparent 32rem),
    radial-gradient(circle at 85% 8%, rgba(37, 99, 235, 0.28), transparent 34rem),
    linear-gradient(180deg, #020617 0%, #08111f 42%, #020617 100%);
}

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

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.94));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #38bdf8, #2563eb 58%, #8b5cf6);
  box-shadow: 0 16px 38px rgba(34, 211, 238, 0.28);
}

.brand-text {
  font-size: 1.2rem;
}

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

.nav-link,
.mobile-link {
  position: relative;
  color: #cbd5e1;
  font-size: 0.94rem;
  font-weight: 650;
  transition: color 0.2s ease;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: #f8fafc;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding: 10px 16px 16px;
  background: rgba(15, 23, 42, 0.98);
}

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

.mobile-link {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.hero-track {
  position: relative;
  min-height: 660px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  transform: scale(1.01);
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(1.12);
  transform: scale(1.08);
  opacity: 0.28;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.76) 46%, rgba(2, 6, 23, 0.38) 100%),
    radial-gradient(circle at 64% 24%, rgba(34, 211, 238, 0.28), transparent 30rem);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  gap: 52px;
  align-items: center;
  padding: 70px 0 92px;
}

.hero-copy {
  max-width: 690px;
}

.section-kicker,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 16px;
  border: 1px solid rgba(34, 211, 238, 0.38);
  border-radius: 999px;
  padding: 8px 14px;
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.1);
  font-size: 0.86rem;
  font-weight: 750;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero h1 span,
.page-hero h1 span {
  color: transparent;
  background: linear-gradient(135deg, #67e8f9, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero p {
  margin: 22px 0 0;
  max-width: 640px;
  color: #cbd5e1;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.9;
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.34);
}

.button-ghost,
.button-soft {
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button-soft {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.button-primary:hover,
.button-ghost:hover,
.button-soft:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(34, 211, 238, 0.18);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(15, 23, 42, 0.58));
  box-shadow: var(--shadow);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-poster:hover img {
  transform: scale(1.04);
}

.hero-poster::after,
.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.54));
}

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

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

.hero-tags span,
.tag-row span {
  border-radius: 999px;
  padding: 5px 10px;
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.16);
  font-size: 0.78rem;
}

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

.hero-dot {
  width: 34px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 54px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.section {
  padding: 74px 0;
}

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

.section-title h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
}

.section-title p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.72));
  box-shadow: 0 18px 54px rgba(2, 6, 23, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.36);
}

.movie-card a {
  display: grid;
  height: 100%;
}

.poster-wrap {
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.poster-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.play-chip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 12px;
  color: white;
  background: rgba(8, 145, 178, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #020617;
  background: linear-gradient(135deg, #fde68a, #facc15);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(250, 204, 21, 0.24);
}

.movie-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.movie-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 750;
}

.movie-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.35;
}

.movie-card p {
  margin: 0;
  color: #aab7ca;
  font-size: 0.9rem;
  line-height: 1.7;
}

.movie-card.compact .poster-wrap img {
  aspect-ratio: 16 / 9;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 26px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(37, 99, 235, 0.13)),
    rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.25);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.42);
}

.category-card h2,
.category-card h3 {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 900;
}

.category-card p {
  margin: 12px 0 0;
  color: #b6c3d6;
  line-height: 1.75;
  font-size: 0.92rem;
}

.category-samples {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: #a5f3fc;
  font-size: 0.86rem;
}

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

.rank-list,
.side-panel,
.content-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.24);
  backdrop-filter: blur(16px);
}

.rank-list {
  overflow: hidden;
}

.rank-row {
  display: grid;
  grid-template-columns: 70px 120px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-row strong {
  color: var(--yellow);
  font-size: 1.34rem;
}

.rank-row img {
  width: 120px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  object-fit: cover;
  background: #0f172a;
}

.rank-info h2,
.rank-info h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 900;
}

.rank-info p {
  margin: 0;
  color: #aab7ca;
  line-height: 1.65;
}

.side-panel {
  padding: 22px;
  height: fit-content;
  position: sticky;
  top: 92px;
}

.side-panel h2 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 900;
}

.list-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.list-link:last-child {
  border-bottom: 0;
}

.list-link strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  color: #020617;
  background: linear-gradient(135deg, #67e8f9, #60a5fa);
  font-size: 0.8rem;
}

.list-link span {
  color: #f8fafc;
  font-weight: 780;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-link em {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 54px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.18), transparent 30rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.88));
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #cbd5e1;
  line-height: 1.86;
  font-size: 1.04rem;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 190px 170px;
  gap: 14px;
  padding: 18px;
  margin: 30px 0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.68);
  box-shadow: 0 18px 56px rgba(2, 6, 23, 0.18);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 750;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  padding: 13px 14px;
  color: #f8fafc;
  outline: none;
  background: rgba(2, 6, 23, 0.64);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.11);
}

.empty-state {
  display: none;
  margin: 40px 0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 26px;
  padding: 42px;
  color: #cbd5e1;
  text-align: center;
  background: rgba(15, 23, 42, 0.76);
}

.empty-state.is-visible {
  display: block;
}

.detail-hero {
  padding: 34px 0 58px;
  background:
    radial-gradient(circle at 72% 0%, rgba(37, 99, 235, 0.16), transparent 34rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.64), rgba(2, 6, 23, 0));
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0 22px;
  color: #94a3b8;
  font-size: 0.9rem;
}

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

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

.player-panel,
.detail-side {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.play-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: white;
  background:
    radial-gradient(circle, rgba(34, 211, 238, 0.16), transparent 15rem),
    linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.66));
  cursor: pointer;
}

.play-cover.is-hidden {
  display: none;
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 22px 58px rgba(37, 99, 235, 0.42);
  font-size: 2rem;
  font-weight: 900;
  transform: translateZ(0);
  transition: transform 0.2s ease;
}

.play-cover:hover .play-icon {
  transform: scale(1.08);
}

.player-status {
  min-height: 42px;
  padding: 12px 18px;
  color: #cbd5e1;
  background: rgba(2, 6, 23, 0.72);
}

.detail-side {
  padding: 20px;
}

.detail-side img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  object-fit: cover;
  background: #0f172a;
}

.detail-side h1 {
  margin: 18px 0 8px;
  font-size: 1.8rem;
  font-weight: 930;
  line-height: 1.18;
}

.detail-side p {
  color: #cbd5e1;
  line-height: 1.75;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.detail-meta span {
  border-radius: 12px;
  padding: 7px 10px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.15);
  font-size: 0.82rem;
  font-weight: 760;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  padding-bottom: 72px;
}

.content-card {
  padding: 26px;
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 1.38rem;
  font-weight: 900;
}

.content-card p {
  color: #cbd5e1;
  line-height: 1.92;
}

.related-grid {
  display: grid;
  gap: 14px;
}

.related-mini {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.related-mini img {
  width: 94px;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  object-fit: cover;
  background: #0f172a;
}

.related-mini h3 {
  margin: 0 0 7px;
  font-size: 0.96rem;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-mini p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 36px;
  padding: 46px 0 34px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 850;
}

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

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

.footer-links a {
  color: #94a3b8;
}

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

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 18px 0 26px;
  color: #64748b;
  font-size: 0.9rem;
}

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

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

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

  .hero-poster,
  .detail-side {
    max-width: 430px;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero,
  .hero-track {
    min-height: 760px;
  }

  .hero-layout {
    gap: 26px;
    padding: 44px 0 80px;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary,
  .button-ghost,
  .button-soft {
    width: 100%;
  }

  .section {
    padding: 50px 0;
  }

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

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

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

  .rank-row {
    grid-template-columns: 46px 86px minmax(0, 1fr);
    gap: 12px;
  }

  .rank-row .button-soft {
    grid-column: 1 / -1;
  }

  .rank-row img {
    width: 86px;
  }

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

@media (max-width: 480px) {
  .brand-text {
    font-size: 1rem;
  }

  .hero,
  .hero-track {
    min-height: 720px;
  }

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

  .detail-side h1 {
    font-size: 1.45rem;
  }

  .content-card {
    padding: 20px;
  }
}
