:root {
  --pink: #ec4899;
  --rose: #fb7185;
  --orange: #fb923c;
  --yellow: #facc15;
  --text: #1f2937;
  --muted: #6b7280;
  --soft: #fff1f2;
  --line: #f3d4dc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(219, 39, 119, 0.14);
  --deep-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #fff7fb 0%, #fff1f2 52%, #fff7ed 100%);
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--pink), var(--rose), var(--orange));
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.28);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand:hover {
  transform: scale(1.03);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.16);
}

.brand-name {
  font-size: 1.45rem;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
  font-size: 0.96rem;
  padding: 8px 4px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-search,
.mobile-search {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.nav-search input,
.mobile-search input {
  width: 230px;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 10px 12px 10px 18px;
}

.nav-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.nav-search button,
.mobile-search button {
  border: 0;
  color: var(--pink);
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  margin: 5px 0;
}

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

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

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

.mobile-panel nav a {
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

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

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #111827;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.06);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.08));
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(0deg, rgba(255, 247, 251, 1), rgba(255, 247, 251, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.58fr);
  gap: 44px;
  color: #fff;
  padding: 64px 0;
}

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

.hero-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.hero-copy h1 {
  margin: 22px 0 16px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.9;
  margin: 0 0 28px;
}

.hero-tags,
.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.card-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(236, 72, 153, 0.12);
  color: #be185d;
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

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

.btn-primary,
.btn-secondary,
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 850;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--rose), var(--orange));
  box-shadow: 0 16px 35px rgba(236, 72, 153, 0.28);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-soft {
  color: #be185d;
  background: #fff1f2;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-soft:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--deep-shadow);
  transform: rotate(1deg);
}

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

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

.hero-poster strong {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  z-index: 2;
  color: #fff;
  font-size: 1.6rem;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 2rem;
}

.hero-arrow.prev {
  left: 20px;
}

.hero-arrow.next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: #fff;
}

.main-space {
  padding: 60px 0 0;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
}

.section-heading span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.section-heading i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.section-heading.rose i {
  background: linear-gradient(90deg, #fecdd3, transparent);
}

.section-heading.orange i {
  background: linear-gradient(90deg, #fed7aa, transparent);
}

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(219, 39, 119, 0.12);
  border: 1px solid rgba(251, 113, 133, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(219, 39, 119, 0.2);
  border-color: rgba(236, 72, 153, 0.32);
}

.poster-link {
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe4e6, #fff7ed);
}

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

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

.type-badge,
.duration-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 850;
  font-size: 0.76rem;
  line-height: 1;
  padding: 7px 10px;
}

.type-badge {
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, var(--pink), var(--rose));
}

.duration-badge {
  right: 12px;
  bottom: 12px;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(8px);
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.card-body h3 a:hover,
.row-title:hover {
  color: var(--pink);
}

.card-body p {
  min-height: 48px;
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: #6b7280;
  font-size: 0.84rem;
  margin-top: 13px;
}

.card-meta span {
  display: inline-flex;
  align-items: center;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 280px);
  gap: 20px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x proximity;
}

.scroll-row .movie-card {
  scroll-snap-align: start;
}

.feature-band {
  background: linear-gradient(90deg, #fce7f3, #ffe4e6, #ffedd5);
  border-radius: 30px;
  padding: 30px;
  box-shadow: inset 0 0 0 1px rgba(236, 72, 153, 0.12);
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: #be185d;
  font-weight: 850;
  box-shadow: 0 12px 25px rgba(236, 72, 153, 0.12);
}

.category-pill:hover {
  background: linear-gradient(90deg, var(--pink), var(--rose));
  color: #fff;
  transform: translateY(-2px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.panel {
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow);
}

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

.rank-line {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(251, 113, 133, 0.14);
  transition: background 0.22s ease, transform 0.22s ease;
}

.rank-line:hover {
  background: #fff1f2;
  transform: translateX(3px);
}

.rank-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #fce7f3;
  color: #be185d;
  font-weight: 900;
}

.rank-line:nth-child(1) .rank-num {
  background: #facc15;
  color: #fff;
}

.rank-line:nth-child(2) .rank-num {
  background: #d1d5db;
  color: #fff;
}

.rank-line:nth-child(3) .rank-num {
  background: #fb923c;
  color: #fff;
}

.rank-title {
  min-width: 0;
}

.rank-title a {
  display: block;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-title small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.page-hero {
  background: linear-gradient(90deg, var(--pink), var(--rose), var(--orange));
  color: #fff;
  padding: 70px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 16px;
}

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

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  line-height: 1.1;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.9;
  margin: 14px 0 0;
}

.filter-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 14px;
  margin-bottom: 28px;
}

