:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: rgba(15, 23, 42, 0.72);
  --panel-strong: #111827;
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --line: rgba(148, 163, 184, 0.18);
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-soft: rgba(245, 158, 11, 0.16);
  --danger: #ef4444;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.28);
  --shadow-accent: 0 22px 55px rgba(245, 158, 11, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.11), transparent 28rem), var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-row {
  height: 66px;
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #f97316);
  box-shadow: 0 0 32px rgba(245, 158, 11, 0.36);
  font-size: 16px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

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

.nav-link,
.mobile-link {
  color: var(--soft);
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 650;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #fff;
  background: rgba(148, 163, 184, 0.14);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 260px;
}

.header-search input,
.mobile-search input,
.hero-search input,
.search-page-form input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  outline: none;
  color: #fff;
  background: rgba(2, 6, 23, 0.55);
  border-radius: 999px;
  padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.search-page-form input:focus {
  border-color: rgba(245, 158, 11, 0.72);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.header-search button,
.mobile-search button,
.hero-search button,
.search-page-form button {
  border: 0;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 750;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.search-page-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  color: var(--text);
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
}

.mobile-panel {
  display: none;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--line);
}

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

.mobile-link {
  display: block;
  padding: 11px 12px;
  margin-bottom: 4px;
  font-weight: 700;
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.channel-strip {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(2, 6, 23, 0.3);
}

.channel-strip-inner {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 9px 0;
  scrollbar-width: none;
}

.channel-strip-inner::-webkit-scrollbar {
  display: none;
}

.channel-strip a {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s ease;
}

.channel-strip a:hover {
  color: var(--accent);
}

main {
  min-height: 70vh;
}

.hero-slider {
  position: relative;
  height: 640px;
  min-height: 640px;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.65s ease, transform 0.85s ease;
  pointer-events: none;
}

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(2, 6, 23, 0.2) 48%, rgba(2, 6, 23, 0.26) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

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

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-copy h1 {
  margin: 18px 0 20px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero-copy p {
  margin: 0;
  color: #dbeafe;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.75;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-tags span,
.detail-meta span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  color: var(--soft);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.primary-button,
.ghost-button,
.section-link {
  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, background 0.2s ease;
}

.primary-button {
  color: #fff;
  background: var(--accent);
  box-shadow: var(--shadow-accent);
}

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

.primary-button:hover {
  background: var(--accent-hover);
}

.ghost-button,
.section-link {
  color: #fff;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

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

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

.hero-dot.is-active {
  background: var(--accent);
}

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 5;
  display: flex;
  gap: 10px;
  width: min(760px, calc(100% - 32px));
  transform: translateX(-50%);
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(16px);
}

.content-section {
  padding: 76px 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.22), rgba(2, 6, 23, 0));
}

.featured-section,
.ranking-section,
.detail-content-section {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.5), rgba(2, 6, 23, 0.18));
}

.section-heading {
  margin-bottom: 32px;
}

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

.section-heading h1,
.section-heading h2,
.page-hero h1,
.detail-title-grid h1 {
  margin: 14px 0 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
}

.section-heading p,
.page-hero p {
  max-width: 780px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

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

.movie-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.58);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.44);
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow-accent);
}

.movie-card figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: rgba(15, 23, 42, 0.8);
}

.movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.25s ease;
}

.movie-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.12) brightness(1.05);
}

.card-badge,
.rank-number {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  background: rgba(245, 158, 11, 0.92);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 850;
}

.rank-number {
  left: 12px;
  right: auto;
  background: rgba(239, 68, 68, 0.9);
}

.play-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .play-hover {
  opacity: 1;
}

.play-hover span,
.play-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.92);
  box-shadow: 0 14px 40px rgba(245, 158, 11, 0.24);
}

.play-hover span::before,
.play-circle span {
  content: "";
  display: block;
  margin-left: 4px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

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

.movie-card h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card p {
  margin: 9px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #64748b;
  font-size: 12px;
}

.movie-meta-line span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.movie-card-featured:first-child {
  grid-column: span 2;
}

.movie-card-featured:first-child figure {
  aspect-ratio: 21 / 8;
}

.category-grid,
.category-large-grid {
  display: grid;
  gap: 22px;
}

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

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

.category-tile,
.category-card-large {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.64);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-tile:hover,
.category-card-large:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.48);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(1.1);
  transition: transform 0.55s ease, opacity 0.25s ease;
}

