* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: radial-gradient(circle at top, #0b0f1a, #05060a);
  color: white;
  overflow-x: hidden;
}

/* STAR CANVAS */
#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* LAYOUT */
.container {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: auto;
  padding: 60px 20px;
}

/* HERO */
.hero {
  text-align: center;
  margin-bottom: 50px;
}

.hero h1 {
  font-size: 64px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #7f5af0, #2cb67d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 3s infinite alternate;
}

.subtitle {
  color: #aaa;
  margin-top: 10px;
}

/* CARDS */
.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(127, 90, 240, 0.08);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(127, 90, 240, 0.25);
}

.card h2 {
  margin-bottom: 10px;
  color: #7f5af0;
}

/* LINKS */
a {
  color: #2cb67d;
  text-decoration: none;
}

a:hover {
  text-shadow: 0 0 10px #2cb67d;
}

/* ANIMATION */
@keyframes glow {
  from {
    text-shadow: 0 0 10px #7f5af0;
  }
  to {
    text-shadow: 0 0 25px #2cb67d;
  }
}