body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 32px 16px 24px 16px;
  gap: 8px;
}
.logo {
  width: 110px;
  height: 110px;
  margin-bottom: 32px;
  /* image-rendering: pixelated; */
  filter: none;
}
.title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: 1px;
  text-align: center;
  color: #fff;
}
.subtitle {
  color: #a259ff;
  font-size: 1.25rem;
  margin-bottom: 36px;
  text-align: center;
}
.download-btn, .android-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a259ff;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  border: none;
  border-radius: 32px;
  padding: 18px 32px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  overflow: hidden;
  width: 320px;
  box-sizing: border-box;
  white-space: nowrap;
  gap: 12px;
}
.download-btn:hover, .android-btn:hover {
  background: #7c3fe0;
  color: #fff;
}
.apple-icon, .android-icon {
  margin-left: 0;
  margin-right: 12px;
  width: 28px;
  height: 28px;
  vertical-align: middle;
  filter: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.5em;
}
.android-btn {
  margin-top: 0;
  margin-bottom: 0;
}
.footer-links {
  display: flex;
  gap: 12px;
  color: #aaa;
  font-size: 1rem;
  margin-top: 24px;
}
.footer-links a {
  color: #a259ff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-links span {
  color: #444;
}
/* Android section modern spacing */
.android-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  gap: 10px;
}
.android-coming-soon {
  color: #aaa;
  font-size: 1.08rem;
  margin-bottom: 6px;
  margin-top: 18px;
  text-align: center;
  letter-spacing: 0.01em;
}
.download-btn span, .android-btn span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
} 