.category-tile:hover img {
  transform: scale(1.06);
  opacity: 0.46;
}

.category-tile::after,
.category-card-large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.4));
}

.category-tile span,
.category-tile h3,
.category-tile p,
.category-card-large span,
.category-card-large h2,
.category-card-large p {
  position: relative;
  z-index: 1;
}

.category-tile span,
.category-card-large span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.category-tile h3,
.category-card-large h2 {
  margin: 64px 0 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.category-tile p,
.category-card-large p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.7;
}

.category-card-images {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0.32;
}

.category-card-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.ranking-grid .movie-card-rank,
.ranking-page-grid .movie-card-rank {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
}

.movie-card-rank figure {
  aspect-ratio: 4 / 3;
  height: 100%;
}

.page-main {
  padding-top: 0;
}

.page-hero {
  padding: 86px 0 52px;
  background:
    radial-gradient(circle at 20% 10%, rgba(245, 158, 11, 0.2), transparent 26rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0));
  border-bottom: 1px solid var(--line);
}

.compact-hero,
.search-hero,
.category-hero {
  min-height: 320px;
  display: flex;
  align-items: end;
}

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

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

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

.search-page-form {
  display: flex;
  gap: 10px;
  width: min(760px, 100%);
  margin-top: 28px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.64);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
  background: rgba(15, 23, 42, 0.58);
  text-align: center;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 54px;
  background: #000;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) saturate(1.08);
  transform: scale(1.04);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.44), var(--bg));
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
}

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

.detail-poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.detail-title-grid h1 {
  margin: 18px 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
}

.detail-title-grid p {
  max-width: 820px;
  margin: 0;
  color: var(--soft);
  font-size: 19px;
  line-height: 1.85;
}

.detail-meta,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-meta {
  margin-top: 24px;
}

.tag-list {
  margin-top: 14px;
}

.player-section {
  padding: 34px 0 76px;
  background: var(--bg);
}

.player-card {
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius-xl);
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.72));
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-overlay strong {
  font-size: 18px;
  letter-spacing: 0.04em;
}

.play-circle {
  width: 82px;
  height: 82px;
}

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

.detail-content-grid {
  display: grid;
  gap: 22px;
}

.detail-text-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.58);
  padding: 28px;
}

.detail-text-card h2 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 900;
}

.detail-text-card p {
  margin: 0;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.95;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 1));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 52px 0;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 8px;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 20px 16px;
  text-align: center;
}

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

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

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

  .detail-title-grid {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

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

  .mobile-menu-button {
    display: inline-flex;
  }

  .nav-row {
    height: 62px;
  }

  .hero-slider {
    height: 680px;
  }

  .hero-copy {
    padding-top: 110px;
  }

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

  .hero-search,
  .search-page-form {
    border-radius: 24px;
    flex-direction: column;
  }

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

  .movie-card-featured:first-child {
    grid-column: span 2;
  }

  .ranking-grid .movie-card-rank,
  .ranking-page-grid .movie-card-rank {
    grid-template-columns: 140px minmax(0, 1fr);
  }

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

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

@media (max-width: 560px) {
  .site-container {
    width: min(100% - 22px, 1180px);
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small,
  .channel-strip {
    display: none;
  }

  .hero-slider {
    height: 650px;
    min-height: 650px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 16px;
  }

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

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

  .movie-card-featured:first-child {
    grid-column: span 1;
  }

  .ranking-grid .movie-card-rank,
  .ranking-page-grid .movie-card-rank {
    grid-template-columns: 130px minmax(0, 1fr);
  }

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

  .category-tile h3,
  .category-card-large h2 {
    margin-top: 42px;
  }

  .detail-title-grid h1 {
    font-size: 36px;
  }

  .detail-title-grid p {
    font-size: 16px;
  }

  .detail-text-card {
    padding: 22px;
  }
}
