* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: #333;
  background: linear-gradient(135deg, #339bc4, #62dd91);
  background-attachment: fixed;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 28px;
  color: #48d1cc;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #48d1cc, #ffb6c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #48d1cc;
}

.cta-button {
  background: linear-gradient(to right, #48d1cc, #ffb6c1);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero {
  padding: 100px 0;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

.features {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  margin: 40px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  color: #5dc3ec;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #48d1cc, #ffb6c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.screenshots {
  padding: 80px 0;
  text-align: center;
}

.carousel {
  display: flex;
}

.carousel img {
  width: 25%;
  cursor: pointer;
  transition: 0.2s all linear;
}

.carousel img:hover {
  /* width: 25%; */
  transform: scale(1.1);
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  width: 40%;
  margin-right: 10%;
  display: flex;
  justify-content: center;
}

.screenshot {
  width: 300px;
  height: 600px;
  border-radius: 40px;
  margin: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: #48d1cc;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.carousel-control:hover {
  background: rgba(255, 255, 255, 0.9);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.indicator.active {
  background: white;
}

.community {
  padding: 80px 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  margin: 40px 0;
}

.community-content {
  max-width: 800px;
  margin: 0 auto;
}

.community-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

footer {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-email {
  font-size: 1.2rem;
  color: #48d1cc;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    gap: 15px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .screenshot {
    width: 250px;
    height: 500px;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
