/* src/styles/index.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #333;
  background-color: #f9fafb;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
}

.hero {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  padding: 60px 20px;
}

.hero h1 {
  margin-bottom: 16px;
  font-size: 2.5rem;
}

.hero p {
  opacity: .95;
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.2rem;
}

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

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 40px 0;
}

.feature-card {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 1px 3px #0000001a;
}

.feature-icon {
  margin-bottom: 16px;
  font-size: 2.5rem;
}

.feature-card h3 {
  color: #1a1a1a;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature-card p {
  color: #666;
  font-size: .95rem;
}

.download-section {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  margin: 20px 0;
  padding: 40px 20px;
  box-shadow: 0 1px 3px #0000001a;
}

.download-section h2 {
  color: #1a1a1a;
  margin-bottom: 24px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.store-badge {
  display: inline-flex;
  color: #fff;
  text-decoration: none;
  background: #1a1a1a;
  border-radius: 8px;
  align-items:  center;
  gap: 12px;
  padding: 12px 24px;
  transition: background .2s;
}

.store-badge:hover {
  background: #333;
}

.store-badge svg {
  width: 28px;
  height: 28px;
}

.store-badge .text {
  text-align: left;
}

.store-badge .text small {
  display: block;
  opacity: .8;
  font-size: .7rem;
}

.store-badge .text span {
  font-size: 1.1rem;
  font-weight: 600;
}

.disclaimer {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  margin: 32px 0;
  padding: 20px;
}

.disclaimer p {
  color: #856404;
  margin: 0;
  font-size: .9rem;
}

.privacy-link {
  text-align: center;
  padding: 20px;
}

.privacy-link a {
  color: #2563eb;
  text-decoration: none;
}

.privacy-link a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  color: #666;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 40px 20px;
  font-size: .9rem;
}
