* {
  box-sizing: border-box;
}

:root {
  --orange: #f97316;
  --amber: #f59e0b;
  --yellow: #facc15;
  --red: #ef4444;
  --pink: #ec4899;
  --purple: #8b5cf6;
  --blue: #06b6d4;
  --green: #22c55e;
  --slate: #334155;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #fff7ed;
  --panel: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", 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: 50;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--yellow));
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.22);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.brand-mark,
.footer-brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--orange);
  background: #ffffff;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 24px;
  letter-spacing: 1px;
}

.brand-copy em {
  font-size: 12px;
  color: #fff7ed;
  font-style: normal;
}

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

.header-search {
  flex: 1;
  max-width: 430px;
  margin-left: auto;
}

.header-search input,
.mobile-search input,
.hero-search input,
.search-large input,
.card-search,
.card-filter {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  outline: none;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 16px;
  transition: box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.search-large input:focus,
.card-search:focus,
.card-filter:focus {
  background: #ffffff;
  border-color: #fed7aa;
  box-shadow: 0 0 0 4px rgba(255, 237, 213, 0.5);
}

.header-search button,
.mobile-search button,
.hero-search button,
.search-large button {
  border: 0;
  border-radius: 999px;
  color: var(--orange);
  background: #ffffff;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.mobile-link {
  color: #fff7ed;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--orange);
  background: #ffffff;
}

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

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

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

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

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(125deg, #ea580c 0%, #f59e0b 52%, #facc15 100%);
  padding: 64px 0 78px;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(18px);
  animation: pulseGlow 6s ease-in-out infinite;
}

.hero-glow-a {
  left: 7%;
  top: -160px;
}

.hero-glow-b {
  right: 8%;
  bottom: -190px;
  animation-delay: 1.5s;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.12);
    opacity: 0.95;
  }
}

.hero-topline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.hero-topline h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero-topline p {
  margin: 0;
  color: #fff7ed;
  font-size: 18px;
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-height: 430px;
}

.hero-slide {
  display: none;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 80px rgba(124, 45, 18, 0.25);
  backdrop-filter: blur(16px);
}

.hero-slide.is-active {
  display: grid;
  animation: fadeIn 0.45s ease both;
}

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

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

.hero-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffedd5;
  font-weight: 800;
}

.hero-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.hero-copy p {
  margin: 0;
  color: #fff7ed;
  font-size: 18px;
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.hero-tags span,
.detail-tags span {
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 700;
  font-size: 13px;
}

.hero-actions,
.detail-info .btn {
  margin-top: 28px;
}

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

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

.btn-light {
  color: var(--orange);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.22);
}

.btn-ghost {
  color: #ffffff;
  margin-left: 12px;
  background: rgba(154, 52, 18, 0.28);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.24);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  box-shadow: 0 28px 50px rgba(67, 20, 7, 0.35);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.5s;
}

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-poster span {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  padding: 8px 13px;
  font-weight: 900;
}

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

.hero-controls button {
  border: 0;
  cursor: pointer;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--orange);
  background: #ffffff;
  font-size: 28px;
}

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

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

.hero-dot.is-active {
  width: 28px;
  background: #ffffff;
}

.content-section {
  padding: 72px 0;
}

.section-soft {
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.category-band {
  background: linear-gradient(135deg, #faf5ff, #fff7ed 55%, #fef3c7);
}

.ranking-band {
  color: #ffffff;
  background: linear-gradient(100deg, #eab308, #f97316, #ef4444);
}

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

.section-head span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ranking-band .section-head span,
.ranking-band .section-head h2,
.ranking-band .section-head p,
.ranking-band .section-link {
  color: #ffffff;
}

.section-head h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

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

.section-link {
  color: var(--orange);
  font-weight: 900;
}

.feature-grid,
.movie-grid,
.category-grid,
.ranking-grid,
.detail-content {
  display: grid;
  gap: 24px;
}

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

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #fed7aa, #fde68a);
}

.movie-card-large .poster-wrap {
  aspect-ratio: 16 / 9;
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.68));
}

.card-score,
.card-duration {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.62);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}