.filter-bar input,
.filter-bar select {
  border: 1px solid #f5c2d2;
  border-radius: 14px;
  outline: none;
  padding: 12px 14px;
  color: var(--text);
  background: #fff;
}

.filter-bar input {
  flex: 1;
  min-width: 160px;
}

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

.category-tile {
  min-height: 178px;
  border-radius: 26px;
  padding: 24px;
  background: linear-gradient(135deg, #fff, #fff1f2 58%, #ffedd5);
  box-shadow: var(--shadow);
  border: 1px solid rgba(236, 72, 153, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.category-tile::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -42px;
  top: -42px;
  background: rgba(236, 72, 153, 0.12);
}

.category-tile h2 {
  margin: 0;
  position: relative;
  z-index: 2;
  font-size: 1.75rem;
}

.category-tile p {
  color: var(--muted);
  line-height: 1.7;
  margin: 10px 0 18px;
  position: relative;
  z-index: 2;
}

.category-tile strong {
  color: #be185d;
  position: relative;
  z-index: 2;
}

.detail-hero {
  position: relative;
  color: #fff;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.25));
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(0deg, rgba(255, 247, 251, 1), rgba(255, 247, 251, 0));
}

.detail-hero .container {
  position: relative;
  z-index: 2;
  padding: 76px 0 92px;
}

.detail-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.08;
}

.detail-lead {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.9;
  font-size: 1.08rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.video-shell {
  position: relative;
  background: #030712;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--deep-shadow);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.2), rgba(3, 7, 18, 0.48));
  cursor: pointer;
  transition: opacity 0.24s ease;
}

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

.play-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--rose), var(--orange));
  box-shadow: 0 18px 38px rgba(236, 72, 153, 0.36);
  font-weight: 900;
}

.play-overlay i {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
}

.detail-side {
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.detail-cover {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
}

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

.info-table {
  display: grid;
  gap: 12px;
}

.info-table div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  border-bottom: 1px solid #fee2e2;
  padding-bottom: 10px;
}

.info-table dt {
  color: #9f1239;
  font-weight: 850;
}

.info-table dd {
  margin: 0;
  color: var(--text);
}

.content-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 30px;
  line-height: 1.92;
}

.content-card h2 {
  margin: 0 0 16px;
  font-size: 1.75rem;
}

.content-card p {
  margin: 0 0 20px;
  color: #374151;
}

.movie-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 10px 26px rgba(219, 39, 119, 0.1);
  border: 1px solid rgba(251, 113, 133, 0.12);
}

.row-poster {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

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

.rank-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  border-radius: 10px;
}

.row-info {
  min-width: 0;
}

.row-title {
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
  margin: 4px 0 8px;
}

.row-info p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.empty-state {
  display: none;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  color: var(--muted);
  box-shadow: var(--shadow);
  text-align: center;
}

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

.site-footer {
  margin-top: 80px;
  color: #fff;
  background: linear-gradient(90deg, #db2777, #f43f5e, #f97316);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.85fr 0.85fr 1.1fr;
  gap: 32px;
  padding: 52px 0;
}

.footer-inner h3 {
  margin: 0 0 16px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.footer-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.84);
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
}

.mt-section {
  margin-top: 58px;
}

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

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

  .nav-search {
    display: none;
  }

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

  .hero-poster {
    max-width: 320px;
  }

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

@media (max-width: 680px) {
  .nav-inner {
    min-height: 62px;
  }

  .brand-name {
    font-size: 1.12rem;
  }

  .mobile-panel nav,
  .movie-grid,
  .category-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-carousel,
  .hero-content {
    min-height: 650px;
  }

  .hero-content {
    padding: 50px 0 80px;
  }

  .hero-poster {
    display: none;
  }

  .hero-arrow {
    display: none;
  }

  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-row {
    grid-template-columns: 92px 1fr;
  }

  .panel,
  .content-card,
  .detail-side {
    padding: 20px;
    border-radius: 22px;
  }
}
