:root {
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --bamboo-50: #f0fdf4;
  --bamboo-100: #dcfce7;
  --bamboo-600: #16a34a;
  --mist-50: #f8fafc;
  --mist-100: #f1f5f9;
  --mist-200: #e2e8f0;
  --mist-300: #cbd5e1;
  --mist-500: #64748b;
  --mist-600: #475569;
  --mist-700: #334155;
  --mist-800: #1e293b;
  --mist-900: #0f172a;
  --white: #ffffff;
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 45px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  background: var(--white);
  color: var(--mist-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.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.95);
  border-bottom: 1px solid var(--mist-200);
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--mist-900);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo {
  font-size: 22px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--primary-600);
  color: var(--white);
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(2, 132, 199, 0.35);
}

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

.nav-link,
.mobile-nav-link {
  font-size: 14px;
  font-weight: 650;
  color: var(--mist-700);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary-600);
}

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

.header-search input,
.mobile-search input,
.filter-controls input,
.filter-controls select {
  border: 1px solid var(--mist-300);
  border-radius: 12px;
  background: var(--white);
  color: var(--mist-900);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 210px;
  padding: 9px 12px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-controls input:focus,
.filter-controls select:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.16);
}

.header-search button,
.mobile-search button,
.primary-button,
.secondary-button {
  border: 0;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-search button,
.mobile-search button,
.primary-button {
  background: var(--primary-600);
  color: var(--white);
}

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

.secondary-button {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--mist-100);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--mist-800);
  border-radius: 20px;
}

.mobile-panel {
  display: none;
  padding: 16px;
  border-top: 1px solid var(--mist-200);
  background: var(--white);
}

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

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 14px;
}

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

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav-link {
  padding: 10px 12px;
  border-radius: 12px;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  background: var(--primary-50);
  color: var(--primary-600);
}

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--mist-900);
}

.hero-track,
.hero-slide,
.hero-slide img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.10));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 720px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--primary-600);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.hero-content h1,
.hero-content h2 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

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

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

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

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

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

.category-strip {
  background: linear-gradient(90deg, var(--bamboo-50), var(--primary-50));
  border-bottom: 1px solid var(--mist-200);
}

.category-strip-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  overflow-x: auto;
  padding: 14px 0;
}

.category-strip-inner span {
  flex: 0 0 auto;
  font-weight: 800;
  color: var(--mist-900);
}

.category-strip-inner a {
  flex: 0 0 auto;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--white);
  color: var(--mist-700);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.section-block {
  padding: 48px 0;
}

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

.section-heading span {
  color: var(--primary-600);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  margin: 3px 0 0;
  color: var(--mist-900);
  font-size: 28px;
  line-height: 1.2;
}

.section-heading a {
  color: var(--primary-600);
  font-weight: 800;
  white-space: nowrap;
}

.small-heading {
  align-items: start;
}

.soft-section {
  background: linear-gradient(90deg, var(--bamboo-50), var(--primary-50));
}

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

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

.six-col {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

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

.movie-card {
  min-width: 0;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mist-200);
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 62%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster::after {
  opacity: 1;
}

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

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

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-600);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
  padding: 16px;
}

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

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

.movie-card:hover h2 {
  color: var(--primary-600);
}

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

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

.card-tags span {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-size: 12px;
  font-weight: 700;
}

.movie-card-small .card-body {
  padding: 12px;
}

.movie-card-small .card-body h2 {
  font-size: 15px;
}

.movie-card-small .card-tags,
.movie-card-small .card-body p {
  display: none;
}

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

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

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

.rank-item {
  display: grid;
  grid-template-columns: auto 128px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.rank-item img {
  width: 128px;
  height: 74px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--mist-200);
}

.rank-no,
.ranking-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--primary-600);
  color: var(--white);
  font-weight: 850;
}

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

.rank-info strong,
.ranking-copy strong {
  display: block;
  color: var(--mist-900);
  line-height: 1.3;
}

.rank-info em,
.ranking-copy em,
.ranking-copy b {
  display: block;
  color: var(--mist-500);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  margin-top: 4px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mist-900), #123c56 62%, var(--primary-700));
  color: var(--white);
}

