* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 45%, #ffffff 100%);
  color: #111827;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.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.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(254, 202, 202, 0.6);
  box-shadow: 0 10px 30px rgba(248, 113, 113, 0.08);
}

.navbar {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(90deg, #dc2626, #db2777);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, #ef4444, #ec4899);
  box-shadow: 0 12px 26px rgba(239, 68, 68, 0.25);
}

.nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links,
.nav-quick,
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link,
.nav-quick a {
  font-weight: 700;
  color: #374151;
}

.nav-link:hover,
.nav-link.active,
.nav-quick a:hover {
  color: #dc2626;
}

.nav-quick {
  font-size: 14px;
  color: #6b7280;
}

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

.nav-search input {
  width: 210px;
  border: 1px solid #fecaca;
  border-radius: 999px;
  padding: 10px 16px;
  outline: none;
  background: #ffffff;
}

.nav-search input:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.nav-search button,
.btn,
.filter-search button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.nav-search button {
  color: #ffffff;
  padding: 10px 18px;
  background: linear-gradient(90deg, #ef4444, #ec4899);
  box-shadow: 0 10px 22px rgba(239, 68, 68, 0.18);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fee2e2;
  color: #dc2626;
  cursor: pointer;
  font-size: 22px;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.08));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  max-width: 760px;
  animation: slideIn 0.6s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.eyebrow.red {
  background: #fee2e2;
  color: #dc2626;
}

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

.hero-content p,
.page-hero p,
.detail-hero-content p {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.hero-tags,
.detail-tags,
.tag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-tags span,
.detail-tags span,
.tag-strip span {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn.primary {
  color: #ffffff;
  background: linear-gradient(90deg, #ef4444, #ec4899);
  box-shadow: 0 18px 36px rgba(239, 68, 68, 0.28);
}

.btn.ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.btn.light {
  color: #dc2626;
  background: #ffffff;
}

.btn.full {
  width: 100%;
}

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

.hero-control:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-control.prev {
  left: 22px;
}

.hero-control.next {
  right: 22px;
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

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

.section {
  padding: 70px 0;
}

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

.section-head.center {
  justify-content: center;
  text-align: center;
}

.section-head.compact {
  align-items: center;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-head p {
  max-width: 720px;
  margin: 12px auto 0;
  color: #6b7280;
  font-size: 17px;
}

.section-link {
  font-weight: 900;
  color: #dc2626;
}

.soft-section {
  background: linear-gradient(135deg, #fee2e2, #fff7ed 46%, #ffffff);
}

.soft-section.pink {
  background: linear-gradient(135deg, #fce7f3, #fff1f2 54%, #ffffff);
}

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

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

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

.movie-card {
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(254, 202, 202, 0.62);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: #fda4af;
  box-shadow: 0 24px 48px rgba(244, 63, 94, 0.16);
}

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 4 / 5.3;
  overflow: hidden;
  background: linear-gradient(135deg, #fee2e2, #fce7f3);
}

.list-card .poster-wrap {
  width: 190px;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.card-score,
.card-year {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(10px);
}

.card-score {
  left: 12px;
  top: 12px;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.9), rgba(236, 72, 153, 0.9));
}

.card-year {
  right: 12px;
  bottom: 12px;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 900;
}

.card-body p {
  margin: 0 0 16px;
  color: #4b5563;
  line-height: 1.65;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  color: #6b7280;
  font-size: 13px;
}

.card-meta span {
  border-radius: 999px;
  padding: 5px 9px;
  background: #f9fafb;
}

.tag-strip {
  margin-top: 12px;
}

.tag-strip span,
.detail-tags span {
  background: #ecfeff;
  color: #0e7490;
}

.list-card .card-link {
  flex-direction: row;
  gap: 18px;
  padding: 14px;
}

.list-card .card-body {
  padding: 0;
}

.list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 34px;
}

.rank-panel {
  position: sticky;
  top: 94px;
  align-self: start;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 46px 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(254, 202, 202, 0.7);
  border-radius: 18px;
  background: #ffffff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.14);
}

.rank-num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #ef4444, #ec4899);
}

.rank-row img {
  width: 96px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
}

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

.rank-info strong,
.rank-info em {
  display: block;
}

.rank-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 900;
}

.rank-info em {
  overflow: hidden;
  color: #6b7280;
  font-size: 13px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-score {
  color: #dc2626;
  font-size: 20px;
  font-weight: 900;
}

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

.category-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(239, 68, 68, 0.15);
}

.category-icon,
.overview-index {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #ef4444, #ec4899);
}

.category-card strong {
  margin-top: 16px;
  font-size: 21px;
}

.category-card em {
  margin-top: 10px;
  color: #6b7280;
  font-style: normal;
  line-height: 1.6;
}

.cta-card {
  border-radius: 34px;
  padding: clamp(36px, 6vw, 70px);
  text-align: center;
  color: #ffffff;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 26%), linear-gradient(135deg, #ef4444, #ec4899);
  box-shadow: 0 24px 60px rgba(239, 68, 68, 0.24);
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
}

.cta-card p {
  max-width: 760px;
  margin: 16px auto 26px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero {
  padding: 92px 0 78px;
}

.soft-hero,
.category-hero,
.ranking-hero {
  background: linear-gradient(135deg, #fee2e2, #fff7ed 48%, #ffffff);
}

.page-hero h1 {
  color: #111827;
}

.page-hero p {
  color: #4b5563;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: #6b7280;
  font-weight: 700;
}

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

.breadcrumb.dark {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb.dark a:hover {
  color: #ffffff;
}

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

.overview-card {
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.overview-card a {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 240px;
}

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

.overview-card div {
  padding: 28px;
}

.overview-card h2 {
  margin: 18px 0 10px;
  font-size: 28px;
}

.overview-card p {
  margin: 0 0 18px;
  color: #4b5563;
  line-height: 1.7;
}

.overview-card em {
  color: #dc2626;
  font-style: normal;
  font-weight: 900;
}

.filter-panel {
  margin-top: 34px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 2fr;
  gap: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.07);
}

.filter-search input,
.filter-selects select {
  width: 100%;
  border: 1px solid #fecaca;
  border-radius: 16px;
  padding: 13px 14px;
  background: #ffffff;
  outline: none;
}

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

.filter-search input:focus,
.filter-selects select:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.empty-state {
  margin: 34px 0 0;
  border-radius: 22px;
  padding: 34px;
  text-align: center;
  color: #6b7280;
  background: #ffffff;
}

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

.detail-shade {
  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.18));
}

.detail-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
}

.detail-main,
.detail-side {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.24);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: rgba(17, 24, 39, 0.42);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 32px;
  background: linear-gradient(135deg, #ef4444, #ec4899);
  box-shadow: 0 18px 42px rgba(239, 68, 68, 0.34);
}

.play-overlay strong {
  font-size: 22px;
}

.detail-content-card,
.detail-poster-card {
  margin-top: 24px;
  border-radius: 24px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
}

.detail-content-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.detail-content-card p {
  margin: 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

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

.detail-poster-card {
  position: sticky;
  top: 94px;
  margin-top: 0;
}

.detail-poster-card img {
  width: 100%;
  aspect-ratio: 4 / 5.3;
  object-fit: cover;
  border-radius: 18px;
}

.detail-poster-card dl {
  display: grid;
  gap: 12px;
  margin: 20px 0 22px;
}

.detail-poster-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fee2e2;
}

.detail-poster-card dt {
  color: #6b7280;
  font-weight: 700;
}

.detail-poster-card dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.site-footer {
  margin-top: 40px;
  color: #ffffff;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  padding: 48px 0;
}

.footer-brand {
  font-size: 24px;
  font-weight: 900;
}

.footer-grid p {
  max-width: 560px;
  color: #d1d5db;
  line-height: 1.75;
}

.footer-links {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: #fda4af;
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

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

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

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

  .featured-grid,
  .rank-list.wide,
  .overview-grid,
  .two-column-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .rank-panel,
  .detail-poster-card {
    position: static;
  }
}

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

  .navbar {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 12px 0;
  }

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

  .nav-links,
  .nav-quick,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-search {
    width: 100%;
    margin-left: 0;
  }

  .nav-search input {
    flex: 1;
    width: auto;
  }

  .hero-carousel {
    height: 600px;
  }

  .hero-content {
    max-width: none;
    padding-right: 20px;
  }

  .hero-content p,
  .detail-hero-content p {
    font-size: 17px;
  }

  .hero-control {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

  .section-head,
  .footer-grid {
    display: block;
  }

  .section-link {
    display: inline-flex;
    margin-top: 16px;
  }

  .cards-grid,
  .featured-grid,
  .large-card-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .list-card .card-link {
    display: block;
  }

  .list-card .poster-wrap {
    width: 100%;
    aspect-ratio: 4 / 5.3;
    margin-bottom: 14px;
  }

  .rank-row {
    grid-template-columns: 42px 78px minmax(0, 1fr);
  }

  .rank-row img {
    width: 78px;
    height: 58px;
  }

  .rank-score {
    grid-column: 3;
    font-size: 16px;
  }

  .overview-card a {
    grid-template-columns: 1fr;
  }

  .overview-card img {
    height: 210px;
  }

  .filter-panel,
  .filter-selects {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 62px 0 52px;
  }

  .detail-hero {
    min-height: 560px;
  }

  .footer-links {
    align-items: flex-start;
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  .cards-grid,
  .featured-grid,
  .large-card-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .detail-content-card,
  .detail-poster-card {
    padding: 20px;
  }
}
