:root {
  --ink: #101716;
  --panel: rgba(16, 23, 22, 0.82);
  --panel-soft: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --gold: #f2bd58;
  --coral: #e95f4f;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #101716;
}

a {
  color: inherit;
  text-decoration: none;
}

.donation-page {
  min-height: 100vh;
  padding: 34px 18px;
  background:
    linear-gradient(180deg, rgba(16, 23, 22, 0.62), rgba(16, 23, 22, 0.9)),
    url("assets/top-photo.jpg") center / cover fixed;
}

.donation-card {
  display: grid;
  width: min(560px, 100%);
  margin: 0 auto;
  justify-items: center;
  gap: 16px;
}

.avatar {
  width: 108px;
  height: 108px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
}

h1 {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: clamp(1.65rem, 6vw, 2.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.about-box,
.hub-button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.about-box {
  padding: 22px;
}

.about-box h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 1.05rem;
}

.about-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

.about-box p + p {
  margin-top: 10px;
}

.hub-button {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  min-height: 60px;
  padding: 12px 18px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hub-button:hover {
  border-color: rgba(233, 95, 79, 0.55);
  transform: translateY(-2px);
}

.hub-button span {
  color: var(--gold);
  font-size: 1.25rem;
}

.hub-button strong {
  display: grid;
  gap: 3px;
  text-align: center;
  overflow-wrap: anywhere;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 10px 0;
}

.social-icons a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gold);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: var(--coral);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.link-list {
  display: grid;
  width: 100%;
  gap: 14px;
}

.hub-button {
  color: #ffffff;
  background: rgba(38, 54, 52, 0.88);
}

.hub-button small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(242, 189, 88, 0.38);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(242, 189, 88, 0.1);
  font-size: 0.7rem;
  font-weight: 800;
}

@media (max-width: 520px) {
  .donation-page {
    padding: 24px 14px;
    background-attachment: scroll;
  }

  .about-box {
    padding: 18px;
  }
}
