/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--footer-h);
  border-top: var(--grid);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--white-dim);
  z-index: 200;
}

footer a {
  color: var(--white-dim);
  text-decoration: none;
}

footer a:hover {
  color: var(--white);
}

.foot-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 600px) {
  footer {
    flex-direction: column;
    height: auto;
    padding: 14px 20px 14px 20px;
    gap: 6px;
    justify-content: center;
  }
  
  footer > div {
    position: static;
    transform: none;
    text-align: center;
    width: 100%;
  }
  
  .foot-center {
    position: static;
    transform: none;
  }
  
  footer .foot-right {
    display: block;
  }
}

.foot-terms-btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  background: transparent;
  border: none;
  color: var(--white-dim);
  cursor: none;
  transition: color 0.2s;
  padding: 0;
}

.foot-terms-btn:hover {
  color: var(--cyan);
}

@media (max-width: 768px) {
  .foot-terms-btn {
    cursor: default;
  }
}