/*
 * footer.css — Page footer styles shared across all MagiBot solver pages.
 * Included by: index.html, harvest.html, chest.html, quest.html, trace.html, live.html
 */

/* ---- Donate footer ---- */
.page-footer {
  border-top: 1px solid #252525;
  margin-top: 40px;
  padding: 20px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.page-footer .foot-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-footer .foot-contact-heading {
  font-size: 13px;
  color: #ccc;
  margin: 0;
}
.page-footer .foot-contact-text {
  font-size: 12px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}
.page-footer .foot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.page-footer .foot-tagline {
  font-size: 12px;
  color: #555;
}
.page-footer .foot-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.page-footer .foot-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 5px;
  font-family: monospace;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.page-footer .foot-btn.kofi {
  background: #1e2a1e;
  border: 1px solid #4a8a3a;
  color: #7dc06a;
}
.page-footer .foot-btn.kofi:hover {
  background: #253525;
  border-color: #7dc06a;
  color: #a8e090;
}
.page-footer .foot-btn.paypal {
  background: #1a1a2e;
  border: 1px solid #3a3a88;
  color: #8080cc;
}
.page-footer .foot-btn.paypal:hover {
  background: #1e1e3a;
  border-color: #6868bb;
  color: #a0a0ee;
}
@media (max-width: 600px) {
  .page-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-footer .foot-right { align-items: center; }
  .page-footer .foot-buttons { justify-content: center; }
}
