* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.landing-container {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.logo-section {
  margin-bottom: 40px;
}

.logo {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  animation: fadeIn 0.6s ease-out;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 10px;
  letter-spacing: 2px;
  animation: slideIn 0.6s ease-out;
}

.tagline {
  font-size: 18px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 14px;
  color: #888;
}

.download-section {
  margin: 40px 0;
}

.download-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
  font-weight: 500;
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #000;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.store-btn.play-store {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.store-btn.app-store {
  background: #000;
}

.store-icon {
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-label {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.9;
}

.store-name {
  font-size: 18px;
  font-weight: 600;
}

.footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.footer a {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.footer a:hover {
  text-decoration: underline;
  color: #764ba2;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 600px) {
  .landing-container {
    padding: 40px 30px;
  }

  h1 {
    font-size: 36px;
  }

  .tagline {
    font-size: 16px;
  }

  .store-btn {
    padding: 12px 16px;
  }

  .store-name {
    font-size: 16px;
  }

  .footer {
    gap: 16px;
  }

  .footer a {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .landing-container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 30px;
  }

  .logo {
    width: 64px;
    height: 64px;
  }
}
