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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #0D0D1A;
  color: #FFFFFF;
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: #FF6B6B;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Landing Page Styles */
.landing-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.logo {
  max-width: 280px;
  width: 100%;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.6))
          drop-shadow(0 0 40px rgba(255, 107, 107, 0.4))
          drop-shadow(0 0 60px rgba(255, 107, 107, 0.2));
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.tagline {
  font-size: 1.5rem;
  color: #B0B0B0;
  margin-bottom: 40px;
  font-weight: 500;
}

.screenshots {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  max-width: 100%;
  padding: 0 10px;
}

.screenshot {
  height: 320px;
  width: auto;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(255, 107, 107, 0.3);
}

@media (max-width: 600px) {
  .screenshots {
    gap: 8px;
  }

  .screenshot {
    height: 200px;
    border-radius: 16px;
  }
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #FFFFFF;
  color: #000000;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 30px;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.apple-logo {
  height: 24px;
  width: auto;
}

.features {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 24px;
  border-radius: 16px;
  max-width: 200px;
}

.feature-emoji {
  font-size: 2rem;
  margin-bottom: 10px;
}

.feature-title {
  font-weight: 700;
  margin-bottom: 5px;
  color: #FF6B6B;
}

.feature-desc {
  font-size: 0.9rem;
  color: #B0B0B0;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-links a {
  font-size: 1.5rem;
  color: #B0B0B0;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #FF6B6B;
  text-decoration: none;
}

footer {
  margin-top: auto;
  padding: 40px 20px;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

footer a {
  color: #888;
  margin: 0 10px;
}

footer a:hover {
  color: #FF6B6B;
}

/* Legal Pages Styles */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #FF6B6B;
}

.legal-container .last-updated {
  color: #666;
  margin-bottom: 40px;
}

.legal-container h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.legal-container p {
  color: #B0B0B0;
  margin-bottom: 15px;
}

.legal-container ul {
  color: #B0B0B0;
  margin-left: 25px;
  margin-bottom: 15px;
}

.legal-container li {
  margin-bottom: 8px;
}

.back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #FF6B6B;
}

/* Responsive */
@media (max-width: 600px) {
  .tagline {
    font-size: 1.2rem;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    max-width: 100%;
    width: 100%;
  }

  .legal-container h1 {
    font-size: 2rem;
  }
}
