/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url('microaxix-logo.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 300px;
  background-attachment: fixed;
  background-color: #0d0d0d; /* dark base for neon contrast */
  color: #e0e0e0;
  padding: 20px;
}

/* Neon glow effect */
h1, h2, nav a, button {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
}

/* Header */
header {
  position: relative;
  background-color: #000033;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #00ffff;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  border-radius: 8px;
  box-shadow: 0 0 10px #00ffff;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ff00ff;
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff;
}

/* Sections */
section {
  margin: 40px 0;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffff;
}

ul {
  margin-left: 20px;
}

/* Buttons */
button {
  background-color: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #00ffff;
  color: #000033;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  background-color: #000033;
  border: 1px solid #00ffff;
  color: #e0e0e0;
  padding: 10px;
  border-radius: 5px;
}

textarea {
  resize: vertical;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
}

