* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #111827;
  background: #f9fafb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.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.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #f43f5e, #db2777);
  box-shadow: 0 12px 26px rgba(225, 29, 72, 0.28);
}

.brand-text {
  font-size: 19px;
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: #4b5563;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #e11d48;
  background: #fff1f2;
}

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

.top-search {
  margin-left: auto;
}

.top-search input,
.mobile-search input,
.hero-search input,
.filter-input,
.year-select,
.sort-select {
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  color: #111827;
  background: #fff;
  outline: none;
  transition: 0.2s ease;
}

.top-search input {
  width: 260px;
  padding: 10px 14px;
}

.top-search button,
.mobile-search button,
.hero-search button {
  border: 0;
  border-radius: 14px;
  padding: 10px 16px;
  color: #fff;
  font-weight: 700;
  background: #e11d48;
}

.top-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.filter-input:focus,
.year-select:focus,
.sort-select:focus {
  border-color: #fb7185;
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
}

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

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

.mobile-search input {
  flex: 1;
  padding: 11px 14px;
}

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

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 14px;
  color: #4b5563;
  background: #fff;
}

.mobile-nav-link.active {
  color: #e11d48;
  background: #fff1f2;
  font-weight: 700;
}

.featured-section {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: #fff;
  background: #111827;
}

.featured-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 60px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

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

.featured-bg {
  position: fixed;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(1.08);
  transform: scale(1.02);
}

.featured-bg::after,
.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(244, 63, 94, 0.35), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.18), #111827 100%);
}

.featured-content,
.featured-poster,
.featured-controls,
.hero-search {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: #fb7185;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-content h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.featured-content p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.8;
}

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

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

.featured-tags span,
.detail-facts span,
.tag-row span,
.detail-tags a {
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 13px;
  font-weight: 700;
}

.featured-tags span,
.detail-facts span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  padding: 0 20px;
  font-weight: 800;
  transition: 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, #f43f5e, #db2777);
  box-shadow: 0 18px 30px rgba(225, 29, 72, 0.25);
}

.primary-btn:hover,
.top-search button:hover,
.mobile-search button:hover,
.hero-search button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 34px rgba(225, 29, 72, 0.32);
}

.ghost-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.featured-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.featured-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.featured-controls {
  position: absolute;
  left: 50%;
  bottom: 92px;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
}

.featured-controls button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.featured-controls div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-dot {
  width: 10px !important;
  height: 10px !important;
  padding: 0;
  background: rgba(255, 255, 255, 0.36) !important;
}

