* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #f7b8ff 0%, #b5e8ff 50%, #f7b8ff);
  color: #4a2c7e;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 30px 0;
  text-align: center;
}

.logo {
  font-size: 3.5rem;
  font-weight: 800;
  color: #6b3fba;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 30px;
}

.hero {
  text-align: center;
  padding: 60px 0;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #4a2c7e;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #5e4a7e;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, #8e44ad, #6c5ce7);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.screenshots {
  padding: 80px 0;
  text-align: center;
}

.screenshots h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #4a2c7e;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.screenshot {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.screenshot:hover {
  transform: translateY(-10px);
}

.screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-caption {
  padding: 20px;
  font-size: 1.1rem;
  color: #6b3fba;
}

.features {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  margin: 40px 0;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #4a2c7e;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature {
  text-align: center;
  padding: 30px;
}

.feature-icon {
  font-size: 3rem;
  color: #6b3fba;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #4a2c7e;
}

.download {
  text-align: center;
  padding: 80px 0;
}

.download h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #4a2c7e;
}

.download p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #5e4a7e;
}

.app-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.badge {
  background: #4a2c7e;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s;
}

.badge:hover {
  transform: scale(1.05);
}

footer {
  background: rgba(74, 44, 126, 0.9);
  color: white;
  padding: 40px 0;
  text-align: center;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.copyright {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.contact {
  margin-top: 10px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .app-badges {
    flex-direction: column;
    align-items: center;
  }
}