.compact-hero {
  padding: 70px 0;
}

.page-hero h1 {
  margin: 18px 0 10px;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

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

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

.category-card {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 24px;
  background: var(--mist-900);
  box-shadow: var(--shadow-card);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.07);
  opacity: 0.86;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12));
}

.category-card div {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: var(--white);
}

.category-card span {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--primary-600);
  font-size: 13px;
  font-weight: 800;
}

.category-card h2 {
  margin: 14px 0 6px;
  font-size: 25px;
}

.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.filter-panel {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--mist-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.filter-title {
  margin-bottom: 12px;
  color: var(--mist-900);
  font-size: 18px;
  font-weight: 850;
}

.filter-controls {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(120px, 0.6fr));
  gap: 12px;
}

.filter-controls input,
.filter-controls select {
  width: 100%;
  padding: 11px 12px;
}

.empty-state {
  padding: 28px;
  border-radius: 18px;
  background: var(--mist-50);
  color: var(--mist-600);
  text-align: center;
  font-weight: 750;
}

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

.ranking-row a {
  display: grid;
  grid-template-columns: 46px 150px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.ranking-row img {
  width: 150px;
  height: 86px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--mist-200);
}

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

.ranking-copy b {
  color: var(--mist-600);
}

.heat {
  color: var(--primary-600);
  font-weight: 850;
  white-space: nowrap;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  color: var(--white);
  background: var(--mist-900);
}

.detail-backdrop,
.detail-backdrop img,
.detail-shade {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.08);
  opacity: 0.48;
}

.detail-shade {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.36));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 42px;
  align-items: center;
  padding: 52px 0;
}

.detail-poster {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  background: var(--mist-800);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-copy p {
  max-width: 760px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
}

.detail-meta span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

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

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

.player-card,
.content-card,
.side-card {
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.22));
  color: var(--white);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-600);
  font-size: 34px;
}

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

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

.content-card {
  margin-top: 22px;
  padding: 28px;
}

.content-card h2,
.side-card h2 {
  margin: 0 0 14px;
  color: var(--mist-900);
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: var(--mist-700);
  font-size: 16px;
}

.side-card {
  padding: 18px;
}

.side-list .rank-item {
  grid-template-columns: 98px 1fr;
  padding: 8px;
}

.side-list .rank-item img {
  width: 98px;
  height: 60px;
}

.side-list .rank-no {
  display: none;
}

.site-footer {
  margin-top: 56px;
  background: var(--mist-900);
  color: var(--mist-300);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 38px;
  padding: 42px 0;
}

.footer-logo {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
  max-width: 440px;
  color: var(--mist-300);
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--mist-300);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-100);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid var(--mist-800);
  color: var(--mist-500);
  text-align: center;
  font-size: 14px;
}

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

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

  .hero-slider {
    height: 520px;
  }

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

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

  .split-section,
  .detail-layout,
  .detail-hero-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .header-inner {
    height: 60px;
  }

  .logo {
    font-size: 19px;
  }

  .hero-slider {
    height: 500px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-arrow {
    display: none;
  }

  .category-strip-inner {
    min-height: 64px;
  }

  .section-block {
    padding: 34px 0;
  }

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

  .movie-grid,
  .three-col,
  .six-col,
  .catalog-grid,
  .rank-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 96px 1fr;
  }

  .rank-no {
    display: none;
  }

  .rank-item img {
    width: 96px;
    height: 62px;
  }

  .filter-controls {
    grid-template-columns: 1fr;
  }

  .ranking-row a {
    grid-template-columns: 36px 96px 1fr;
    gap: 10px;
  }

  .ranking-row img {
    width: 96px;
    height: 60px;
  }

  .ranking-copy b,
  .heat {
    display: none;
  }

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

  .detail-hero-inner {
    min-height: auto;
    padding: 34px 0;
    gap: 24px;
  }

  .detail-poster {
    max-width: 100%;
  }

  .detail-copy h1 {
    font-size: 34px;
  }

  .detail-copy p {
    font-size: 15px;
  }

  .detail-layout {
    padding-top: 28px;
  }

  .content-card {
    padding: 20px;
  }

  .footer-grid {
    gap: 24px;
  }
}