.featured-dot.active {
  width: 30px !important;
  background: #fff !important;
}

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: min(720px, calc(100% - 32px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.hero-search input {
  flex: 1;
  padding: 14px 16px;
  border: 0;
}

.hero-search button {
  padding: 14px 22px;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.category-strip a {
  border-radius: 999px;
  padding: 10px 15px;
  color: #be123c;
  font-weight: 800;
  background: #fff1f2;
  transition: 0.2s ease;
}

.category-strip a:hover {
  color: #fff;
  background: #e11d48;
}

.section-block {
  margin-top: 64px;
}

.no-margin {
  margin-top: 0;
}

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

.section-title h2,
.page-hero h1,
.detail-info h1,
.detail-article h2,
.detail-side h2,
.ranking-aside h2 {
  margin: 0;
  color: #111827;
  letter-spacing: -0.03em;
}

.section-title h2 {
  font-size: 32px;
}

.section-title > a,
.category-overview-head a {
  color: #e11d48;
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid #eef2f7;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  transition: 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111827;
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.play-chip {
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  background: rgba(225, 29, 72, 0.92);
}

.rank-badge {
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.25);
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

.movie-card h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.related-title:hover {
  color: #e11d48;
}

.movie-card p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row span,
.detail-tags a {
  color: #be123c;
  background: #fff1f2;
}

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

.category-card,
.category-overview-card,
.spotlight-card,
.ranking-aside,
.detail-article,
.detail-side {
  border: 1px solid #eef2f7;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.category-card {
  min-height: 148px;
  padding: 22px;
  transition: 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #fff1f2, #fff);
}

.category-card span {
  color: #111827;
  font-size: 20px;
  font-weight: 900;
}

.category-card p,
.spotlight-card p,
.category-overview-head p {
  color: #6b7280;
  line-height: 1.8;
}

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 24px;
}

.hot-list {
  display: grid;
  gap: 10px;
}

.hot-row,
.ranking-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: #fff;
  transition: 0.2s ease;
}

.hot-row:hover,
.ranking-row:hover {
  border-color: #fecdd3;
  background: #fff1f2;
}

.hot-row span,
.ranking-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  background: #e11d48;
}

.hot-row em,
.ranking-row em {
  color: #6b7280;
  font-size: 13px;
  font-style: normal;
}

.spotlight-card {
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #111827, #881337);
}

.spotlight-card span {
  color: #fecdd3;
  font-weight: 900;
}

.spotlight-card h2 {
  margin: 12px 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.25;
}

.spotlight-card p {
  color: #f3f4f6;
}

.page-shell {
  min-height: 70vh;
}

.page-hero {
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(135deg, #111827, #be123c);
}

.page-hero.rose {
  background: linear-gradient(135deg, #881337, #e11d48);
}

.page-hero.pink {
  background: linear-gradient(135deg, #9d174d, #db2777);
}

.page-hero.blue {
  background: linear-gradient(135deg, #1e3a8a, #4f46e5);
}

.page-hero.dark {
  background: radial-gradient(circle at top left, rgba(244, 63, 94, 0.32), transparent 34%), linear-gradient(135deg, #111827, #030712);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(36px, 6vw, 58px);
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #f3f4f6;
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #fff;
}

.category-overview-list {
  display: grid;
  gap: 26px;
  margin-top: 48px;
}

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

.category-overview-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.category-overview-head h2 {
  margin: 0 0 8px;
}

.movie-card.compact .movie-card-body {
  padding: 12px;
}

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

.movie-card.compact p,
.movie-card.compact .tag-row {
  display: none;
}

.filter-panel {
  padding: 24px;
  border: 1px solid #eef2f7;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

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

.filter-input,
.year-select,
.sort-select {
  width: 100%;
  padding: 12px 14px;
}

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

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #374151;
  font-weight: 800;
  background: #f3f4f6;
  transition: 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: #fff;
  background: #e11d48;
}

.detail-page {
  background: #f9fafb;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  color: #fff;
  background: #111827;
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 56px 0 72px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  margin-top: 32px;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-info h1 {
  color: #fff;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.06;
}

.detail-one-line {
  max-width: 760px;
  margin: 18px 0 22px;
  color: #e5e7eb;
  font-size: 19px;
  line-height: 1.8;
}

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

.player-section {
  margin-top: -56px;
  position: relative;
  z-index: 3;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #000;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.58));
  transition: 0.25s ease;
}

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

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  padding-left: 5px;
  color: #fff;
  font-size: 30px;
  background: #e11d48;
  box-shadow: 0 18px 42px rgba(225, 29, 72, 0.42);
}

.player-overlay strong {
  max-width: 80%;
  font-size: 22px;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.45fr);
  gap: 24px;
  margin-top: 36px;
}

.detail-article,
.detail-side,
.ranking-aside {
  padding: 26px;
}

.detail-article h2,
.detail-side h2,
.ranking-aside h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.detail-article p {
  margin: 0 0 26px;
  color: #374151;
  font-size: 17px;
  line-height: 2;
}

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

.related-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.related-poster {
  overflow: hidden;
  border-radius: 14px;
  background: #111827;
}

.related-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.related-title {
  display: block;
  margin-bottom: 5px;
  font-weight: 900;
}

.related-card p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  margin-top: 48px;
}

.ranking-aside {
  position: sticky;
  top: 92px;
  align-self: start;
}

.ranking-aside div {
  display: grid;
  gap: 10px;
}

.ranking-row {
  grid-template-columns: 38px minmax(0, 1fr);
}

.ranking-row em {
  grid-column: 2;
}

.site-footer {
  margin-top: 80px;
  color: #e5e7eb;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding: 44px 0;
}

.site-footer p {
  max-width: 420px;
  color: #9ca3af;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #9ca3af;
}

.site-footer a:hover {
  color: #fff;
}

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

[hidden] {
  display: none !important;
}

@media (max-width: 1024px) {
  .main-nav,
  .top-search {
    display: none;
  }

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

  .featured-slide {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 30px;
  }

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

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

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

  .ranking-aside {
    position: static;
  }
}

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

  .header-inner {
    height: 64px;
  }

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

  .featured-section {
    min-height: 760px;
  }

  .featured-slide {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 22px;
  }

  .featured-poster {
    width: min(240px, 62vw);
    margin: 0 auto;
    order: -1;
    border-radius: 22px;
  }

  .featured-content h1 {
    font-size: 38px;
  }

  .featured-content p {
    font-size: 16px;
  }

  .featured-actions,
  .detail-actions,
  .hero-search {
    flex-direction: column;
    align-items: stretch;
  }

  .featured-controls {
    bottom: 118px;
  }

  .hero-search {
    bottom: 16px;
  }

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

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

  .movie-card h3 {
    font-size: 16px;
  }

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

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

  .detail-hero-inner {
    padding-top: 36px;
  }

  .player-section {
    width: 100%;
    margin-top: -28px;
  }

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

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

  .hot-row,
  .ranking-row {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .hot-row em,
  .ranking-row em {
    grid-column: 2;
  }
}

@media (max-width: 460px) {
  .movie-grid,
  .compact-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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