.site-footer {
  width: 100%;
  padding: 2rem 1rem 2.5rem;
}

.share-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.4rem;
  border-radius: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.share-section h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.share-section p {
  margin: 0 0 1rem;
  opacity: 0.82;
}

.share-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.share-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.share-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.share-btn img {
  width: 23px;
  height: 23px;
  display: block;
}

.share-native {
  width: auto;
  padding: 0 1rem;
  color: #fff;
  font-weight: 800;
}

.share-status {
  margin-top: 0.9rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .site-footer {
    padding: 1.5rem 0.75rem 2rem;
  }

  .share-section {
    padding: 1.1rem;
  }

  .share-btn {
    width: 42px;
    height: 42px;
  }

  .share-native {
    width: 100%;
  }
}