/* Footer responsive */
footer {
  background: rgba(0,0,0,0.95);
  border-top: 2px solid #0ff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  color: #0ff;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4;
  box-sizing: border-box;
  overflow-x: auto;
  white-space: nowrap;
}

footer::-webkit-scrollbar {
  height: 6px;
}

footer::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 255, 0.5);
  border-radius: 3px;
}

footer::-webkit-scrollbar-track {
  background: rgba(0, 255, 255, 0.1);
}

/* Desktop */
@media(min-width: 768px) {
  footer {
    min-height: 100px;
    padding: 1rem 2rem;
    font-size: 1rem;
    white-space: normal;
  }
}
