.footer {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
}

.footer p {
  position: relative;
  z-index: 1;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
}
