/* --- Global Styles --- */
body {
  font-family: 'Trebuchet MS', sans-serif;
  background: linear-gradient(135deg, #0a0a0f, #1a0026, #001a33);
  background-attachment: fixed;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* --- Header --- */
header {
  text-align: center;
  padding: 2em 0;
  background: rgba(10, 10, 20, 0.8);
  border-bottom: 2px solid #7700ff;
  box-shadow: 0 0 20px #7700ff44;
}

header h1 {
  margin: 0.3em 0;
  color: #ff66ff;
  text-shadow: 0 0 10px #ff33ff, 0 0 20px #9900ff;
  letter-spacing: 1px;
}

/* --- Navigation --- */
nav {
  margin-top: 1em;
}

nav a {
  color: #66ffff;
  text-decoration: none;
  margin: 0 1em;
  font-weight: bold;
  text-shadow: 0 0 5px #00ffff;
  transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover {
  color: #ff66ff;
  text-shadow: 0 0 10px #ff66ff;
}

/* --- Main Content --- */
main {
  max-width: 800px;
  margin: 2em auto;
  padding: 0 1.5em;
  background: rgba(20, 20, 30, 0.7);
  border-radius: 10px;
  box-shadow: 0 0 20px #00000088;
}

section {
  margin-bottom: 3em;
}

h2 {
  color: #ff99ff;
  text-shadow: 0 0 8px #ff00ff, 0 0 15px #cc00ff;
  border-bottom: 1px solid #6600cc;
  padding-bottom: 0.3em;
}

p, li {
  color: #dcdcdc;
}

a {
  color: #66ffff;
  text-decoration: none;
}

a:hover {
  color: #ff99ff;
  text-shadow: 0 0 10px #ff33ff;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 1em 0;
  border-top: 2px solid #7700ff;
  background: rgba(15, 0, 30, 0.8);
  box-shadow: 0 0 15px #6600cc44;
  font-size: 0.9em;
}

footer a {
  color: #66ffff;
}

footer a:hover {
  color: #ff99ff;
}
