:root {
  --primary-dark: #2d1b69;
  --primary-medium: #4a2b8c;
  --primary-light: #6b46c1;
  --accent-blue: #3a4fbe;
  --gradient: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--accent-blue) 100%
  );
  --text-light: #ffffff;
  --text-muted: #d8c3ff;
  --bg-dark: #1a103c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: var(--gradient);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 10px;
  background: -webkit-linear-gradient(#ff7bee, #7b68ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--text-muted);
}

.download-btn {
  background-color: var(--text-light);
  color: var(--primary-dark);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%234A2B8C" fill-opacity="0.2" d="M0,128L48,138.7C96,149,192,171,288,186.7C384,203,480,213,576,192C672,171,768,117,864,101.3C960,85,1056,107,1152,122.7C1248,139,1344,149,1392,154.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    bottom no-repeat;
  background-size: contain;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ff7bee, #7b68ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-muted);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.cta-btn.primary {
  background: var(--gradient);
  color: var(--text-light);
}

.cta-btn.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  backdrop-filter: blur(10px);
}

.cta-btn i {
  margin-right: 10px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: linear-gradient(to right, #2e0129cc, #1b1441ab), url(./all.jpg);
  background-size: 160% auto;
  background-position: center;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ff7bee, #7b68ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(74, 43, 140);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
}
.features .container {
  backdrop-filter: blur(10px);
  padding: 40px;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ff7bee, #7b68ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-muted);
}

/* App Showcase */
.app-showcase {
  padding: 100px 0;
  background: var(--gradient);
}

.showcase-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.showcase-text {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.showcase-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.showcase-text p {
  margin-bottom: 30px;
  color: var(--text-muted);
}

.showcase-images {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.phone-mockup {
  width: 250px;
  height: 500px;
  background: #222;
  border-radius: 40px;
  padding: 15px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(45deg, #ff7bee, #7b68ee);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

/* Download Section */
.download {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-dark);
}

.download h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ff7bee, #7b68ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.download p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Footer */
footer {
  background: var(--gradient);
  padding: 40px 0 20px;
  text-align: center;
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--text-light);
  margin: 0 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--text-muted);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .showcase-container {
    flex-direction: column;
  }

  .showcase-text {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
