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

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #000000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-nav {
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  height: 32px;
  width: 32px;
  border-radius: 8px;
  object-fit: cover;
  background-color: #3246ff;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -1px;
}

.policy-link {
  text-decoration: none;
  color: #666666;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.policy-link:hover {
  color: #444444;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px 40px;
}

.container {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.hero-image {
  height: 300px;
  width: auto;
  object-fit: contain;
  display: none;
}

.content-block {
  max-width: 450px;
}

h1 {
  font-size: 2.8rem;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
  line-height: 1.1;
}

p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.hero-buttons img {
  transition: transform 0.2s ease;
}

.hero-buttons a:hover img {
  transform: scale(1.05);
}

footer {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

.copyright {
  font-size: 0.85rem;
  color: #999999;
  font-weight: 400;
}

@media (min-width: 768px) {
  .container {
    flex-direction: row-reverse;
    justify-content: space-between;
    text-align: left;
  }

  .hero-image {
    height: 700px;
    display: block;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .hero-buttons {
    width: 100%;
    padding: 0 20px; /* Give some side breathing room */
  }

  .hero-buttons a {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* Scale the images up for mobile */
  #ios-btn img {
    height: 60px !important; /* Larger App Store badge */
    width: auto;
  }

  #android-btn img {
    height: 85px !important; 
    width: auto;
    margin-top: -10px; /* Keep it vertically centered with the text */
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); 
  }
  to {
    opacity: 1;
    transform: translateY(0); 
  }
}

.hero-image {
  opacity: 0;
  animation: fadeInUp 0.4s ease-out 0.4s forwards;
}

.content-block {
  animation: fadeInUp 0.4s ease-out forwards;
}
