/* -----------------------------------
  Footer Styles - Black & White Edition
----------------------------------- */

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  color: #ffffff;
  text-align: center;
  padding: 15px 0;
  z-index: 1000;
  font-family: 'Space Mono', 'Courier New', monospace;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.8);
}

footer p {
  margin: 0;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
}

footer a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  position: relative;
}

footer a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease;
}

footer a:hover {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

footer a:hover::after {
  width: 100%;
}

.special-link {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.special-link:hover {
  text-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

/* Responsive footer */
@media (max-width: 768px) {
  footer {
    padding: 12px 0;
    font-size: 0.8rem;
  }
  
  footer p {
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 10px 0;
    font-size: 0.7rem;
  }
  
  footer p {
    padding: 0 10px;
  }
}

/* Focus states for accessibility */
footer a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}