.share-box {
  background: #f4f4f4;
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 100%;
  margin: 4px auto;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #ddd;
}
.share-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.share-btn {
  background-color: #11222C;
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.share-btn:hover {
  background-color: #1d3a50;
  transform: translateY(-2px);
}
.share-btn.copied {
  background-color: #2fa14f !important;
  animation: pulse 0.3s ease-in-out;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.qr-box {
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}
.qr-box.visible-qr {
  display: flex;
}
.qr-box img {
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  width: 180px;
  height: 180px;
}
@media (max-width: 480px) {
  .share-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .share-btn {
    width: 100%;
    justify-content: center;
  }
}
