@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #030712;
  background: linear-gradient(135deg, #fff3f4, #f1f7ff);
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

* {
  box-sizing: border-box;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  padding: 20px;
  flex-grow: 1;
}

footer {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #030712;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1.5;
  margin-top: 100px;
}

section {
  width: 100%;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

h1 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  background: linear-gradient(45deg, #fb445c, #ff7878);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 22px;
  font-weight: 400;
  margin: 10px 0;
}

footer p {
  margin: 8px 0;
  font-size: 14px;
}

button {
  background: linear-gradient(45deg, #fb445c, #ff7878);
  border: none;
  color: white;
  font-size: 18px;
  padding: 14px 24px;
  margin-top: 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 4px 10px rgba(251, 68, 92, 0.3);
}

button:hover {
  background: linear-gradient(45deg, #ff7878, #fb445c);
  transform: scale(1.05);
}

.screenshots {
  text-align: center;
  margin-bottom: 40px;
}

.screenshot-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.shot {
  width: 200px;
}

.app-links {
  text-align: center;
  align-items: center;
  margin-top: 40px;
}

.qr-code {
  width: 120px;
  margin-top: 10px;
}
