* {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

html,
body {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.store-icon {
  width: 250px;
  height: 75px;
}

.social-icon {
  width: 32;
  height: 32;
  border-radius: 50%;
}

.logo-container {
  border-radius: 8px;
  background-color: transparent;
}

.hero-container {
  padding-right: 48px;
  padding-left: 48px;
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  width: 100%;
  max-width: 96rem;
  margin: 0 auto;
  position: relative;
}

.section {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.section.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.section-custom-styles {
  opacity: 1;
}

.section-accent {
  background-color: transparent;
}

/* sections */

.demo-list-details li {
  list-style: none; /* Removes default bullets */
  padding: 0;
  background-image: url("/assets/check-C0DMRtPW.png");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 25px;
}

#demo-iframe {
  width: 100%;
  height: 100%;
  max-width: 1024px;
}

.demo-container {
  aspect-ratio: 2 / 1;
  width: 1024px;
}

@media (min-width: 768px) {
  #demo-iframe {
    width: 1024px;
  }
}

@media (max-width: 720px) {
  .demo-container {
    width: 100%;
  }
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate-border-move {
  background-size: 200% 200%;
  animation: borderMove 2s linear infinite;
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .hero-container {
    padding-right: 24px;
    padding-left: 24px;
  }
}
