:root {
  --primary-900: #0b3159;
  --primary-800: #064b84;
  --primary-700: #0158a0;
  --primary-600: #006fc6;
  --primary-500: #0985e3;
  --primary-400: #36aaf7;
  --accent-500: #0fb9a8;
  --accent-300: #5feacf;
  --neutral-950: #020617;
  --neutral-900: #0f172a;
  --neutral-800: #1e293b;
  --neutral-700: #334155;
  --neutral-600: #475569;
  --neutral-500: #64748b;
  --neutral-300: #cbd5e1;
  --neutral-200: #e2e8f0;
  --neutral-100: #f1f5f9;
  --neutral-50: #f8fafc;
  --white: #ffffff;
  --shadow-md: 0 10px 22px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 22px 48px rgba(15, 23, 42, 0.18);
  --radius-lg: 14px;
  --radius-xl: 22px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  color: var(--neutral-900);
  background: var(--neutral-50);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 64px;
}

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

.brand-icon,
.footer-brand span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--primary-900);
  background: linear-gradient(135deg, var(--accent-300), var(--white));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

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

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

.desktop-nav a,
.mobile-nav a {
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--accent-300);
}

.header-search {
  display: flex;
  align-items: center;
  min-width: 260px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  padding: 9px 14px;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.header-search button {
  border: 0;
  color: var(--primary-900);
  background: var(--accent-300);
  padding: 9px 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

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

.mobile-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
}

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

.page-main {
  padding: 32px 0 72px;
}

.main-stack {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hero-carousel {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--neutral-200);
  box-shadow: var(--shadow-xl);
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s ease;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary-900), var(--primary-600));
}

.hero-slide img.is-missing,
.poster-frame img.is-missing,
.rank-item img.is-missing,
.detail-poster img.is-missing,
.player-cover img.is-missing {
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.06));
}

.hero-content {
  position: absolute;
  left: clamp(24px, 6vw, 56px);
  right: clamp(24px, 6vw, 56px);
  bottom: clamp(28px, 7vw, 56px);
  max-width: 760px;
  color: var(--white);
}

.hero-eyebrow,
.detail-eyebrow,
.page-title-panel span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--accent-300);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 900;
}

.hero-content p {
  max-width: 700px;
  margin: 0 0 24px;
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.primary-button,
.ghost-button,
.text-link,
.search-form button,
.wide-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-button,
.search-form button,
.wide-search button {
  color: var(--white);
  background: var(--primary-600);
  padding: 12px 22px;
  box-shadow: 0 12px 20px rgba(0, 111, 198, 0.24);
}

.primary-button:hover,
.search-form button:hover,
.wide-search button:hover {
  background: var(--primary-700);
  transform: translateY(-1px);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  backdrop-filter: blur(10px);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.46);
  font-size: 34px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.hero-carousel:hover .hero-arrow {
  opacity: 1;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

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

.hero-dots button.is-active {
  width: 34px;
  background: var(--white);
}

.search-hero-panel,
.page-title-panel,
.section-panel,
.search-panel,
.rank-panel,
.detail-layout,
.detail-article,
.category-overview-card {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.search-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.search-hero-panel h2,
.section-heading h2,
.page-title-panel h1,
.detail-copy h1,
.detail-article h2 {
  margin: 0;
  color: var(--neutral-900);
  line-height: 1.2;
}

.search-hero-panel h2,
.section-heading h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
}

.search-hero-panel p,
.section-heading p,
.page-title-panel p,
.category-overview-card p {
  margin: 8px 0 0;
  color: var(--neutral-600);
}

.wide-search,
.search-form {
  display: flex;
  gap: 12px;
}

.wide-search input,
.search-form input,
.search-form select,
.inline-filter input {
  width: 100%;
  border: 1px solid var(--neutral-300);
  border-radius: 12px;
  outline: 0;
  background: var(--white);
  padding: 13px 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.wide-search input:focus,
.search-form input:focus,
.search-form select:focus,
.inline-filter input:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(9, 133, 227, 0.14);
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-panel,
.search-panel,
.page-title-panel,
.detail-article {
  padding: clamp(24px, 4vw, 36px);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading > a,
.text-link {
  color: var(--primary-600);
  font-weight: 800;
}

.section-heading > a:hover,
.text-link:hover {
  color: var(--primary-700);
  text-decoration: underline;
}

.section-heading.compact {
  align-items: flex-start;
}

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

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

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

.movie-card {
  min-width: 0;
}

.card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.poster-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-900), var(--primary-600));
}

.movie-card-large .poster-frame {
  aspect-ratio: 16 / 10;
}

.poster-frame img,
.detail-poster img,
.player-cover img,
.rank-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.2s ease;
}

.card-link:hover .poster-frame img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  transition: opacity 0.25s ease;
}

.card-link:hover .poster-shade {
  opacity: 1;
}

.hover-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.card-link:hover .hover-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.duration-badge,
.category-badge {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
}

.duration-badge {
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.72);
}

.category-badge {
  top: 10px;
  left: 10px;
  background: var(--accent-500);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 8px;
  color: var(--neutral-900);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.card-link:hover h3 {
  color: var(--primary-600);
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--neutral-500);
  font-size: 13px;
}

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