.card-score {
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

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

.card-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.card-category {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.card-body strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 1.45em;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  color: #9ca3af;
  font-size: 13px;
}

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

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

.category-card {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 10px;
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  padding: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-card::before {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.category-card strong {
  position: relative;
  font-size: 24px;
}

.category-card span {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

.accent-red {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.accent-slate {
  background: linear-gradient(135deg, #334155, #0f172a);
}

.accent-pink,
.accent-rose {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.accent-orange,
.accent-gold {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.accent-blue,
.accent-cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.accent-green {
  background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.accent-amber,
.accent-yellow {
  background: linear-gradient(135deg, #f59e0b, #eab308);
}

.accent-purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

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

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

.rank-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 92px 1fr;
  gap: 16px;
  align-items: center;
  border-radius: 20px;
  background: #ffffff;
  padding: 14px;
  color: var(--text);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s;
}

.rank-row:hover {
  transform: translateX(6px);
}

.rank-row img {
  width: 92px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
  background: #fed7aa;
}

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

.rank-row strong {
  font-size: 18px;
}

.rank-row em {
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-row small {
  color: #9ca3af;
}

.rank-no {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-weight: 900;
}

.page-hero {
  color: #ffffff;
  padding: 76px 0;
  background: linear-gradient(120deg, var(--orange), var(--amber), var(--yellow));
}

.page-hero span {
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #fff7ed;
  font-size: 18px;
}

.ranking-hero {
  background: linear-gradient(120deg, #eab308, #f97316, #ef4444);
}

.search-hero {
  background: linear-gradient(120deg, #fb923c, #f59e0b, #facc15);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 24px;
  background: #fff7ed;
}

.card-search,
.card-filter {
  border-color: #fed7aa;
  background: #ffffff;
}

.search-page {
  max-width: 980px;
}

.search-large {
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 24px;
  background: #fff7ed;
}

.search-large input {
  border-color: #fed7aa;
}

.search-large button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

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

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(16px) scale(1.08);
  opacity: 0.42;
}

.detail-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.58), rgba(17, 24, 39, 0.84));
}

.detail-wrap {
  position: relative;
  z-index: 2;
  padding: 36px 0 72px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #fed7aa;
  margin-bottom: 36px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

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

.detail-kicker {
  color: #fed7aa;
  font-weight: 900;
}

.detail-info h1 {
  margin: 10px 0 16px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
}

.detail-info p {
  max-width: 760px;
  margin: 0;
  color: #f9fafb;
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.detail-meta span {
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  padding: 9px 14px;
  font-weight: 800;
}

.player-section {
  background: #111827;
  padding: 54px 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

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

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

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

.play-circle {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--orange);
  background: #ffffff;
  font-size: 34px;
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.25);
}

.player-layer strong {
  font-size: 28px;
}

.player-layer small {
  color: #fed7aa;
  font-size: 15px;
  font-weight: 900;
}

.detail-content-section {
  background: #f9fafb;
}

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

.article-box,
.side-panel,
.cta-box {
  border-radius: 28px;
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.article-box h2,
.side-panel h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.article-box p {
  margin: 0 0 18px;
  color: #374151;
  font-size: 17px;
}

.side-panel dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  margin: 0;
}

.side-panel dt {
  color: #9ca3af;
  font-weight: 800;
}

.side-panel dd {
  margin: 0;
  color: #111827;
  font-weight: 700;
}

.cta-section {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
}

.cta-box {
  text-align: center;
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 46px);
}

.cta-box p {
  margin: 0 auto 22px;
  max-width: 720px;
  color: var(--muted);
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937);
}

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

.footer-brand span {
  color: #ffffff;
  background: var(--orange);
}

.footer-brand strong {
  color: #ffffff;
  font-size: 22px;
}

.site-footer p {
  max-width: 420px;
  color: #9ca3af;
}

.site-footer h3 {
  color: #ffffff;
  margin: 0 0 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  border-radius: 999px;
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
}

.footer-links a:hover {
  color: #ffffff;
  background: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  color: #9ca3af;
}

.is-filtered-out {
  display: none !important;
}

@media (max-width: 1100px) {
  .movie-grid-five {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

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

  .hero-topline,
  .hero-slide,
  .detail-grid,
  .detail-content,
  .footer-grid,
  .ranking-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    padding: 20px;
  }

  .hero-poster,
  .hero-poster img {
    min-height: 260px;
  }

  .feature-grid,
  .movie-grid-four,
  .movie-grid-five,
  .category-grid,
  .category-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .brand-copy em {
    display: none;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .hero-shell {
    padding: 44px 0 56px;
  }

  .hero-topline h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 34px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .btn-ghost {
    margin-left: 0;
  }

  .feature-grid,
  .movie-grid-four,
  .movie-grid-five,
  .category-grid,
  .category-grid-wide {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: auto 74px 1fr;
  }

  .rank-row img {
    width: 74px;
    height: 54px;
  }

  .section-head {
    display: grid;
  }

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