* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

body {
  background: #17031E;
  color: #fafafa;
}

/* ---------- Center Content ---------- */
.container {
    display:flex;
    flex-direction: column;
    justify-content: center;
    text-align:center;
    width:90vw;
    margin: 100px auto;
    gap: 20px;
    padding: 24px;
    background:#17031E;
}

.logo img{
    height:140px;
}

.tagline {
  font-size: 1.1rem;
  max-width: 360px;
  margin: 0 auto;
}

/* ---------- Download Button ---------- */
.download-btn {
  padding: 14px 28px;
  background: #f5584c;
  color: #020617;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  margin:40px 0px;
  display:inline-block;
}

.download-btn:hover {
  background: #FF3130;
  transform: translateY(-2px);
}


/* ---------- Mobile Tweaks ---------- */
@media (max-width: 480px) {
  .logo img {
    height: 140px;
  }

  .tagline {
    font-size: 1rem;
  }
}
