body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: #111;
  color: #eee;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1s ease forwards;
  animation-delay: 0.3s;
}

header, main, footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  padding: 0;
}

nav a {
  color: #eee;
  text-decoration: none;
  font-weight: 600;
}

nav a.active {
  border-bottom: 2px solid #00ffff;
  padding-bottom: 2px;
}

/* Header glitch effect animation */
.glitch {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: fadeInGlitch 1.5s ease forwards;
  animation-delay: 1.3s;
  user-select: none;
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInGlitch {
  0% {
    opacity: 0;
    text-shadow: none;
  }
  40% {
    opacity: 1;
    text-shadow:
      -2px 0 #ff005a,
      2px 0 #00fff7;
  }
  60% {
    text-shadow:
      2px 0 #ff005a,
      -2px 0 #00fff7;
  }
  80% {
    text-shadow:
      -2px 0 #ff005a,
      2px 0 #00fff7;
  }
  100% {
    opacity: 1;
    text-shadow: none;
  }
}

/* Simple styling for sections */
h2, h3 {
  margin-top: 0;
}

footer {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 3rem;
  color: #888;
}

footer img {
  vertical-align: middle;
  margin-left: 0.3rem;
}
