@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;600;700;800;900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Ubuntu', 'Arial', sans-serif; 
}

body {
  background: #000000;
  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:#000000;
}

.logo img{
    height:80px;
}

.tagline {
  font-size: 1.1rem;
  line-height: 1.5rem;
  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);
}

.download-btn i {
  margin-right: 8px;
  font-size: 1.1em;
  color: #fafafa;
}


.platform-note {
  margin-top: 0px;
  font-size: 0.9rem;
  color: #fafafa;
}

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

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