:root {
  color-scheme: light;
  --bg: #fff7ed;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --line: #fed7aa;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --accent-soft: #ffedd5;
  --black: #0f172a;
  --shadow: 0 20px 45px rgba(17, 24, 39, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 30rem),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 30rem, #fffaf5 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  object-fit: cover;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 237, 0.88);
  border-bottom: 1px solid rgba(249, 115, 22, 0.14);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  box-shadow: 0 12px 26px rgba(234, 88, 12, 0.28);
}

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

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #475569;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

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

.header-search {
  width: 270px;
  padding: 6px;
  border-radius: 999px;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.22);
}

.header-search input,
.mobile-search input,
.hero-search input,
.page-search input,
.filter-bar input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.header-search input {
  flex: 1;
  padding: 8px 10px;
}

.header-search button,
.mobile-search button,
.hero-search button,
.page-search button,
.btn.primary {
  border: 0;
  color: white;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.28);
}

.header-search button,
.mobile-search button,
.hero-search button,
.page-search button {
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.2);
}

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

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.mobile-panel nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-search {
  padding: 8px;
  border-radius: 16px;
  background: var(--accent-soft);
}

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

body.menu-open .mobile-panel {
  display: block;
}

main {
  overflow: hidden;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto 48px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 26px;
  align-items: stretch;
}

