.external-site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 40px auto 52px;
  padding: 0 0 4px;
  color: #d9dee7;
  font-family: "Inter", "Poppins", system-ui, sans-serif;
}

.external-site-footer__inner {
  background: linear-gradient(180deg, rgba(20, 24, 32, 0.96), rgba(11, 14, 20, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  padding: 24px 22px;
  text-align: center;
}

.external-site-footer__support {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.external-site-footer__support h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
}

.external-site-footer__support p,
.external-site-footer__copyright,
.external-site-footer__links,
.external-site-footer__note {
  margin: 0;
  line-height: 1.6;
}

.external-site-footer__support p,
.external-site-footer__note {
  color: #a9b3c3;
}

.external-site-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(184, 150, 46, 0.16));
  color: #f6dd8f;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.external-site-footer__button:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.52);
  color: #fff4cc;
}

.external-site-footer__copyright {
  margin-top: 20px;
  color: #dbe3ef;
  font-weight: 600;
}

.external-site-footer__links {
  margin-top: 10px;
  color: #dbe3ef;
}

.external-site-footer__links a {
  color: #f1d27a;
  text-decoration: none;
  font-weight: 600;
}

.external-site-footer__links a:hover {
  text-decoration: underline;
}

.external-site-footer__note {
  margin-top: 10px;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .external-site-footer {
    width: min(100%, calc(100% - 24px));
    margin: 32px auto 44px;
  }

  .external-site-footer__inner {
    padding: 20px 16px;
  }

  .external-site-footer__button {
    width: 100%;
    min-width: 0;
  }
}
