* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* EDIT COLORS HERE */
:root {
  --primary-color: #26afe0;
  --secondary-color: #521ccf;
  --accent-color: #f5e963;
  --purple-gradient: #d863f5;
  --coral-gradient: #f46464;
  --text-dark: #212121;
  --text-light: #454545;
  --background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, #26afe0, #521ccf);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.logo {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2em;
  opacity: 0.95;
}

/* Hero Section */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(38, 175, 224, 0.05) 100%
  );
}

.hero h1 {
  font-size: 3em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3em;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Download Button */
.download-btn {
  display: inline-block;
  background: linear-gradient(135deg, #26afe0, #521ccf);
  color: white;
  padding: 18px 50px;
  font-size: 1.2em;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(38, 175, 224, 0.4);
  font-weight: 600;
}

.download-btn:hover {
  background: linear-gradient(135deg, #521ccf, #d863f5);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(82, 28, 207, 0.5);
}

.download-btn::before {
  content: "📱 ";
}

/* Features Section */
.features {
  padding: 80px 20px;
  background: white;
}

.features h2 {
  text-align: center;
  font-size: 2.5em;
  color: var(--text-dark);
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease;
  background: linear-gradient(
    135deg,
    rgba(38, 175, 224, 0.1),
    rgba(82, 28, 207, 0.1)
  );
  border: 2px solid transparent;
  background-clip: padding-box;
}

.feature-card:hover {
  transform: translateY(-5px);
  border: 2px solid rgba(38, 175, 224, 0.3);
  box-shadow: 0 10px 30px rgba(38, 175, 224, 0.2);
}

.feature-card:nth-child(1) {
  background: linear-gradient(
    135deg,
    rgba(38, 175, 224, 0.15),
    rgba(82, 28, 207, 0.15)
  );
}

.feature-card:nth-child(2) {
  background: linear-gradient(
    135deg,
    rgba(245, 233, 99, 0.2),
    rgba(129, 167, 75, 0.15)
  );
}

.feature-card:nth-child(3) {
  background: linear-gradient(
    135deg,
    rgba(216, 99, 245, 0.15),
    rgba(78, 111, 251, 0.15)
  );
}

.feature-card:nth-child(4) {
  background: linear-gradient(
    135deg,
    rgba(244, 100, 100, 0.15),
    rgba(151, 52, 170, 0.15)
  );
}

.feature-card:nth-child(5) {
  background: linear-gradient(
    135deg,
    rgba(38, 175, 224, 0.15),
    rgba(129, 167, 75, 0.15)
  );
}

.feature-card:nth-child(6) {
  background: linear-gradient(
    135deg,
    rgba(129, 167, 75, 0.2),
    rgba(82, 28, 207, 0.1)
  );
}

.feature-icon {
  font-size: 3.5em;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5em;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 1.05em;
}

/* Description Section */
.description {
  padding: 80px 20px;
  background: linear-gradient(
    135deg,
    rgba(245, 233, 99, 0.1),
    rgba(38, 175, 224, 0.1)
  );
}

.description-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.description h2 {
  font-size: 2.5em;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.description p {
  font-size: 1.2em;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #212121, #454545);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

footer p {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1.1em;
  }

  .logo {
    font-size: 2em;
  }

  .features h2,
  .description h2 {
    font-size: 2em;
  }
}
