.thin-footer {
  position: static;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 8px 0;
  z-index: 100;
}

.footer-btn {
  background: #f7f7fb;
  border: 1px solid #ddd;
  color: #333;
  padding: 6px 16px;
  border-radius: 18px;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

@media (max-width: 600px) {
  .footer-btn {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 14px;
  }
  .thin-footer {
    position: static;
  }
}

.footer-btn:hover {
  background: #e0e0e0;
  color: #222;
}

.footer-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.footer-modal-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  max-width: 95vw;
  width: 400px;
  padding: 32px 28px 24px 28px;
  position: relative;
  text-align: left;
}

.footer-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  color: #888;
  cursor: pointer;
  font-weight: bold;
}

.footer-modal-close:hover {
  color: #222;
}