.hero-heading {
  min-height: 560px;
  padding: clamp(28px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: calc(var(--radius) + 10px);
  color: white;
  background:
    radial-gradient(circle at 20% 15%, rgba(251, 146, 60, 0.52), transparent 18rem),
    linear-gradient(150deg, #111827 0%, #431407 100%);
  box-shadow: var(--shadow);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-heading::after {
  content: "";
  position: absolute;
  inset: auto -15% -25% 20%;
  height: 260px;
  border-radius: 50%;
  background: rgba(251, 146, 60, 0.32);
  filter: blur(40px);
  z-index: -1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-heading .eyebrow,
.hero-slide .eyebrow,
.ranking-hero .eyebrow,
.search-hero .eyebrow,
.category-hero .eyebrow {
  color: #fed7aa;
}

.hero-heading h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero-heading p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-search,
.page-search {
  margin-top: 28px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.hero-search input,
.page-search input {
  flex: 1;
  padding: 14px 16px;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.64fr;
  gap: 24px;
  align-items: end;
  padding: clamp(26px, 4vw, 46px);
  color: white;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.8s ease;
}

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

.hero-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

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

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

.hero-tags span,
.tag-row span {
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-tags span {
  color: white;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  padding: 7px 11px;
}

.tag-row span {
  padding: 6px 10px;
}

.tag-row.large span {
  font-size: 0.9rem;
  padding: 8px 12px;
}

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

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

.btn:hover,
.text-link:hover,
.movie-card:hover,
.category-tile:hover,
.compact-card:hover,
.rank-item:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.hero-poster {
  align-self: center;
  justify-self: center;
  width: min(250px, 100%);
  aspect-ratio: 2 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.hero-poster img {
  width: 100%;
  height: 100%;
}

.hero-dots {
  position: absolute;
  left: 44px;
  bottom: 24px;
  display: flex;
  gap: 9px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: 0.2s ease;
}

.hero-dot.is-active {
  width: 32px;
  background: white;
}

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

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

.section-head.compact {
  margin-bottom: 18px;
}

.section-head h2,
.ranking-panel h2,
.detail-card h2,
.side-info h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 900;
  transition: 0.2s ease;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-tile,
.category-detail-card {
  min-height: 168px;
  padding: 22px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  box-shadow: 0 16px 35px rgba(17, 24, 39, 0.08);
  transition: 0.2s ease;
  overflow: hidden;
  position: relative;
}

.category-tile::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.category-tile span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: white;
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
}

.category-tile strong {
  display: block;
  margin-top: auto;
  color: white;
  font-size: 1.22rem;
}

.category-tile em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
  font-size: 0.92rem;
}

.tone-orange {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}

.tone-blue {
  background: linear-gradient(135deg, #60a5fa, #1d4ed8);
}

.tone-green {
  background: linear-gradient(135deg, #34d399, #047857);
}

.tone-purple {
  background: linear-gradient(135deg, #c084fc, #7e22ce);
}

.tone-red {
  background: linear-gradient(135deg, #fb7185, #be123c);
}

.tone-amber {
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

.soft-panel {
  padding: clamp(24px, 4vw, 34px);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.13);
}

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

.movie-card {
  min-width: 0;
  border-radius: 22px;
  background: white;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.09);
  overflow: hidden;
  transition: 0.2s ease;
}

.card-cover {
  position: relative;
  aspect-ratio: 2 / 3;
  display: block;
  overflow: hidden;
  background: #1f2937;
}

.card-cover img {
  width: 100%;
  height: 100%;
  transition: transform 0.36s ease;
}

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

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.70));
}

.card-year,
.card-play {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: white;
  font-weight: 900;
}

.card-year {
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  background: rgba(15, 23, 42, 0.72);
  font-size: 0.76rem;
}

.card-play {
  right: 10px;
  bottom: 10px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.card-body {
  padding: 14px;
}

.card-meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-body h3 {
  margin: 6px 0 7px;
  font-size: 1rem;
  line-height: 1.25;
}

.card-body h3 a:hover,
.category-samples a:hover,
.rank-info a:hover,
.side-info a:hover {
  color: var(--accent-dark);
}

.card-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

.split-main,
.ranking-panel {
  padding: 24px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 16px 35px rgba(17, 24, 39, 0.08);
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.compact-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  padding: 10px;
  background: #fff7ed;
  transition: 0.2s ease;
}

.compact-card img {
  width: 74px;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
}

.compact-card strong,
.compact-card em {
  display: block;
}

.compact-card strong {
  line-height: 1.25;
}

.compact-card em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.rank-list,
.rank-page-list {
  display: grid;
  gap: 14px;
}

.rank-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: #fff7ed;
  transition: 0.2s ease;
}

.rank-page-list .rank-item {
  grid-template-columns: 110px 1fr;
  padding: 14px;
  background: white;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.rank-cover {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 16px;
}

.rank-cover img {
  width: 100%;
  height: 100%;
}

.rank-cover span {
  position: absolute;
  left: 8px;
  top: 8px;
  min-width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--accent);
  font-weight: 900;
}

.rank-info a {
  display: inline-block;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.3;
}

.rank-info p {
  margin: 7px 0;
  color: var(--muted);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-info div {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto 36px;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 32px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(251, 146, 60, 0.50), transparent 18rem),
    linear-gradient(135deg, #111827, #7c2d12);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 900px;
}

.filter-bar {
  margin-bottom: 22px;
  padding: 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  box-shadow: 0 16px 35px rgba(17, 24, 39, 0.08);
}

.filter-bar input {
  flex: 1;
  padding: 13px 14px;
  border-radius: 14px;
  background: #fff7ed;
}

.filter-bar a {
  flex-shrink: 0;
  color: var(--accent-dark);
  font-weight: 900;
}

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

.category-detail-card {
  min-height: 190px;
}

.category-detail-title {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 900;
}

.category-detail-card p {
  color: var(--muted);
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-samples a {
  border-radius: 999px;
  padding: 6px 10px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--accent-dark);
  font-weight: 800;
}

.breadcrumb em {
  color: var(--ink);
  font-style: normal;
}

.watch-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.watch-main {
  min-width: 0;
}

.player-shell {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

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

.play-mask {
  position: absolute;
  inset: 0;
  border: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: white;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.72));
  transition: opacity 0.22s ease;
}

.play-mask.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.play-symbol {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
  font-size: 1.7rem;
  text-indent: 4px;
}

.detail-card,
.side-info {
  margin-top: 18px;
  padding: 24px;
  border-radius: 26px;
  background: white;
  box-shadow: 0 16px 35px rgba(17, 24, 39, 0.08);
}

.detail-card h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.detail-meta {
  margin: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.detail-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  color: #9a3412;
  background: #ffedd5;
  font-weight: 900;
  font-size: 0.88rem;
}

.lead-text {
  color: #374151;
  font-size: 1.08rem;
}

.detail-card p {
  color: #374151;
  font-size: 1rem;
}

.watch-side {
  position: sticky;
  top: 96px;
}

.side-poster {
  display: block;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.side-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
}

.side-info p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid #ffedd5;
  padding: 10px 0;
  margin: 0;
}

.side-info strong {
  color: var(--muted);
}

.side-info span,
.side-info a {
  text-align: right;
  font-weight: 800;
}

.related-section {
  margin-top: 24px;
}

.search-status {
  margin-bottom: 18px;
  border-radius: 18px;
  padding: 16px 18px;
  color: #9a3412;
  background: #ffedd5;
  font-weight: 900;
}

[hidden] {
  display: none !important;
}

.site-footer {
  margin-top: 70px;
  padding: 42px 0;
  color: white;
  background: #111827;
}

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

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .watch-layout {
    grid-template-columns: 1fr;
  }

  .hero-heading,
  .hero-stage {
    min-height: 480px;
  }

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

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

  .watch-side {
    position: static;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 18px;
  }

  .side-info {
    margin-top: 0;
  }
}

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

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

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

  .movie-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

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

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

@media (max-width: 620px) {
  .header-inner {
    min-height: 66px;
  }

  .hero,
  .section-wrap,
  .page-hero,
  .breadcrumb,
  .watch-layout {
    width: min(100% - 22px, 1180px);
  }

  .hero-heading,
  .hero-stage {
    min-height: 430px;
    border-radius: 24px;
  }

  .hero-heading,
  .hero-slide,
  .page-hero {
    padding: 24px;
  }

  .hero-search,
  .page-search,
  .filter-bar {
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search button,
  .page-search button,
  .filter-bar a {
    width: 100%;
    text-align: center;
  }

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

  .category-grid,
  .category-detail-grid,
  .watch-side {
    grid-template-columns: 1fr;
  }

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

  .rank-page-list .rank-item,
  .rank-item {
    grid-template-columns: 78px 1fr;
  }

  .side-poster {
    max-width: 260px;
  }

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