:root {
  --blue: #0096dc;
  --blue-dark: #0077b6;
  --blue-light: #4db8e8;
  --yellow: #ffd700;
  --yellow-dark: #ffc700;
  --red: #e63946;
  --cream: #fff9e6;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.2);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream), #ffffff 38%, #ffffff);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

img {
  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: 80;
  color: #ffffff;
  background: rgba(0, 150, 220, 0.96);
  box-shadow: 0 12px 30px rgba(0, 119, 182, 0.25);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 22px;
  font-weight: 900;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.08);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text span {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-text small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-dark);
  background: var(--yellow);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.header-search input,
.mobile-search input {
  width: 170px;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 8px 10px;
}

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

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--yellow);
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 18px;
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.mobile-link.active {
  color: var(--blue-dark);
  background: var(--yellow);
}

.hero-section,
.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.hero-section {
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 72px 0 64px;
}

.hero-section::after,
.page-hero::after,
.detail-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 28%), radial-gradient(circle at 80% 10%, rgba(255, 215, 0, 0.2), transparent 20%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  background: var(--yellow);
  opacity: 0.15;
  animation: bounceSlow 3s infinite;
}

.orb-one {
  top: 74px;
  left: 8%;
  width: 90px;
  height: 90px;
}

.orb-two {
  right: 8%;
  bottom: 74px;
  width: 140px;
  height: 140px;
  animation-delay: 1s;
}

@keyframes bounceSlow {
  0%,
  100% {
    transform: translateY(-18px);
  }

  50% {
    transform: translateY(0);
  }
}

.hero-container,
.page-hero .container,
.detail-hero .container {
  position: relative;
  z-index: 2;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  display: none;
  align-items: center;
  gap: 56px;
  animation: fadeIn 0.45s ease;
}

.hero-slide.active {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-card h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p,
.detail-card p {
  margin: 0 0 26px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 215, 0, 0.92);
  font-size: 12px;
  font-weight: 800;
}

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

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--blue-dark);
  background: var(--yellow);
  box-shadow: 0 12px 24px rgba(255, 215, 0, 0.25);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.ghost-button.dark {
  color: var(--blue-dark);
  background: rgba(0, 150, 220, 0.1);
}

.hero-visual {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
}

.poster-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 150, 220, 0.22), rgba(255, 215, 0, 0.2));
}

.hero-img,
.poster-img,
.rank-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

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

.hero-play,
.poster-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 56px;
  background: rgba(0, 0, 0, 0.22);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.hero-visual:hover .hero-play,
.movie-card:hover .poster-play {
  opacity: 1;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.hero-control,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-control {
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
  width: 28px;
  background: var(--yellow);
}

.section {
  padding: 72px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
}

.section-heading p {
  margin: 4px 0 0;
  color: var(--muted);
}

.section-heading > a {
  margin-left: auto;
  color: var(--blue-dark);
  font-weight: 900;
}

.section-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 16px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.section-icon.blue {
  color: #ffffff;
  background: var(--blue);
}

.section-icon.red {
  color: #ffffff;
  background: var(--red);
}

.light-heading h2,
.light-heading p,
.light-heading > a {
  color: #ffffff;
}

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

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

.poster-grid,
.glass-grid,
.category-preview-grid,
.side-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.movie-card {
  overflow: hidden;
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.card-poster {
  display: block;
  height: 230px;
}

.compact-card .card-poster {
  height: 180px;
}

.duration-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  color: #ffffff;
  background: var(--red);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 900;
}

.card-body {
  padding: 18px;
}

.card-title {
  display: -webkit-box;
  min-height: 52px;
  margin-bottom: 8px;
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.compact-card .card-title {
  min-height: 44px;
  font-size: 15px;
}

.card-title:hover {
  color: var(--blue);
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.card-meta span {
  padding: 3px 8px;
  background: #f3f4f6;
  border-radius: 999px;
}

.tag-row span {
  color: var(--blue-dark);
  background: rgba(0, 150, 220, 0.1);
}

.ranking-band {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--yellow-dark), var(--yellow));
}

.blue-band {
  padding: 72px 0;
  color: #ffffff;
  background: var(--blue);
}

.blue-band .movie-card,
.glass-grid .movie-card {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.blue-band .card-title,
.blue-band .card-body p,
.blue-band .card-meta {
  color: #ffffff;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 42px 132px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.rank-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffffff;
  background: var(--red);
  border-radius: 999px;
  font-weight: 900;
}

.rank-thumb {
  height: 92px;
  border-radius: 14px;
}

.rank-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

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

.rank-copy strong {
  font-size: 17px;
}

.rank-copy em,
.rank-copy small {
  color: var(--muted);
  font-style: normal;
}

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

.category-card,
.category-overview-card,
.about-card,
.cta-card,
.filter-panel,
.detail-main-copy,
.detail-side-copy {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-card {
  padding: 24px;
}

.category-main span,
.category-overview-copy span {
  color: var(--blue);
  font-weight: 900;
}

.category-main strong,
.category-overview-copy h2 {
  display: block;
  margin: 8px 0;
  font-size: 24px;
  line-height: 1.2;
}

.category-main p,
.category-overview-copy p,
.about-card p,
.cta-card p {
  margin: 0;
  color: var(--muted);
}

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

.category-samples a {
  padding: 6px 10px;
  color: var(--blue-dark);
  background: rgba(0, 150, 220, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.cta-card {
  padding: 46px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.cta-card h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.cta-card p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.82);
}

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

.compact-hero h1 {
  max-width: 820px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.category-overview-list {
  display: grid;
  gap: 26px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding: 26px;
}

.category-preview-grid {
  display: grid;
  gap: 14px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  padding: 18px;
}

.filter-search input,
.filter-controls select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
  padding: 0 16px;
  background: #ffffff;
}

.filter-search input:focus,
.filter-controls select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 150, 220, 0.12);
}

.filter-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

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

.large-rank-list .rank-item {
  grid-template-columns: 46px 150px minmax(0, 1fr);
}

.ranking-side {
  position: sticky;
  top: 94px;
  padding: 22px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ranking-side h2 {
  margin: 0 0 16px;
}

.side-grid {
  display: grid;
  gap: 14px;
}

.side-grid .movie-card {
  box-shadow: none;
  border: 1px solid var(--line);
}

.detail-hero {
  padding: 42px 0 64px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 30px;
  align-items: stretch;
}

.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  background: #000000;
  box-shadow: var(--shadow-strong);
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
  border-radius: 26px;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.58));
  cursor: pointer;
}