.category-tile,
.category-overview-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 170px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--white), #eef8ff);
  border: 1px solid rgba(0, 111, 198, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.category-tile strong,
.category-overview-title {
  color: var(--primary-800);
  font-size: 20px;
  font-weight: 900;
}

.category-tile span,
.category-overview-card p {
  color: var(--neutral-600);
  font-size: 14px;
}

.category-tile em,
.overview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  font-style: normal;
}

.category-tile em a,
.overview-links a,
.tag-cloud a,
.footer-tags a {
  border-radius: 999px;
  color: var(--primary-700);
  background: rgba(9, 133, 227, 0.1);
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 28px;
  align-items: start;
}

.horizontal-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 0 16px;
  scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.scroll-card {
  flex: 0 0 288px;
}

.rank-panel {
  padding: 24px;
}

.long-rank {
  max-height: 1180px;
  overflow: auto;
}

.rank-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.rank-item a {
  display: grid;
  grid-template-columns: 42px 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 14px;
  padding: 10px;
  background: var(--neutral-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item a:hover {
  background: #eaf6ff;
  transform: translateX(3px);
}

.rank-number {
  color: var(--primary-600);
  font-weight: 900;
  font-size: 20px;
  text-align: center;
}

.rank-item img {
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-900), var(--primary-600));
}

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

.rank-copy strong,
.rank-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-copy small {
  color: var(--neutral-500);
  margin-top: 4px;
}

.page-title-panel {
  background: linear-gradient(135deg, var(--white), #edf8ff);
}

.page-title-panel h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
}

.inline-filter {
  max-width: 520px;
  margin-top: 22px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--neutral-600);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--primary-600);
  font-weight: 700;
}

.search-panel {
  background: var(--white);
}

.search-form {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(130px, 1fr)) auto;
}

.search-empty {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 28px;
  color: var(--neutral-600);
  text-align: center;
  box-shadow: var(--shadow-md);
}

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

.watch-section {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--neutral-950);
  box-shadow: var(--shadow-xl);
}

.watch-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--neutral-950);
}

.video-el {
  width: 100%;
  height: 100%;
  background: var(--neutral-950);
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  color: var(--white);
  background: var(--neutral-950);
}

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

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.28));
}

.big-play {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 86px;
  height: 86px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--primary-900);
  background: rgba(255, 255, 255, 0.9);
  font-size: 42px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.player-title {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--white);
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 900;
  text-align: left;
}

.player-message {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: none;
  border-radius: 10px;
  color: var(--white);
  background: rgba(220, 38, 38, 0.88);
  padding: 9px 12px;
  font-size: 14px;
}

.watch-player.has-error .player-message {
  display: block;
}

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

.detail-poster {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-900), var(--primary-600));
}

.detail-poster img {
  aspect-ratio: 3 / 4;
}

.detail-copy h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
}

.lead-text {
  margin: 16px 0 22px;
  color: var(--neutral-700);
  font-size: 18px;
}

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

.detail-meta-grid span {
  border-radius: 12px;
  background: var(--neutral-50);
  padding: 12px;
  color: var(--neutral-700);
}

.detail-meta-grid strong {
  display: block;
  color: var(--neutral-900);
  font-size: 13px;
}

.detail-article h2 {
  margin-top: 0;
  font-size: 24px;
  font-weight: 900;
}

.detail-article h2 + p {
  margin-top: 10px;
}

.detail-article p {
  margin: 0 0 24px;
  color: var(--neutral-700);
  font-size: 17px;
  line-height: 1.9;
}

.site-footer {
  color: var(--neutral-300);
  background: var(--neutral-900);
}

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

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 17px;
}

.footer-grid p {
  max-width: 360px;
  margin: 14px 0 0;
  color: var(--neutral-300);
  font-size: 14px;
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a:hover {
  color: var(--accent-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  color: var(--neutral-500);
  text-align: center;
}

[data-card].is-hidden {
  display: none;
}

@media (min-width: 768px) {
  .hero-carousel {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .hero-carousel {
    height: 600px;
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 12px;
    font-size: 14px;
  }

  .header-search {
    min-width: 220px;
  }

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

  .split-section {
    grid-template-columns: 1fr;
  }
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .search-hero-panel,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .movie-grid,
  .movie-grid.three-col,
  .movie-grid.two-col,
  .category-grid,
  .category-overview-grid,
  .rank-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-form {
    grid-template-columns: 1fr 1fr;
  }

  .search-form input,
  .search-form button {
    grid-column: 1 / -1;
  }

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

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

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

  .page-main {
    padding-top: 20px;
  }

  .main-stack {
    gap: 38px;
  }

  .hero-carousel {
    height: 430px;
    border-radius: 18px;
  }

  .hero-arrow {
    opacity: 1;
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 48px;
  }

  .hero-actions,
  .wide-search {
    flex-direction: column;
  }

  .movie-grid,
  .movie-grid.three-col,
  .movie-grid.two-col,
  .category-grid,
  .category-overview-grid,
  .rank-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .search-form {
    grid-template-columns: 1fr;
  }

  .rank-item a {
    grid-template-columns: 36px 68px minmax(0, 1fr);
  }

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

  .player-title {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .big-play {
    width: 68px;
    height: 68px;
    font-size: 34px;
  }
}
