.share-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: var(--spacing-lg);
  backdrop-filter: blur(4px);
}

.share-card {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.share-canvas {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.share-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.share-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}

.share-btn:active { opacity: 0.75; }

.share-btn--primary {
  background: var(--accent-primary);
  color: #fff;
}

.share-btn--secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.share-btn--ghost {
  background: transparent;
  color: var(--text-muted);
}
