body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0a0a0a;
  color: #e0e0e0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
  position: relative;
  background: #0d0d0d;
  padding: 20px 0px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 -4px 15px rgba(0, 255, 64, 0.3);
  width: 100vw;
  min-height: 100px;
  margin-left: calc(50% - 50vw);
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FF7B19, transparent);
  animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

footer img {
  width: 120px;
  height: auto;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  position: relative;
  color: #00ff40;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1.1em;
  font-weight: bold;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #00ff40;
  box-shadow: 0 0 6px #00ff40, 0 0 12px #00ff40;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #00ff40, 0 0 16px #00ff40;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-copy {
  margin-top: 25px;
  font-size: 0.9em;
  color: #888;
}
.small {
  font-size: smaller;
}
