body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1f004d, #000e2f);
  color: white;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.navbar {
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
}

.privacy-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  background: linear-gradient(to right, #ff00ff, #00ffff);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: background 0.3s;
}

.privacy-link:hover {
  background: linear-gradient(to right, #00ffff, #ff00ff);
}

.container {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.3), 0 0 30px rgba(0, 255, 255, 0.3);
  margin-top: 6rem;
}

.logo {
  width: 160px;
  height: 160px;
  margin-bottom: 1rem;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

h1 {
  font-size: 2.5rem;
  background: linear-gradient(to right, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-size: 1.2rem;
  color: #cccccc;
  margin: 1rem 0 2rem 0;
}

.cta {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, #ff00ff, #00ffff);
  color: #000;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
}

.cta:hover {
  transform: scale(1.05);
}
