/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  background-color: #ffffff; /* Changed to white */
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 600px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  padding-top: 70px; /* Space for fixed header */
  box-shadow: none;
}

/* Logo Header */
.logo-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  margin: 0;
  display: flex;
  justify-content: center;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.app-logo {
  width: 50px;
  height: auto;
  border-radius: 12px;
}

/* Hero Section */
.hero-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-image {
  width: 100%; /* Full width */
  max-width: 100%;
  height: auto;
  /* Optional: add a subtle drop shadow to the phone image */
  filter: none; /* Remove shadow for cleaner look if requested */
}

/* Download Section */
.download-section {
  width: 100%;
  display: flex;
  flex-direction: row; /* Buttons in a row */
  align-items: center;
  gap: 15px;
  margin-bottom: 50px; /* Increased bottom margin */
  justify-content: center;
  padding: 30px 15px 0 15px; /* Increased top padding */
}

.download-btn {
  display: block;
  width: 45%; /* Fit two in a row */
  max-width: 200px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.download-btn:active {
  transform: scale(0.98);
  opacity: 0.9;
}

.download-btn img {
  width: 100%;
  height: auto;
  display: block;
  /* Images likely contain the button design itself, so no extra CSS button styling needed */
}

/* Footer */
.footer {
  margin-top: auto;
  padding-bottom: 20px;
  color: #888;
  font-size: 12px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-header {
  animation: fadeIn 0.6s ease-out;
}
.hero-section {
  animation: fadeIn 0.8s ease-out;
}
.download-section {
  animation: fadeIn 1s ease-out;
}
