:root {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-soft: #111827;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --amber: #f59e0b;
  --amber-soft: #fbbf24;
  --orange: #ea580c;
  --rose: #fb7185;
  --cyan: #22d3ee;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.22), transparent 30rem),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 28rem),
    linear-gradient(135deg, #0f172a 0%, #111827 42%, #1f2937 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(22px);
}

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

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

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: #111827;
  background: linear-gradient(135deg, var(--amber-soft), var(--orange));
  box-shadow: 0 12px 34px rgba(245, 158, 11, 0.3);
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #111827;
  background: linear-gradient(135deg, var(--amber-soft), var(--orange));
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

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

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  border-bottom: 1px solid var(--line);
}

.hero-slide {
  position: relative;
  display: none;
  width: min(1180px, calc(100% - 32px));
  min-height: 72vh;
  margin: 0 auto;
  padding: 72px 0 132px;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 54px;
}

.hero-slide.is-active {
  display: grid;
  animation: fadeIn 0.65s ease both;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 36px -80px 54px;
  z-index: -1;
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.42)),
    var(--hero-image) center / cover;
  box-shadow: var(--shadow);
  filter: saturate(1.08);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.25;
  filter: blur(28px);
}

.hero-backdrop img {
  height: 100%;
  object-fit: cover;
}

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

.eyebrow,
.section-label,
.category-overview-text span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 999px;
  color: var(--amber-soft);
  background: rgba(245, 158, 11, 0.12);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 780px;
  font-size: clamp(46px, 8vw, 104px);
}

.hero-copy p,
.page-hero p,
.detail-one {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.8;
}

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

.hero-tags {
  margin: 28px 0 0;
}

.hero-tags span,
.tag-row span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

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

.primary-btn,
.ghost-btn,
.section-more,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
  color: #111827;
  background: linear-gradient(135deg, var(--amber-soft), var(--orange));
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.26);
}

.ghost-btn,
.section-more,
.text-link {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.text-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.34), rgba(34, 211, 238, 0.18));
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-poster img {
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #111827;
  background: var(--amber-soft);
  font-weight: 900;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 86px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(18px);
}

.hero-controls button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.hero-dot.is-active {
  width: 26px !important;
  border-radius: 999px !important;
  background: var(--amber-soft) !important;
}

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  width: min(680px, calc(100% - 32px));
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.84);
  backdrop-filter: blur(18px);
}

.hero-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--line);
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 16px;
  background: transparent;
}

.hero-search button {
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  color: #111827;
  background: linear-gradient(135deg, var(--amber-soft), var(--orange));
  font-weight: 900;
  cursor: pointer;
}

.hero-category-strip {
  position: absolute;
  left: 50%;
  bottom: 142px;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(980px, calc(100% - 32px));
}

.hero-category-strip a {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
}

.content-section,
.page-main,
.detail-main {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.flush-top {
  padding-top: 30px;
}

.dark-section {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  border-block: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.04em;
}

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

.movie-grid,
.ranking-grid,
.category-grid,
.overview-mini-grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.movie-card.is-hidden {
  display: none;
}

.poster-shell {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(245, 158, 11, 0.42), transparent 32%),
    linear-gradient(135deg, #111827, #334155);
}

.movie-card .poster-shell img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.25s ease;
}

.poster-shell img.is-missing,
.hero-backdrop img.is-missing,
.hero-poster img.is-missing,
.category-tile img.is-missing,
.detail-poster img.is-missing {
  opacity: 0;
}

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

.poster-overlay,
.card-rank {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 900;
}

