/* ============================
   DESIGN TOKENS
   ============================ */
:root {
  /* Colors */
  --bg-primary: #06080f;
  --bg-secondary: #0c1023;
  --bg-card: rgba(14, 20, 42, 0.7);
  --bg-card-hover: rgba(20, 28, 58, 0.85);
  --bg-glass: rgba(12, 16, 35, 0.65);

  --accent-primary: #6c5ce7;
  --accent-secondary: #a78bfa;
  --accent-glow: rgba(108, 92, 231, 0.35);
  --accent-gradient: linear-gradient(135deg, #6c5ce7, #a78bfa, #818cf8);
  --accent-gradient-hover: linear-gradient(135deg, #7c6df7, #b79cff, #929df8);

  --text-primary: #eef0f6;
  --text-secondary: #a0a8c4;
  --text-muted: #6b7394;

  --border-subtle: rgba(108, 92, 231, 0.12);
  --border-glow: rgba(108, 92, 231, 0.3);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container-max: 1100px;
  --container-pad: 0 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;
}

/* ============================
   RESET & BASE
   ============================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  color: var(--accent-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-primary);
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-primary);
}

/* ============================
   UTILITY
   ============================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

.section {
  padding: var(--section-pad);
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================
   SCROLL REVEAL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================
   KEYFRAMES
   ============================ */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px var(--accent-glow);
  }

  50% {
    box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(108, 92, 231, 0.15);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes particle-drift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(var(--drift-x, 100px), var(--drift-y, -200px)) scale(0);
    opacity: 0;
  }
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition-normal), padding var(--transition-normal), box-shadow var(--transition-normal);
}

.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 4px;
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.5)) drop-shadow(0 0 12px rgba(255, 0, 255, 0.25));
  transition: filter var(--transition-fast), transform var(--transition-fast);
  image-rendering: pixelated;
}

.nav-logo:hover .logo-img {
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.7)) drop-shadow(0 0 20px rgba(255, 0, 255, 0.4));
  transform: scale(1.1);
}

.logo-img-sm {
  width: 28px;
  height: 28px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(108, 92, 231, 0.08);
}

.nav-link.active {
  color: var(--text-primary);
  background: rgba(108, 92, 231, 0.15);
  box-shadow: 0 0 15px rgba(108, 92, 231, 0.1);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

/* ============================
   PAGE TRANSITION
   ============================ */
#app {
  min-height: 100vh;
  animation: fade-in 0.4s var(--ease-out);
}

.page-enter {
  animation: fade-in 0.5s var(--ease-out);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(108, 92, 231, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(167, 139, 250, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 20%, rgba(129, 140, 248, 0.06) 0%, transparent 50%);
  animation: gradient-shift 12s ease infinite;
  background-size: 200% 200%;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: particle-drift var(--duration, 6s) linear infinite;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-secondary);
  margin-bottom: 28px;
  animation: fade-in 0.6s var(--ease-out) 0.2s both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  animation: pulse-glow 2s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: fade-in 0.7s var(--ease-out) 0.3s both;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.7;
  animation: fade-in 0.7s var(--ease-out) 0.45s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--accent-gradient);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 25px var(--accent-glow);
  animation: fade-in 0.7s var(--ease-out) 0.55s both;
}

.hero-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 40px var(--accent-glow);
  color: white;
}

.hero-cta-arrow {
  transition: transform var(--transition-fast);
}

.hero-cta:hover .hero-cta-arrow {
  transform: translateX(4px);
}

/* ============================
   APP SHOWCASE
   ============================ */
.apps-section {
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-secondary);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto 32px;
}

.app-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.app-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(108, 92, 231, 0.12);
}

.app-card:hover::before {
  opacity: 1;
}

.app-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 30px var(--accent-glow);
  position: relative;
  z-index: 1;
}

.app-info {
  position: relative;
  z-index: 1;
}

.app-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.app-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.app-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.app-tag {
  padding: 4px 14px;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-secondary);
}

.app-tag-link {
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.app-tag-link:hover {
  background: rgba(108, 92, 231, 0.25);
  border-color: var(--border-glow);
  color: var(--text-primary);
}

.coming-soon-card {
  background: var(--bg-card);
  border: 1px dashed var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.coming-soon-card .cs-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.6;
}

.coming-soon-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.coming-soon-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ============================
   ABOUT PAGE
   ============================ */
.about-hero {
  padding: 140px 24px 60px;
  text-align: center;
}

.about-hero .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
}

.about-hero .section-subtitle {
  max-width: 600px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 0 24px 80px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.about-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.about-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(108, 92, 231, 0.1);
}

.about-card:hover::after {
  transform: scaleX(1);
}

.about-card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: inline-block;
}

.about-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ============================
   LEGAL PAGES (Privacy / TOS)
   ============================ */
.legal-page {
  padding: 140px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-header {
  text-align: center;
  margin-bottom: 50px;
}

.legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 36px 0 14px;
  color: var(--accent-secondary);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1.8;
}

.legal-content ul {
  list-style: none;
  margin: 12px 0 14px;
  padding: 0;
}

.legal-content li {
  position: relative;
  padding-left: 24px;
  color: var(--text-secondary);
  font-size: 0.93rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-content li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 600;
}

.legal-content a {
  color: var(--accent-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-page {
  padding: 140px 24px 80px;
  max-width: 750px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  transition: all var(--transition-normal);
}

.contact-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 16px 50px rgba(108, 92, 231, 0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px var(--accent-glow);
}

.contact-card h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--accent-gradient);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px var(--accent-glow);
  max-width: 100%;
  word-break: break-all;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-email-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 40px var(--accent-glow);
  color: white;
}

.contact-form {
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact-form h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(6, 8, 15, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent-gradient);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 24px;
  text-align: center;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand .logo-img {
  width: 28px;
  height: 28px;
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-secondary);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ============================
   RESPONSIVE — MOBILE
   ============================ */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--bg-secondary);
    padding: 100px 32px 32px;
    gap: 12px;
    z-index: 999;
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid var(--border-subtle);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .app-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .app-icon {
    margin: 0 auto;
  }

  .app-tags {
    justify-content: center;
  }

  .legal-content {
    padding: 28px 20px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 120px 20px 60px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}