/* Custom styles for the download page */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.download-container {
  max-width: 600px;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.app-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.download-btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-btn:active {
  transform: translateY(0);
}

.features-list {
  text-align: left;
  margin: 2rem auto;
  max-width: 400px;
}

.feature-item {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.feature-icon {
  color: #28a745;
  margin-right: 10px;
}

.qr-container {
  margin: 1.5rem auto;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 180px;
}

.qr-code {
  width: 150px;
  height: 150px;
}

.version-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  background-color: #f8f9fa;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .download-container {
    padding: 1.5rem;
  }

  .app-logo {
    width: 60px;
    height: 60px;
  }
}
