@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0d0b1f;
  color: white;
  background-image: radial-gradient(circle at center, #32135a, #0d0b1f);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 120px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #c7a1ff;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffffff;
}

.hero {
  text-align: center;
  margin-top: 100px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #c7a1ff;
}

.btn {
  padding: 12px 30px;
  background: linear-gradient(90deg, #7e3ff2, #a765ff);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn:hover {
  background: linear-gradient(90deg, #a765ff, #7e3ff2);
}

footer {
  margin-top: 100px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}
