/* -----------------------------------
  Footer Styles
----------------------------------- */
footer {
  position: fixed;
  bottom: 0%;
  width: 100%;
  background-color: rgba(1, 3, 11, 0.7);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  z-index: 1000;
  font-family: Arial, sans-serif;
}

footer p { margin: 0; }

footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #b2ffb0;
  padding-bottom: 3px;
}

footer a:hover::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background-color: #b2ffb0;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.special-link {
  color: #2ecc71;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.special-link:hover {
  color: #27ae60;
  text-shadow: 0 0 5px rgba(46,204,113,0.5);
  text-decoration: underline;
}
