body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 50%, #9c27b0 100%);
  color: #fff;
  min-height: 100vh;
}

.hero {
  background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 50%, #9c27b0 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  z-index: 3;
  text-align: center;
  position: relative;
}

.logo {
  width: 90px;
  margin-bottom: 18px;
  animation: popIn 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-btn {
  background: white;
  color: #4a148c;
  padding: 16px 38px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  margin: 10px 10px 0 0;
}
.cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-bg-animation {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 120vw;
  height: 120vw;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 60%, transparent 100%);
  opacity: 0.3;
  z-index: 1;
  animation: bgMove 8s linear infinite alternate;
}
@keyframes bgMove {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.1) translateY(40px); }
}

section {
  padding: 60px 20px 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
section h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 18px;
  text-align: center;
}

.about p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 30px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px 24px;
  width: 220px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  color: white;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  background: rgba(255, 255, 255, 0.15);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
  color: white;
  animation: iconPop 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes iconPop {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.community {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 30px;
  margin-top: 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.community h2 {
  color: #fff;
}
.community p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.download {
  text-align: center;
  color: white;
}
.download-buttons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.store-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  color: #4a148c;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.store-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.store-btn.appstore {
  background: white;
  color: #2196F3;
}
.store-btn.googleplay {
  background: white;
  color: #43A047;
}

footer {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  padding: 28px 0 18px 0;
  font-size: 1rem;
  margin-top: 40px;
  border-radius: 30px 30px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Tablet and smaller desktop */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .features-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .feature-card {
    width: 100%;
    max-width: 400px;
  }
  
  section {
    padding: 50px 30px 30px 30px;
    margin: 20px 15px;
  }
  
  .cta-btn {
    padding: 14px 30px;
    font-size: 1rem;
    margin: 8px 8px 0 0;
  }
}

/* Mobile devices */
@media (max-width: 600px) {
  .hero {
    min-height: 100vh;
    padding: 20px;
  }
  
  .hero h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  .cta-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
    margin: 5px 5px 0 0;
    display: block;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-btn.secondary {
    margin-top: 10px;
  }
  
  section {
    padding: 30px 15px 20px 15px;
    margin: 15px 10px;
    border-radius: 15px;
  }
  
  section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .about p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .features-list {
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px 15px;
    border-radius: 15px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
  
  .community {
    margin-top: 30px;
    padding: 25px 15px;
  }
  
  .community h2 {
    font-size: 1.6rem;
  }
  
  .community p {
    font-size: 1rem;
  }
  
  .download {
    padding: 25px 15px;
  }
  
  .download h2 {
    font-size: 1.6rem;
  }
  
  .download p {
    font-size: 1rem;
  }
  
  .download-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  
  .store-btn {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  
  footer {
    font-size: 0.9rem;
    padding: 20px 15px 15px 15px;
    margin: 30px 10px 0 10px;
    border-radius: 15px 15px 0 0;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .subtitle {
    font-size: 0.9rem;
  }
  
  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  section {
    padding: 25px 10px 15px 10px;
    margin: 10px 5px;
  }
  
  section h2 {
    font-size: 1.4rem;
  }
  
  .feature-card {
    padding: 15px 10px;
  }
  
  .feature-card h3 {
    font-size: 1rem;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
  
  .store-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Success page specific styles */
.success-message {
  font-size: 1.1rem;
  margin: 20px 0 30px 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Download buttons in hero for success page */
.hero .download-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero .download-buttons .store-btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: inline-block;
  min-width: 160px;
  text-align: center;
}

.download-success {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 800px;
}

.download-success h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #fff;
}

.download-success p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.welcome-info {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 900px;
}

.welcome-info h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

.welcome-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.welcome-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.welcome-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.welcome-feature h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px 0;
  color: #fff;
}

.welcome-feature p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.welcome-feature .feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
  animation: iconPop 0.6s ease-out;
}

/* Responsive styles for success page */
@media (max-width: 600px) {
  .success-message {
    font-size: 1rem;
    margin: 15px 0 25px 0;
  }
  
  .hero .download-buttons {
    margin-top: 25px;
    gap: 15px;
  }
  
  .hero .download-buttons .store-btn {
    padding: 12px 25px;
    font-size: 1rem;
    min-width: 140px;
  }
  
  .download-success {
    padding: 40px 15px;
    margin: 20px auto;
  }
  
  .download-success h2 {
    font-size: 1.8rem;
  }
  
  .download-success p {
    font-size: 1rem;
  }
  
  .welcome-info {
    padding: 40px 15px;
    margin: 20px auto;
  }
  
  .welcome-info h2 {
    font-size: 1.6rem;
  }
  
  .welcome-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .welcome-feature {
    padding: 25px 15px;
  }
  
  .welcome-feature h3 {
    font-size: 1.2rem;
  }
  
  .welcome-feature p {
    font-size: 0.9rem;
  }
  
  .welcome-feature .feature-icon {
    font-size: 2rem;
  }
} 