.poster-overlay {
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  color: #111827;
  text-align: center;
  background: linear-gradient(135deg, var(--amber-soft), var(--orange));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-overlay {
  opacity: 1;
  transform: translateY(0);
}

.card-rank {
  top: 12px;
  left: 12px;
  min-width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #111827;
  background: var(--amber-soft);
}

.card-body {
  padding: 16px;
}

.card-meta,
.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-meta {
  color: var(--soft);
  font-size: 12px;
}

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

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

.movie-card.compact {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
}

.movie-card.compact .poster-shell img {
  height: 100%;
  min-height: 168px;
}

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

.score-row {
  margin-top: 14px;
  color: var(--soft);
  font-size: 13px;
}

.score-row strong {
  color: var(--amber-soft);
  font-size: 18px;
}

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.88)), var(--tile-image) center / cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.category-tile img {
  position: absolute;
  inset: 0;
  z-index: -1;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.category-tile span {
  display: block;
  margin-bottom: 12px;
  color: var(--amber-soft);
  font-size: 22px;
  font-weight: 900;
}

.category-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-main {
  padding: 48px 0 74px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at right top, rgba(245, 158, 11, 0.26), transparent 28rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.82));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  font-size: clamp(40px, 7vw, 82px);
}

.category-overview-list {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.category-overview-text h2 {
  margin: 0 0 14px;
  font-size: 30px;
}

.category-overview-text p {
  color: var(--muted);
  line-height: 1.75;
}

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

.filter-panel {
  position: sticky;
  top: 86px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px 180px 160px;
  gap: 12px;
  margin-top: 24px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.84);
  backdrop-filter: blur(18px);
}

.filter-panel input,
.filter-panel select {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
}

.filter-panel select option {
  color: #111827;
}

.detail-main {
  padding: 34px 0 78px;
}

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

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

.detail-hero {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 38px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at left top, rgba(245, 158, 11, 0.25), transparent 28rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.72));
  box-shadow: var(--shadow);
}

.detail-poster {
  border-radius: 26px;
}

.detail-poster img {
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.detail-copy {
  align-self: center;
}

.detail-copy h1 {
  font-size: clamp(42px, 6vw, 82px);
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.detail-meta-grid span {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.06);
}

.detail-meta-grid strong {
  color: var(--text);
  font-size: 18px;
}

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

.player-section {
  margin: 34px 0;
}

.player-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: var(--shadow);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  color: var(--text);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72));
  cursor: pointer;
}

.play-icon {
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: #111827;
  background: linear-gradient(135deg, var(--amber-soft), var(--orange));
  box-shadow: 0 22px 60px rgba(245, 158, 11, 0.34);
}

.player-section.is-ready .player-overlay,
.player-section.is-playing .player-overlay {
  opacity: 0;
  pointer-events: none;
}

.player-state {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.76);
}

.player-state:empty {
  display: none;
}

.detail-content {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.article-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.article-block h2 {
  margin: 0 0 14px;
  color: var(--amber-soft);
  font-size: 24px;
}

.article-block p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
}

.related-section {
  width: 100%;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.72);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 14px;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.96);
  }

  .menu-open .site-nav {
    display: flex;
  }

  .nav-link {
    text-align: center;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 46px 0 210px;
  }

  .hero-slide::before {
    inset: 22px -24px 160px;
  }

  .hero-poster {
    width: min(340px, 80vw);
    margin: 0 auto;
    transform: none;
  }

  .hero-category-strip {
    bottom: 112px;
  }

  .hero-controls {
    bottom: 62px;
  }

  .hero-search {
    bottom: 12px;
  }

  .section-heading,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid,
  .large-grid,
  .ranking-grid,
  .full-ranking,
  .category-grid,
  .overview-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-overview-card,
  .detail-hero,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
  }

  .detail-poster img {
    min-height: auto;
    aspect-ratio: 2 / 3;
  }

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

@media (max-width: 560px) {
  .header-inner,
  .content-section,
  .page-main,
  .detail-main,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-copy h1,
  .hero-copy h2,
  .page-hero h1,
  .detail-copy h1 {
    letter-spacing: -0.04em;
  }

  .hero-search {
    border-radius: 22px;
    flex-direction: column;
    gap: 8px;
  }

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

  .page-hero,
  .detail-hero,
  .article-block {
    padding: 22px;
    border-radius: 22px;
  }

  .movie-grid,
  .large-grid,
  .ranking-grid,
  .full-ranking,
  .category-grid,
  .overview-mini-grid {
    grid-template-columns: 1fr;
  }

  .movie-card.compact {
    grid-template-columns: 98px minmax(0, 1fr);
  }

  .movie-card.compact .poster-shell img {
    min-height: 146px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}
