/* Footer */
footer {
  font-family: 'Press Start 2P', monospace;
  background-color: #000;
  border-top: 1px solid #333;
  padding: 32px 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  position: relative;
}

.footer-logo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0180eb, #0160c0);
  border-radius: 4px;
  transform: rotate(45deg);
}

.footer-logo-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  transform: rotate(-45deg);
}

footer p {
  color: #9ca3af;
}