/* src/ui/Footer.css */

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--footer-h, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  z-index: var(--z-footer); /* 50 */
  background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.14));
  border-top: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.footer__center {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.shortcut {
  color: var(--accent);
  font-weight: bold;
  border: 1px solid var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  margin: 0 4px;
}

@media (max-width: 620px) {
  .footer {
    height: 40px;
    padding: 0 10px;
  }
  .footer__left, .footer__right {
    font-size: 10px;
  }
  .footer__center {
    display: none;
  }
}