* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: #fff;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  overflow-x: hidden;
}

.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./photo-1512436991641-6745cdb1723f.avif");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header & Navigation */
header {
  padding: 25px 0;
  position: fixed;
  width: 100%;
  background: rgba(42, 27, 61, 0.85);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(to right, #d4a5ff, #82c3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 10px;
  font-size: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #e6e6ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(106, 17, 203, 0.7);
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ff9cee, #82c3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.tagline {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #d4c7ff;
  font-weight: 300;
}

/* Content Sections */
.section {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  gap: 50px;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-text {
  flex: 1;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #b19cd9;
}

.section-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #e6e6ff;
}

/* App Screenshots */
.screenshot-container {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.screenshot {
  width: 180px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  border: 10px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.screenshot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(106, 17, 203, 0.3),
    rgba(37, 117, 252, 0.3)
  );
}

.screenshot:nth-child(2) {
  transform: translateY(20px);
}

.screenshot:nth-child(3) {
  transform: translateY(40px);
}

/* Features Section */
.features {
  text-align: center;
  margin-bottom: 100px;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #b19cd9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #82c3ff;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #d4c7ff;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.4);
  padding: 50px 0 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.contact-email {
  font-size: 1.3rem;
  color: #b19cd9;
  font-weight: 600;
}

.copyright {
  font-size: 1rem;
  color: #a0a0c0;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  color: #e6e6ff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #82c3ff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .section {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .screenshot-container {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 6px 12px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .tagline {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .hero {
    padding: 220px 0 80px;
  }

  .screenshot {
    width: 150px;
    height: 333px;
  }
}