.player-overlay.is-hidden {
  display: none;
}

.player-play-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 38px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.24);
}

.player-overlay strong {
  font-size: 20px;
}

.detail-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  backdrop-filter: blur(10px);
}

.detail-card h1 {
  font-size: clamp(30px, 4vw, 46px);
}

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

.detail-meta-grid span {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
}

.detail-meta-grid b {
  color: var(--yellow);
  font-size: 12px;
}

.detail-tags span {
  color: var(--blue-dark);
  background: var(--yellow);
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.detail-main-copy,
.detail-side-copy {
  padding: 28px;
}

.detail-main-copy h2,
.detail-side-copy h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

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

.detail-neighbor-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-neighbor-links a {
  padding: 14px 16px;
  color: var(--blue-dark);
  background: rgba(0, 150, 220, 0.1);
  border-radius: 14px;
  font-weight: 800;
}

.detail-side-copy dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-side-copy dl div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.detail-side-copy dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-side-copy dd {
  margin: 0;
  font-weight: 800;
}

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

.about-card {
  padding: 28px;
}

.about-card h2 {
  margin: 0 0 12px;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 0.7fr));
  gap: 32px;
  padding: 52px 0;
}

.footer-brand p {
  margin: 16px 0 0;
  color: #9ca3af;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col strong {
  color: var(--yellow);
  margin-bottom: 6px;
}

.footer-col a,
.footer-col span {
  color: #9ca3af;
}

.footer-col a:hover {
  color: var(--yellow);
}

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

.hidden-card {
  display: none !important;
}

@media (max-width: 1024px) {
  .header-search {
    display: none;
  }

  .hero-slide.active,
  .detail-layout,
  .detail-content-grid,
  .ranking-layout,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
  }

  .catalog-grid,
  .movie-grid,
  .poster-grid,
  .glass-grid,
  .category-preview-grid,
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranking-side {
    position: static;
  }

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

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

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

  .header-inner {
    min-height: 64px;
  }

  .brand-text span {
    font-size: 18px;
  }

  .hero-section {
    min-height: auto;
    padding: 50px 0;
  }

  .hero-slide.active {
    gap: 30px;
  }

  .hero-visual {
    min-height: 300px;
    border-width: 5px;
    border-radius: 24px;
  }

  .hero-controls {
    justify-content: center;
  }

  .section {
    padding: 48px 0;
  }

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

  .section-heading > a {
    display: none;
  }

  .movie-grid,
  .catalog-grid,
  .poster-grid,
  .glass-grid,
  .category-grid,
  .category-preview-grid,
  .about-grid,
  .rank-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .rank-item,
  .large-rank-list .rank-item {
    grid-template-columns: 38px 96px minmax(0, 1fr);
    gap: 12px;
  }

  .rank-thumb {
    height: 78px;
  }

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

  .detail-card,
  .detail-main-copy,
  .detail-side-copy,
  .cta-card {
    padding: 22px;
  }
}
