body {
  margin: 0;
  padding: 0;
  background-color: #0d0c10;
  color: #fff;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

nav {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 10px 30px;
  margin-top: 30px;
  backdrop-filter: blur(20px);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.nav-links li i {
  margin-right: 8px;
  color: #c084fc;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto; /* prevent pixel blur */
  filter: none !important; /* force remove any filter */
}



.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-button {
  background: linear-gradient(to right, #9333ea, #db2777);
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  color: white;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.cta-button i {
  margin-right: 8px;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(90deg, #ec4899, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 40px;
}

.download-buttons a img {
  height: 50px;
  margin: 0 10px;
}

footer {
  margin-top: 40px;
  color: #aaa;
  font-size: 14px;
}
